:root{
  --navy:#010D35;
  --blue:#0075FF;
  --orange:#FE951C;
  --soft-bg:#f1f5fb;
}

body{
  font-family:'Segoe UI', sans-serif;
  background:#eef3f9;
  padding-top:90px;
}

/* 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{
  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:40px 0;
}

/* 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;
}

.details-btn{
  display:inline-block;
  background:var(--orange);
  padding:10px 20px;
  border-radius:25px;
  color:white;
  text-decoration:none;
  transition:0.3s ease;
  font-weight:500;
}

.details-btn:hover{
  background:#e67f00;
  color:white;
}
/* 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{
display:inline-block;
background:#e67f00;
color:rgb(255, 255, 255);
text-align:center;
padding:10px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.details-btn:hover{
background:#0075FF;
}
.products-grid{
display:grid;
grid-template-columns:repeat(auto-fill, minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.product-card{
width:100%;
}