

/* 🔠 Fuente personalizada */
@font-face {
  font-family: 'MADECarvingSoft';
  src: url('./fonts/MADECarvingSoftPERSONALUSE-Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MadeCarving';
  src: url('/fonts/MADECarvingSoftPERSONALUSE-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


/* Sidebar general (PC y desktop) */
.sidebar,
.sidebar * {
  font-family: 'MADECarving', sans-serif;
}


/* 🔧 Fuente aplicada globalmente */
body {
  font-family: 'MADECarvingSoft', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  background-color: #ffffff;
  color: #e9bfbf;
}





/* 🔺 Encabezado fijo */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  
  background-color: #A11E4A;
  text-align: center;
  padding: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
   height: 400px; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
/* 🔺 Logo */
  .logo {
  max-width: 500px;
  margin-top: -100px; /* Agrega un margen superior de 20px */
  height: auto;
}


}


/* favoritos */
.favorites-button {
  position: fixed;
  top: 270px; /* Distancia desde arriba */
  right: 20px; /* Distancia desde la derecha */

  cursor: pointer;
  z-index: 3500;
  color: rgb(255, 255, 255);
  border-radius: 50%;
 
  display: flex;
  align-items: center;
  justify-content: center;
}




/* ☰ Botón menú lateral */



.sidebar-icon {
  width: 120px;
  height: 120px;
  color: white;
}


.sidebar-toggle {
  position: fixed;
  top: 20px;
  left: 0;
  width: 220px;
  height: 80px;
  z-index: 2100;
  font-size: 32px;
  font-weight: bold;
  border: none;
  background-color: #A11E4A;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* 🧱 Sidebar */
/* 🧱  Sidebar */
.sidebar {
  font-family: 'MADECarvingSoft', sans-serif !important;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  min-height: 100vh;
  width: 60vw;
  
  background-color: #A11E4A;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 3000;
  padding: 10px;
  display: flex;
  flex-direction: column;

 
}



.sidebar.open {
  transform: translateX(0);
}

/* ✖ Botón cerrar sidebar */
.sidebar .close-sidebar {
   font-family: 'MADECarvingSoft', sans-serif !important;
  align-self: flex-start;
  margin-bottom: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.close-sidebar {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.close-sidebar svg {
  width: 64px;
  height: 64px;
}


/*MODAL PRODUCTOS DETALLE*/

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}
/*-----------------*/


/* 🧾 CONTENEDOR PRINCIPAL DE LOS PRODUCTOS */

/* 🧾 Contenido principal */
.content {
  /* separa del header */
  margin-top: 10px;
}

.content.shifted-margin {
  margin-top: 400px !important;
}


.content:not(.shifted) {   /* cuando el sidebar está oculto */

  margin-left: 20px;       /* lo de siempre a la izquierda  */
  margin-right: 20px;      /* ← Aumenta este valor ‑ más espacio a la derecha */
}

/* Si el sidebar está abierto (.content.shifted) y también quieres
   mantener esa separación extra, duplica la regla:            */


/* 🔍 Barra de búsqueda + carrito */
.topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}


/* 🔍 Input de búsqueda */
#search {
  position: fixed;          /* fuera del flujo: no se ve afectado por .content.shifted */
   top: 260px;         /* baja un poco para acompañar el header más alto */
  left: 50%;                /* céntralo horizontalmente */
  transform: translateX(-50%);
  z-index: 1000;
  

 width: 100%;
  max-width: 720px;
   padding: 36px 45px;
  font-size: 38px;
  border: 2px solid  #686868;
  border-radius: 12px;
  color: #A11E4A;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  font-family: 'MADECarvingSoft', sans-serif;
  font-weight: 900;
  box-sizing: border-box;
  transition: border-color .3s ease, box-shadow .3s ease;
  outline: none;
}

#search::placeholder { color:#a11e4ab0; }
#search:focus {
  border-color:#E2833D;
  box-shadow:0 0 8px #E2833D;

}


/* 📂 Categorías */

#categoryList hr {
  border: 0;
  border-top: 2px solid #686868;
  width: 100vw;         /* ocupa todo el ancho de la ventana */
 
}

#categoryList {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
 
}



@media (max-width: 1024px) {
  #categoryList {
    gap: 26px; /* separación entre botones */
  }
}

#categoryList button {
  width: 100%;
  font-size: 46px;
  background-color: #A11E4A;
  border: none;
  border-radius: 0;
  cursor: pointer;
  color: #ffffff;
  padding: 0;
}

#categoryList button:hover {
  background-color: #A11E4A;
  color: #E2833D;
}



.product {
  width: calc(100% - 20px);  /* 10 px de margen a cada lado */
  margin: 0 10px 60px;       /* top 0, right 10 px, bottom 60 px, left 10 px */
  padding: 60px;

  border: 2px solid #686868;
  border-radius: 20px;
  background-color: #ffffff;
  color: #A11E4A;
}

.product h3 {
  font-size: 40px;            /* antes típico 24px -> 3x más grande */
  margin: 0 0 20px;
}

.product p {
  font-size: 10px;            /* antes 16px -> 3x más grande */
  margin: 10px 0;
}


/* 🛒 Botón del carrito */



.cart-button {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 40px;
  cursor: pointer;
  background-color: #A11E4A;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  z-index: 3000;
}

.cart-icon {
  width: 100px;
  height: 100px;
  color: white;
}

.cart-count {
  margin-left: 8px;
  font-weight: bold;
  font-size: 50px;
  color:#E2833D;
}


/* 📦 Carrito desplegable */
/* 📦 Carrito desplegable – pantalla completa REAL */
.cart-popup {
  position: fixed;
  inset: 0;                  /* top:0; right:0; bottom:0; left:0 */
  width: 100%;               /* 100 % de la ventana, no 100vw */
  height: 100%;              /* 100 % de la ventana, no 100vh */

  /* Visual */
  background-color: #fff;  /*FONDO CARRITO */
  color: #fff;

  /* Layout */
  display: none;             /* se muestra/oculta vía JS */
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;    /* padding incluido en el 100 % */
  overflow-y: auto;          /* solo scroll vertical para el carrito */
  overflow-x: hidden;        /* sin scroll lateral */
  z-index: 9999;             /* sobre todo lo demás */
}


.cart-popup h3 {
 /* font-size: 28px;*/
  margin-top: 0;
  text-align: center;
  /*color: #ffc36a;*/
  border-bottom: 2px solid #686868;
  padding-bottom: 15px;
}

.cart-popup ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.cart-popup li {
  background-color: #fff;
  border: 1px solid #686868;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.cart-popup .close-cart {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: white;
  font-size: 26px;
  border: none;
  cursor: pointer;
}

/*------  CARRITO TEXTO ESTILO GENERAL ---*/


.close-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: inherit;
}

.close-cart-btn svg {
  width: 124px;
  height: 124px;
}

.cart-title {
  font-size: 3rem;
  margin-bottom: 18px;
  color: #A11E4A;

    font-family: 'MADECarvingSoft';
}

.delivery-title {
  font-size: 2.6rem;
  margin: 32px 0 18px 0;
  color:  #A11E4A;
    font-family: 'MADECarving';
  
}


#shippingOptions {
  text-align: center;
  margin-bottom: 32px;
}

#shippingCostText {
  font-size: 2.4rem;
  color: #A11E4A;
  font-weight: bold;
}

.styled-checkbox-label {
  font-size: 3.5rem;
  padding: 0.5rem 0;
  font-family: 'MadeCarving', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}


/*   DIVIDER TOTAL CARRITO*/
.divider {
  border: none;
  border-bottom: 5px solid #686868;  
  width: 100%;
  margin: 16px auto;
}


.cart-total {
  font-size: 4rem;
  font-weight: bold;
  color: #A11E4A;
  margin-left: 150px;
}

.send-order-btn {
  background: #A11E4A;
  color: #FFF;
  border: 2px solid #A11E4A;
  padding: 40px 48px;
  font-size: 3.4rem;
  font-family: 'MADECarvingSoft', sans-serif;
  font-weight: 900;
  border-radius: 150px;
  cursor: pointer;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: block;
}

/*--------*/

.cart-popup .whatsapp-button {
  background-color: #25d366;
  color: white;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}
    /* 📦 iten carrito  */
    
.cart-item {
  font-size: 2rem;
  padding: 30px;
  min-height: 200px;
  gap: 30px;
}
.cart-item input[type="number"] {
  font-size: 1.5rem;
  width: 120px;  /* o el ancho que quieras */
  height: 75px;  /* altura más grande */
  padding: 0;    /* opcional para ajustar */
}
.cart-item svg {
  width: 36px;
  height: 36px;
}


  /* 📦 DIRECCION CARGAR  */
    
#shippingAddress {
   width: 70%;
  max-width: 800px;
  height: 100px;       /* más alto, para varias líneas */
  padding: 14px 16px;
  font-size: 2.8rem;
  border: 2px solid #686868;


  display: block;
  margin: 0 auto 32px auto;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  box-sizing: border-box;
  font-family: 'MADECarving', sans-serif;
  font-weight: 900;
  resize: vertical;  /* permite que el usuario cambie la altura */
  border-radius: 10px;
  margin-bottom: 32px;
  color: #A11E4A;

  margin-left: auto;
  margin-right: auto;
}

#shippingAddress::placeholder {
  color:#6868689d;
  
}

#shippingAddress:focus {
  border-color: #A11E4A;
  box-shadow: #A11E4A;
}


  /* 📦--------------- */
  /* 📦--------COLOR DE LETRAS CANITADA EN SELECION PRODUCTO SVG -Y+ ------- */
  .qty-btn,
#productDetailQty {
   color: #3b3b3b;
}
.qty-btn svg {
  color: #3b3b3b;
}
/*------- ------- */

/* asumiendo que cada .product tiene 3 <p> en orden: categoría, unidad y precio */
.product p:nth-of-type(1) {  /* categoría */
  margin-bottom: 40px;
}
.product p:nth-of-type(2) {  /* unidad */
  margin-top: 0;  /* opcional */
}




.styled-checkbox-label {
  font-size: 2.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 100px;
  cursor: pointer;
  user-select: none;
}

.styled-checkbox-label input[type="checkbox"] {
  display: none;
}

.styled-checkbox-label .checkmark {
  width: 86px; /* 5 veces más grande aprox. */
  height: 86px;
  background-color: #fff;
  border: 3px solid #686868;
  border-radius: 12px;
  position: relative;
  transition: all 0.2s ease;
  margin-left: 150px;
}

.styled-checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #FFF;
  border-color: #A11E4A;
}

.styled-checkbox-label .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  
}

.styled-checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  display: block;
  left: 20px;
  top: -10px;
  width: 30px;  /* tamaño del check */
  height: 70px;
  border: 6px solid #A11E4A;  /* grosor del borde del check */
  border-width: 0 8px 8px 0;  /* aquí aumentás el grosor de la tilde */
  transform: rotate(45deg);
}
.styled-checkbox-label .checkbox-text {
  color:#686868; /* color default */
  transition: color 0.3s ease;
  font-size: 3.5rem;
}

.styled-checkbox-label input[type="checkbox"]:checked + .checkmark + .checkbox-text {
  color: #A11E4A;
}


.whatsapp-button {
  position: fixed;
  bottom: 100px;  /* Más arriba (aumenta este valor para subir más) */
  right: 45px;   /* Más a la izquierda (aumenta este valor para mover más a la izquierda) */
  width: 120px;
  height: 1220x;
  background-color: white;
  border-radius: 150%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 120px;
  height: 120px;
}


/* PIE PAGINA      -----    */


.site-footer {


  width: 100%;  /* 100% del viewport */

  text-align: center;
  margin: 0;            /* Elimina márgenes externos si los hay */
  padding: 0px 0;      /* Padding solo arriba/abajo para evitar "achicamiento horizontal" */
  position: relative;   /* Asegura comportamiento normal de flujo */
  left: 0;
  

}

.site-footer h3 {
  margin-bottom: 16px;
 
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
.footer {
  width: 100%;
  background-color: #dadada;
  padding: 30px 20px;
  text-align: left;
  color:#A11E4A;
  font-size: 2.5em;
  margin: 0;
  font-weight: 300;
  font-family: 'MadeCarving', sans-serif;
}

.footer-title {
  margin-bottom: 16px;
  margin-left: 20px;
}

.footer-content {
  margin: 0 0 20px 0;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}

.footer-link {
  color: #A11E4A;
  text-decoration: none;
}

/* Iconos SVG pie */
.footer-icon-wsp {
  width: 62px;
  height: 62px;
  stroke: #A11E4A;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 20px;
}

.footer-icon-email {
  width: 72px;
  height: 72px;
  stroke: #A11E4A;
  fill: none;
  stroke-width: 0.72;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 15px;
}

.footer-icon-instagram {
  width: 62px;
  height: 62px;
  fill: #A11E4A;
  stroke: none;
  margin-left: 20px;
}

.footer-icon-location {
  width: 70px;
  height: 70px;
  stroke: #A11E4A;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 20px;
}
/* PIE DE PAGINA SECUNDARIO (HORARIOS) */



.footer-secondary {
  width: 100%;
  background-color: #A11E4A;
  padding: 20px;
  text-align: left;
  color: white;
  font-size: 2.5em;
  font-family: 'MadeCarving', sans-serif;
  line-height: 1.4;
}

.footer-secondary p {
  margin: 0;
  font-weight: 300;
  margin-left: 100px; /* margen solo para el texto */
}

.footer-secondary-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 100px; /* margen para grupo SVG + título */
}

.footer-secondary-icon {
  fill: white;
  width: 48px;
  height: 48px;
  stroke: none;
  flex-shrink: 0;
   margin-left: -160px; 
}

.footer-secondary-title {
  font-weight: bold;
  font-size: 1.1em;
}


/*------------------*/
/* PUBLICIDAD */
/* Evita el salto visual debajo del carrusel */
.promo-image {
  text-align: center;
  margin: 400px 0 0 0; /* mantenés el margen superior */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promo-image img {
  width: 90vw;           /* ocupa el 90% del ancho del dispositivo */
  max-width: 600px;      /* no se hace gigante en pantallas grandes */
  aspect-ratio: 1 / 1;   /* mantiene proporción cuadrada */
  object-fit: cover;     /* recorta la imagen si no es cuadrada */
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.hidden {
  display: none !important;
}




/**FILTROS UNIDAD O PRECIO */



/****-------------------------*/



/*pc  AJUSTE TAMAÑO PANTALLA A PC*/


/* ✅ Notebooks y pantallas medianas (de 1366px a 1919px) */
@media (min-width: 1366px) and (max-width: 1919px) {
  #filterContainer {
    left: 18vw;
  }
}
/* ✅ Monitores grandes (1920px o más) */
@media (min-width: 1920px) {
  #filterContainer {
    left: 520px;
  }
}

@media (min-width: 1024px) {


  /*   DIVIDER TOTAL CARRITO*/
  .divider {

  border-bottom: 2px solid #686868; /* grosor por defecto (PC) */

}

/* Mantiene igual en celular (por defecto no cambia nada) */
#filterContainer {
  transition: all 0.3s ease;
}



  #filterContainer {
    transform: scale(0.45); /* achica un 40% */
    transform-origin: top left;


    top: 190px;  /* bajalo un poco */
    position: fixed; /* aseguramos que mantenga su posición fija */
  }

  #filterButton {
    transform: translateY(80%); /* baja el botón */
  }



  /* PUBLICIDAD pc*/
.promo-image {
  text-align: center;
  margin: 150px 0 0px; /* más espacio arriba */
}

.promo-image img {
  width: 100%;
  max-width: 600px; /* más angosta en PC */
  height: auto;
  /*aspect-ratio: 3 / 1.4; /* fuerza que sea más fina: ancho 3x, alto 1x */
   aspect-ratio: 3 / 1;
  object-fit: cover; /* recorta si es necesario */
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

  
  
  /* Contenedor principal centrado y ancho limitado */
  .content {
    max-width: 900px;
    margin: 0 auto;
  }

  /* Header más pequeño */
  header {
    height: 150px;
  }

  /* Logo más pequeño y sin margen superior */
  header .logo {
    max-width: 250px;
    margin-top: -50px;
  }

.close-sidebar svg {
  width: 24px;
  height: 24px;
}

  /* Sidebar más estrecho */
  .sidebar {
    width: 300px;
  }

  /* Productos: menos padding y fuente más chica */
  .product {
    padding: 30px;           /* antes 60px, bajamos a 30px */
  }

  .product h3 {
    font-size: 20px;         /* antes 40px, bajamos a 20px */
  }

  .product p {
    font-size: 12px;         /* antes 10px, subimos un poco para legibilidad */
  }

  /* Input búsqueda más pequeño */
  #search {
    width: 720px;            /* antes 720px, bajamos a 400px */
 /* Ajustes para hacerlo más fino verticalmente */
  padding: 6px 22px;     /* menos padding vertical */
  font-size: 16px;       /* texto más chico */
    top: 100px;
  }
.cart-button {
  
  top: 20px;
  right: 20px;
  font-size: 5px;       /* antes: 10px */
  padding: 2.5px 4px;   /* antes: 5px 8px */
}


/* Botón menú lateral reducido a la mitad */
.sidebar-toggle {
  width: 110px;         /* 220 / 2 */
  height: 40px;         /* 80 / 2 */
  font-size: 16px;      /* 32 / 2 */
}
  /* Botones categorías más pequeños */
  #categoryList button {
    height: 50px;           /* antes 150px */
    font-size: 15px;         /* antes 54px */
    border-width: 2px;       /* un poco más delgado */
  
  }
  

  /* Checkbox label más pequeño */

  .styled-checkbox-label .checkmark {
    width: 40px;             /* antes 86px */
    height: 40px;
    border-width: 2px;       /* antes 3px */
    margin-left: -70px;       /* antes 150px */
  }

  .styled-checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    left: 12px;              /* antes 20px */
    top: -6px;               /* antes -10px */
    width: 10px;             /* antes 30px */
    height: 30px;            /* antes 70px */
    border-width: 0 5px 5px 0; /* antes 0 8px 8px 0 */
  }

  /* Dirección para envío */
  #shippingAddress {
    max-width: 400px;        /* antes 800px */
    height: 40px;            /* antes 100px */
    font-size: 1.2rem;       /* antes 2.8rem */
    padding: 10px 12px;      /* antes 14px 16px */
  }

  /* Cart popup ajustes para texto más chico */

.close-cart-btn svg {
  
  width: 40px;
  height: 40px;
}
  
.cart-title {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: #A11E4A;
  font-family: 'MADECarvingSoft';
}

.delivery-title {
  font-size: 1.5rem;
 
}

#shippingOptions {
  text-align: center;
  margin-bottom: 10px;
}

#shippingCostText {
  font-size: 1.2rem;
  color: #A11E4A;
  font-weight: bold;
}

.styled-checkbox-label {
  font-size: 1.2rem;
  padding: 0.25rem 0;
  font-family: 'MadeCarving', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cart-total {
  font-size: 2rem;
  font-weight: bold;
  color: #A11E4A;
  margin-left: 450px;
}

.send-order-btn {
  background:#A11E4A;
  color: #fff;
  border: 1px solid #fff;
  padding: 20px 24px;
  font-size: 1.5rem;
  font-family: 'MADECarvingSoft', sans-serif;
  font-weight: 900;
  border-radius: 75px;
  cursor: pointer;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  display: block;
}

.styled-checkbox-label .checkbox-text {

  font-size: 1.2rem;
}


  .cart-popup li {
    padding: 10px;
    border-radius: 8px;
  }

 .cart-icon {
  width: 50px;
  height: 50px;
  color: white;
}

.cart-count {
  margin-left: 8px;
  font-weight: bold;
  font-size: 20px;
  color: #E2833D;
}


  /* WhatsApp button más chico */
  .whatsapp-button {
    width: 80px;
    height: 80px;
    bottom: 70px;
    right: 30px;
  }

  .whatsapp-icon {
    width: 80px;
    height: 80px;
  }
  .favorites-button {
  font-size: 2px;        /* la mitad de 10px */
  padding: 1px 2px;    /* la mitad de 5px 8px */
  top:90px;             /* si antes era 20px, subir 3x más = 60px más arriba */
   right: 40px;           /* más a la izquierda, ajustá según lo necesites */
  position: fixed;    /* asegurate de que tenga position para aplicar top/left */
      width: 50px;
    height: 50px;
}


.filtros-button {
  font-size: 2px;
  padding: 1px 2px;
  width: 50px;
  height: 50px;
  top: 20px;        /* misma altura que .favorites-button */
  left: 870px;      /* ajustá según lo necesites respecto a .favorites-button */
  position: fixed;  /* necesario para usar top/left */
}


.sidebar-icon {
  width: 50px;
  height: 50px;
  color: white;
}


/* PIE PAGINA --- PC 1024PX -- */

.site-footer {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0px 0;
  position: relative;
  left: 0;
}

.site-footer h3 {
  margin-bottom: 9.4px; /* 7.84px * 1.2 */
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer {
  width: 100%;
  background-color: #dadada;
  padding: 17.64px 11.76px; /* 14.7px, 9.8px * 1.2 */
  text-align: left;
  color: #A11E4A;
  font-size: 1.5em;
  margin: 0;
  font-weight: 300;
  font-family: 'MadeCarving', sans-serif;
}

.footer-title {
  margin-bottom: 9.4px;     /* 7.84px * 1.2 */
  margin-left: 11.76px;     /* 9.8px * 1.2 */
    font-size: 0.95em;
}

.footer-content {
  margin: 0 0 11.76px 0;    /* 9.8px * 1.2 */
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 5.88px;              /* 4.9px * 1.2 */
  font-size: 0.588em;       /* 0.49em * 1.2 */
}

.footer-link {
  color: #A11E4A;
  text-decoration: none;
}

/* Iconos SVG pie */
.footer-icon-wsp {
  width: 36.46px;           /* 30.38px * 1.2 */
  height: 36.46px;
  stroke:#A11E4A;
  fill: none;
  stroke-width: 0.7056;     /* 0.588 * 1.2 */
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 11.76px;     /* 9.8px * 1.2 */
}

.footer-icon-email {
  width: 42.34px;           /* 35.28px * 1.2 */
  height: 42.34px;
  stroke: #A11E4A;
  fill: none;
  stroke-width: 0.4236;     /* 0.353 * 1.2 */
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 8.82px;      /* 7.35px * 1.2 */
}

.footer-icon-instagram {
  width: 36.46px;
  height: 36.46px;
  fill: #A11E4A;
  stroke: none;
  margin-left: 11.76px;
}

.footer-icon-location {
  width: 41.16px;           /* 34.3px * 1.2 */
  height: 41.16px;
  stroke:#A11E4A;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-left: 11.76px;
}

/*--------------------*/

/* PIE DE PAGINA SECUNDARIO (HORARIOS) PC 1024PX */

.footer-secondary {
  width: 100%;
  background-color: #A11E4A;
  padding: 20px;
  text-align: left;
  color: white;
  font-size: 1em; /* Igual que .footer */
  font-family: 'MadeCarving', sans-serif;
  line-height: 1.4;
}

.footer-secondary p {
  margin: 0;
  font-weight: 300;
  margin-left: 50px; /* margen uniforme al texto */
}

.footer-secondary-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px; /* margen uniforme a título + ícono */
}

.footer-secondary-icon {
  fill: white;
  width: 30px; /* Igual que los íconos del pie principal */
  height: 30px;
  stroke: none;
  flex-shrink: 0;
   margin-left: -56px; 
}

.footer-secondary-title {
  font-weight: bold;
  font-size: 1.1em;
  padding-left: 10px; /* espacio antes de “Horarios:” */
}


}

@media (min-width: 1920px) {
  .cart-total {
    margin-left: 750px; /* ajustá este valor según necesites */
  }
}


/*** PUBLICIDAD ESTILO Y DESLIZABLE ***/
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.promo-container {
  display: flex;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.promo-container img {
  flex: 0 0 100%;  /* cada imagen ocupa 100% del ancho */
  max-width: 100%;
}

/* Botones flecha */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: none; /* ocultas por defecto, se muestran solo en PC */
  color: #6868688e; /* color de las flechas */
}

.carousel-btn svg {
  width: 70px;  /* tamaño doble al original */
  height: 70px;
  stroke: currentColor; /* toma el color del botón */
  fill: currentColor;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Mostrar flechas solo en PC */
@media (min-width: 1024px) {
  .carousel-btn {
    display: block;
  }
}

/* --- Puntitos estilo moderno --- */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  padding: 0; /* evita que agrande el botón */
}

.carousel-dots button.active {
  background: #A11E4A;  /* tu color corporativo */
  transform: scale(1.2);
}

/****/

/***BARRA INFORMATIVA  */
@media (min-width: 1024px) {
.info-bar {
  width: 100%;
  background-color: #dadada; /* gris */
  color: #A11E4A;            /* bordó */
  display: flex;
  justify-content: space-around; /* reparte los bloques en fila */
  padding: 15px 20px;
  font-family: 'MadeCarving', sans-serif;
  font-size: 1.2em; /* ajusté el tamaño para que no desborde */
  text-align: center; /* centra los textos */
}

.info-bar-item {
  display: flex;
  flex-direction: column; /* icono arriba, texto abajo */
  align-items: center;    /* centro horizontal */
  gap: 8px;               /* espacio entre svg y texto */
}

.info-bar-icon {
  width: 84px;   /* tamaño razonable del ícono */
  height: 84px;
  fill: #686868;
}

.info-bar-text {
  margin: 0;
}
.destacado {
  font-weight: bold;
  font-size: 1em; /* opcional, para hacerlo un poco más grande */
}
}


/*** Media query para celulares */

@media (max-width: 1024px) {
  .info-bar {
    flex-direction: column;   /* bloques uno debajo del otro */
    align-items: flex-start;  /* alinea los bloques a la izquierda */
    gap: 30px;                /* espacio entre cada bloque */
    font-size: 2em;           /* doble de tamaño del texto */
    padding: 20px;
    color: #A11E4A; 
      background-color: #dadada; /* gris */
   
    font-family: 'MadeCarving', sans-serif;
  }

  .info-bar-item {
    display: flex;
    flex-direction: row;      /* SVG a la izquierda, texto a la derecha */
    align-items: center;      /* centra verticalmente SVG y texto */
    gap: 15px;                /* espacio entre SVG y frase */
    width: 100%;
  }

  .info-bar-icon {
    width: 180px;   /* doble de tamaño del icono */
    height: 180px;
    fill: #686868;
  }

  .info-bar-text {
    margin: 0;
  }

  .destacado {
    font-weight: bold;

  }
}


/** DESTACADOS.*/



.featured-container {
  margin: 40px 0;
  overflow-x: auto;
  padding: 10px;
}

.featured-title {
  font-size: 2rem;
  font-weight: bold;
  color:  #A11E4A; 
  margin-bottom: 20px;
  text-align: center;
}

.featured-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.featured-list::-webkit-scrollbar {
  height: 10px;
}



@media (max-width: 1024px) {
.featured-title {
  font-size: 4rem;
  font-weight: bold;
  color:  #A11E4A; 
  margin-bottom: 20px;
  text-align: center;
}}

