﻿:root{
  --navy:#010D35;
  --blue:#0075FF;
  --orange:#FE951C;
  --soft-bg:#f1f5fb;
}

body{
  font-family:'Segoe UI', sans-serif;
  background:#eef3f9;
  padding-top:90px;
}

.store-coming-soon{
  position:absolute;
  inset:0;
  z-index:20;
  display:grid;
  place-items:center;
  min-height:100%;
  padding:40px 20px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(30, 144, 255, 0.28), transparent 30%),
    radial-gradient(circle at 80% 72%, rgba(14, 199, 217, 0.24), transparent 32%),
    rgba(1, 7, 20, 0.72);
  backdrop-filter: blur(4px);
  pointer-events:auto;
}

.store-coming-soon::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0, 10, 31, 0.5), rgba(0, 22, 58, 0.72));
  pointer-events:none;
}

.coming-soon-panel{
  position:relative;
  z-index:2;
  width:min(680px, 100%);
  padding:38px 30px;
  border:1px solid rgba(142, 197, 255, 0.34);
  border-radius:22px;
  background:rgba(2, 8, 23, 0.72);
  box-shadow:0 28px 90px rgba(0, 0, 0, 0.45);
  color:#ffffff;
  text-align:center;
}

.coming-soon-kicker{
  margin:0 0 10px;
  color:#8ec5ff;
  font-size:0.88rem;
  font-weight:800;
  letter-spacing:0;
  text-transform:uppercase;
}

.coming-soon-panel h1{
  margin:0;
  color:#ffffff;
  font-size:clamp(3rem, 8vw, 6.5rem);
  font-weight:900;
  line-height:0.95;
  letter-spacing:0;
}

.coming-soon-copy{
  max-width:520px;
  margin:18px auto 26px;
  color:#c9dcf5;
  font-size:1rem;
  line-height:1.55;
}

.coming-soon-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 24px;
  border-radius:10px;
  background:linear-gradient(90deg, #1477ff 0%, #16c7d9 100%);
  color:#ffffff;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 16px 34px rgba(20, 119, 255, 0.32);
}

.coming-soon-link:hover{
  color:#ffffff;
  transform:translateY(-2px);
}

.bubble-field{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
  pointer-events:none;
}

.bubble-field span{
  position:absolute;
  bottom:-90px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #bdf6ff 0 12%, #27d5ff 42%, #006eff 100%);
  box-shadow:0 0 18px rgba(39, 213, 255, 0.75);
  opacity:0.82;
  animation:shopBubbleRise 10s linear infinite;
}

.bubble-field span:nth-child(1){left:4%; width:9px; height:9px; animation-duration:8s; animation-delay:0s;}
.bubble-field span:nth-child(2){left:9%; width:18px; height:18px; animation-duration:12s; animation-delay:1s;}
.bubble-field span:nth-child(3){left:15%; width:12px; height:12px; animation-duration:9s; animation-delay:2.4s;}
.bubble-field span:nth-child(4){left:22%; width:26px; height:26px; animation-duration:13s; animation-delay:0.8s;}
.bubble-field span:nth-child(5){left:28%; width:8px; height:8px; animation-duration:7s; animation-delay:3s;}
.bubble-field span:nth-child(6){left:34%; width:16px; height:16px; animation-duration:11s; animation-delay:1.8s;}
.bubble-field span:nth-child(7){left:41%; width:24px; height:24px; animation-duration:14s; animation-delay:0.2s;}
.bubble-field span:nth-child(8){left:47%; width:10px; height:10px; animation-duration:8s; animation-delay:2s;}
.bubble-field span:nth-child(9){left:52%; width:15px; height:15px; animation-duration:10s; animation-delay:4s;}
.bubble-field span:nth-child(10){left:58%; width:28px; height:28px; animation-duration:15s; animation-delay:1.2s;}
.bubble-field span:nth-child(11){left:63%; width:11px; height:11px; animation-duration:9s; animation-delay:2.8s;}
.bubble-field span:nth-child(12){left:68%; width:20px; height:20px; animation-duration:12s; animation-delay:0.5s;}
.bubble-field span:nth-child(13){left:73%; width:8px; height:8px; animation-duration:7.5s; animation-delay:3.4s;}
.bubble-field span:nth-child(14){left:79%; width:23px; height:23px; animation-duration:13s; animation-delay:1.7s;}
.bubble-field span:nth-child(15){left:84%; width:13px; height:13px; animation-duration:9.5s; animation-delay:2.2s;}
.bubble-field span:nth-child(16){left:89%; width:31px; height:31px; animation-duration:16s; animation-delay:0.4s;}
.bubble-field span:nth-child(17){left:94%; width:10px; height:10px; animation-duration:8.5s; animation-delay:3.8s;}
.bubble-field span:nth-child(18){left:18%; width:7px; height:7px; animation-duration:6.5s; animation-delay:5s;}
.bubble-field span:nth-child(19){left:55%; width:9px; height:9px; animation-duration:7s; animation-delay:5.6s;}
.bubble-field span:nth-child(20){left:76%; width:12px; height:12px; animation-duration:8s; animation-delay:4.8s;}

@keyframes shopBubbleRise{
  0%{
    transform:translate3d(0, 0, 0) scale(0.6);
    opacity:0;
  }
  12%{
    opacity:0.85;
  }
  100%{
    transform:translate3d(42px, -115vh, 0) scale(1.15);
    opacity:0;
  }
}

@media(max-width:768px){
  .store-coming-soon{
    padding:28px 14px;
    place-items:start center;
  }

  .coming-soon-panel{
    margin-top:0;
    padding:24px 18px;
    border-radius:18px;
  }

  .coming-soon-panel h1{
    font-size:clamp(2.6rem, 15vw, 4rem);
    line-height:1;
  }

  .coming-soon-copy{
    font-size:0.95rem;
    margin:14px auto 20px;
  }

  .coming-soon-link{
    width:100%;
    min-height:48px;
  }
}

/* NAVBAR */
.custom-navbar{
  background:white;
  padding:20px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.nav-link{
  font-weight:500;
  color:#1e1e1e !important;
}

.active-link{
  color:var(--blue) !important;
  font-weight:600;
}

.nav-icon{
  font-size:20px;
  color:#1e1e1e;
}

.mobile-page-title{
  font-weight:600;
  font-size:18px;
}

/* HERO */
.store-hero{
  height:50vh;
  background:
    linear-gradient(rgba(1,13,53,0.7), rgba(0,117,255,0.6)),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438');
  background-size:cover;
  background-position:center;
}

/* CATEGORÃAS */
.category-section{
  padding:40px 0;
}

.category-btn{
  border:none;
  background:white;
  padding:10px 20px;
  border-radius:25px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.category-btn:hover,
.category-btn.active{
  background:var(--blue);
  color:white;
}

/* PRODUCTOS */
.products-section{
  position:relative;
  overflow:hidden;
  padding:60px 0;
}

.product-card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
  transition:0.4s ease;
  height:100%;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.product-img{
  height:220px;
  overflow:hidden;
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s ease;
}

.product-card:hover img{
  transform:scale(1.1);
}

.product-info{
  padding:20px;
  text-align:center;
}

.price{
  font-weight:700;
  color:var(--blue);
  margin:10px 0;
  font-size:18px;
}

.add-btn{
  background:var(--orange);
  border:none;
  padding:10px 20px;
  border-radius:25px;
  color:white;
  transition:0.3s;
}

.add-btn:hover{
  background:#e67f00;
}

/* ================= FOOTER ================= */
.footer-section{
  background: var(--navy);
  color: white;
  padding: 80px 0 30px;
}

.footer-title{
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-subtitle{
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer-subtitle::after{
  content: "";
  width: 40px;
  height: 3px;
  background: var(--blue);
  position: absolute;
  left: 0;
  bottom: -5px;
}

.footer-text{
  color: #ccc;
  font-size: 14px;
}

.footer-links{
  list-style: none;
  padding: 0;
}

.footer-links li{
  margin-bottom: 8px;
}

.footer-links a{
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover{
  color: white;
  padding-left: 5px;
}

/* Redes sociales */
.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover{
  background: var(--blue);
  transform: translateY(-3px);
}

/* Parte inferior */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}
/* ANIMACIÃ“N */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

  .store-hero{
    height:40vh;
  }

  .product-img{
    height:180px;
  }

}
.product-desc{
  font-size:14px;
  color:#666;
  margin:10px 0;
  min-height:50px;
}

.product-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:14px;
}

.details-btn,
.store-cart-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--orange);
  padding:10px 20px;
  border-radius:25px;
  color:white;
  text-decoration:none;
  transition:0.3s ease;
  font-weight:500;
}

.details-btn:hover,
.store-cart-btn:hover{
  background:#e67f00;
  color:white;
}

.store-cart-btn{
  border:0;
  background:linear-gradient(90deg, #1477ff 0%, #16c7d9 100%);
  cursor:pointer;
  box-shadow:0 12px 24px rgba(20,119,255,.2);
}

.store-cart-btn:hover{
  background:linear-gradient(90deg, #0f6ff2 0%, #11bfd0 100%);
  box-shadow:0 16px 30px rgba(20,119,255,.28);
  transform:translateY(-2px);
}
/* BUSCADOR */

.search-section{
padding:40px 0;
}

.search-box{
max-width:500px;
margin:auto;
background:white;
padding:12px 20px;
border-radius:30px;
display:flex;
align-items:center;
gap:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.search-box i{
font-size:18px;
color:#666;
}

.search-input{
border:none;
outline:none;
width:100%;
font-size:15px;
background:transparent;
}
.product-card{
background:#ffffff;
border-radius:12px;
overflow:hidden;
transition:0.3s;
height:100%;
display:flex;
flex-direction:column;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.product-img img{
width:100%;
height:220px;
object-fit:cover;
}

.product-info{
padding:18px;
display:flex;
flex-direction:column;
flex:1;
}

.product-title{
color:rgb(0, 0, 0);
font-weight:600;
margin-bottom:8px;
}

.product-desc{
color:#373737;
font-size:14px;
flex:1;
}

.price{
color:#0057f9;
font-weight:bold;
margin:10px 0;
font-size:18px;
}

.details-btn,
.store-cart-btn{
color:rgb(255, 255, 255);
text-align:center;
padding:10px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.cart-action-icon{
width:30px;
height:30px;
object-fit:contain;
flex:0 0 30px;
filter:drop-shadow(0 4px 6px rgba(0,0,0,.16));
}
.products-grid{
display:grid;
grid-template-columns:repeat(auto-fill, minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.product-card{
width:100%;
}
