body{
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f8f8f8;
}

 /* NAVBAR */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 7%;
    z-index: 9999;

    /* 🔥 LOOK PRO */
    background: rgba(86, 28, 4, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

.logo{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  margin-right: 20px;
}

.nav-links{
    display: flex;
    gap: 5px;
    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: .3s;
    padding: 8px 12px;
}



.nav-links a:hover{
    color: #2859d6;
}



/*/* ICONO CARRITO */

.cart-icon{
    cursor: pointer;
    font-size: 30px;
    position: relative;
}

#cartCount{
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -10px;
}

.menu-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span{
    width: 28px;
    height: 3px;
    background: #222;
    border-radius: 10px;
}

/* HERO */

header{
  background: #ff7aa2;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero{
  position: relative;
  height: 100vh;

  background: url("/IMG WEB/descargar.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  overflow: hidden;
}



/* Promoción */

.promo-production{
    max-width: 900px;
    margin: 80px auto;
    padding: 30px;
    text-align: center;
    background: #076a7e;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    
}

.promo-production h2{
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f5f5f5;
}

.promo-production p{
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #f5f5f5;
   
}

.promo-production img{
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0 auto 25px auto;
  
}

.promo-production button{
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: #bd541f;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    margin-top: 50px;
    
}

.promo-production {


  color: white;
   display: flex;

  flex-direction: column;

  gap: 10px;


}

#menu{
  padding: 5px 0%;
  background: #000;
}

/* overlay oscuro */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* contenido */
.hero-content{
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;

  color: white;
  max-width: 800px;
  padding: 20px;

  max-width: 700px;

  width: 90%;


}

/* imagen encima */
.hero-top-image{
  width: 5rem;
  height: auto;
  border-radius: 30px;
    transform: scale(1.1);
}

/* título */
.hero h1{
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* texto */
.hero p{
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  color: #fff;
}

/* botón */
.hero button{
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  background: #0071e3;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.hero button:hover{
  transform: translateY(-3px);
}

/* PICKUP */
.pickup{
  padding: 80px 10%;
  text-align: center;
}

.pickup h2{
  margin-bottom: 15px;
  font-size: 2rem;
}

.maps-btn{
  display: inline-block;
  padding: 14px 25px;
  background: #4285F4;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 15px;
}

.maps-btn:hover{
  background: #2a6ad6;
}

/* MENU */
.menu {
  padding: 100px 0;
  background-color: #000;
  color: white;
  text-align: center;
}

.menu h2 {
  margin-bottom: 40px;
  font-size: 3rem;
}
.menu .product img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.menu .product {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: -100px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
 }
/* GRID GENERAL */

.products,
.premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

/* CARD PRODUCTO */
.product {
  background: rgb(193, 117, 41);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* BOTÓN */
.product button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: #305769;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

/* PREMIUM DIFERENTE COLOR */
.premium-section {
  background: #fff;
  color: #000;
  padding: 40px 0;
}

.premium-section h2 {
  margin-bottom: 40px;
  font-size: 3rem;
  text-align: center;
  
}
.premium-section img{

    width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;

}


/* COMBOS DE PASTEL*/

.pastel {
  padding: 15px;
  border-radius: 10px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

#pastel {
  background-color: black;
  padding: 60px 0;
  color: white;
  text-align: center;
}

.combis h2{
  margin-bottom: 15px;
  font-size: 3rem;
}

.combis button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: #305769;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.combis img {
  width: 40vh;
  height: 40vh;
  object-fit: cover;
  border-radius: 10px;
}


/* COMBOS */
.combos{
  padding: 30px 8%;
}

.combos h2{
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
}

.combo-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.combo{
  background: white;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .4s;
}


.combo:nth-child(1) img{

object-position: 40% 40%;


}

.combo:nth-child(2) img{

object-position: 40% 40%;
}

.combo:nth-child(3) img{

object-position: 60% 40%;
}

.combo:hover{
  transform: translateY(-10px);
}

.combo h3{
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.5rem;}

.combo span{

  display: block;

  margin-top: 20px;

  color: #0071e3;

  font-size: 1.5rem;

  word-spacing: 2rem;

  font-weight: bold;

}

.combo img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.combos button{
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: #305769;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}



/* CART */
.cart{
  width: 50%;
  margin: 40px auto;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 12px;
  text-align: center;
}

.cart ul{
  list-style: none;
  padding: 0;
}

.cart li{
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.cart button{
  width: 80%;
  padding: 10px;
  margin-top: 15px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

/* TOAST */
#toast{
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}

#toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

/* CTA */
.cart{
  width: 50%;
  margin: 40px auto;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 12px;
  text-align: center;
}

.cart ul{
  list-style: none;
  padding: 0;
}

.cart li{
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.cart-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;

  /* animación */
  
  opacity: 0;
  transition: 0.3s ease;
}

.cart-modal.active {
  display: block;
  opacity: 1;
}

.cart-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  height: 100%;
  background: white;
  padding: 20px;
  overflow-y: auto;

  transform: translateX(100%);
  transition: 0.3s ease;
}

.cart-modal.active .cart-box {
  transform: translateX(0);
}


/* título del carrito */
.cart-box h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #222;
}

/* lista de productos */
#cartItems {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* cada producto */
.cart-item {
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: 0.2s ease;
}

.cart-item:hover {
  transform: scale(1.02);
}

/* info del producto */
.item-info strong {
  display: block;
  font-size: 1rem;
  color: #111;
}

.item-info span {
  font-size: 0.85rem;
  color: #666;
}

/* botones + - x */
.item-actions {
  display: flex;
  gap: 6px;
}

.item-actions button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;

  background: #f1f1f1;
  font-weight: bold;
  transition: 0.2s;
}

.item-actions button:hover {
  background: #ddd;
}

/* total */
.cart-total {
  margin-top: 20px;
  padding: 15px;
  background: #111;
  color: white;
  border-radius: 12px;

  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

/* Botón principal WhatsApp */
.whatsapp-btn{
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

/* Contenedor acciones */
.contact-actions{
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* Botones secundarios */
.btn{
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-align: center;
}

.sms{
  background: #007bff;
}

.call{
  background: #ff7a00;
}

/* Hover opcional */
.btn:hover{
  opacity: 0.9;
  transform: scale(1.02);
  transition: 0.2s;
}

/* FOOTER */
footer{
  background: #111;
  color: white;
  text-align: center;
  padding: 20px 20px;
}

footer p{
  color: #bdbdbd;
}

.socials{
  margin: 25px 0;
}

.socials a{
  color: white;
  text-decoration: none;
  margin: 0 12px;
}

.copy{
  margin-top: 20px;
  font-size: .9rem;
}

.hidden{

  opacity: 0;

  transform: translateY(20px);

}

.show{

  opacity: 1;

  transform: translateY(0);

  transition: .6s ease;

}


/* =========================================
   CONFIGURACIÓN GLOBAL RESPONSIVE
========================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* =========================================
   PANTALLAS GRANDES (1441px en adelante)
========================================= */

@media (min-width:1441px){

    .hero h1{
        font-size:4.5rem;
    }

    .hero p{
        font-size:1.3rem;
    }

    .hero-top-image{
        width:200px;
        height:200px;
    }

}

/* =========================================
   LAPTOPS (1025px - 1440px)
========================================= */

@media (min-width:1025px) and (max-width:1440px){

    .hero h1{
        font-size:3.5rem;
    }

    .hero p{
        font-size:1.15rem;
    }

    .hero-top-image{
        width:170px;
        height:170px;
    }

}

/* =========================================
   TABLETS (769px - 1024px)
========================================= */

@media (min-width:769px) and (max-width:1024px){

    .hero h1{
        font-size:3rem;
    }

    .hero p{
        font-size:1.1rem;
    }

    .hero-top-image{
        width:150px;
        height:150px;
    }

    .hero-content{
        padding:20px;
    }

}

/* =========================================
   CELULARES (768px o menos)
========================================= */

@media (max-width:768px){

    .hero{
        padding:20px;
        text-align:center;
    }

    .hero-content{
        padding:15px;
    }

    .hero h1{
        font-size:2.3rem;
        line-height:1.2;
    }

    .hero p{
        font-size:1rem;
        line-height:1.6;
    }

    .hero-top-image{
        width:130px;
        height:130px;
        margin:auto;
    }

    .menu h2,
    .combos h2,
    .cta h2{
        font-size:2rem;
    }

    button{
        width:100%;
        max-width:320px;
        margin:auto;
    }

}
/*  HAMBURGUESA  */



@media (max-width: 768px){

  .menu-toggle{
    display: flex;
  }

  .nav-links{
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);

    width: 92%;
    max-width: 340px;

    display: none;
    flex-direction: column;
    gap: 12px;

    padding: 18px;

    background: rgba(255,255,255,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
  }

  .nav-links.active{
    display: flex;
  }

  .nav-links a{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 14px 18px;

    background: #ffffff;
    color: #444444;

    border: 1px solid #ececec;
    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    transition: all .25s ease;
  }

  .nav-links a:hover{
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(255,107,53,.35);
  }

  .nav-links a:active{
    transform: scale(.98);
  }
}

.product {
  transition: transform 0.4s ease;
  will-change: transform;
}
