
/* ============================================================
   ESTILO GLOBAL PROFESIONAL TIPO ELJURI STORE
   ADAPTADO 100% A TU HTML EXACTO
============================================================ */

body {
  margin: 0;
  padding: 0;
  background: #f4f6f9 !important;
  color: #333;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* TITULOS */
h1, h2, h3 {
  color: #1e1e1e;
  font-weight: 600;
}

/* ===============================
   HEADER
================================= */
header img {
  width: 180px;
  margin: 25px auto 5px;
  display: block;
}

h1.text-center {
  margin: 10px 0 25px;
  font-size: 1.6rem;
  letter-spacing: -0.2px;
  color: #1e1e1e !important;
}

h2.text-center {
  margin-top: 15px;
  font-weight: 700;
  color: #1e1e1e !important;
}

/* ===============================
   BOTÓN HAMBURGUESA
================================= */
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 35px;
  background: #ffffffee;
  border-radius: 8px;
  padding: 6px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid #dddddd;
}

.menu-btn .bar {
  width: 100%;
  height: 4px;
  background: #0046d8;
  border-radius: 4px;
}

/* ===============================
   SIDE MENU
================================= */
.side-menu {
  position: fixed;
  left: -260px;
  top: 0;
  width: 260px;
  height: 100vh;
  background: #ffffff;
  border-right: 2px solid #e3e7ef;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding-top: 60px;
  z-index: 99999;
  transition: 0.35s ease;
}

.side-menu.open {
  left: 0;
}

.side-menu ul li {
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 1px solid #ececec;
  color: #333;
  font-weight: 500;
  transition: 0.2s;
}

.side-menu ul li:hover,
.side-menu ul li.active {
  background: #eaf0ff;
  color: #0046d8;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #444;
  cursor: pointer;
}

/* ===============================
   CATEGORÍAS (chips estilizadas)
================================= */
.category {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  padding: 8px 20px;
  border-radius: 12px;
  display: inline-block;
  margin-right: 12px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.25s ease;
}

.category:hover {
  background: #eaf3ff;
  border-color: #2d73ff;
  color: #2d73ff;
  transform: scale(1.05);
}

.carousel {
  overflow-x: auto;
  display: flex;
  gap: 16px;
  padding: 12px 20px 25px;
  scrollbar-width: none;
}

/* ===============================
   PRODUCT CARDS
================================= */
.products {
  display: flex;
  overflow-x: auto;
  gap: 22px;
  padding: 0 25px 35px;
}

.card {
  flex: 0 0 auto;
  width: 270px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #bcd1ff;
  transition: all 0.25s ease;
  overflow: hidden;
  padding-bottom: 25px;
}

.card:hover {
  border-color: #2d73ff;
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

/* Imagen del producto */
.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

/* Nombre */
.card h3 {
  margin: 12px 15px 5px;
  color: #2b2b2b;
  font-size: 1rem;
  font-weight: 600;
}

/* Descripción */
.card p {
  font-size: 0.9rem;
  color: #666;
  padding: 0 15px;
}

/* Precio */
.card .price {
  font-weight: 700;
  font-size: 1.35rem;
  color: #0046d8 !important;
  padding-left: 15px;
}

/* ===============================
   BOTÓN WHATSAPP
================================= */
.btn-whatsapp {
  background: #0046d8 !important;
  color: white !important;
  border-radius: 8px !important;
  width: 85%;
  display: block;
  margin: 10px auto 0;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: none !important;
  transition: 0.2s ease;
}

.btn-whatsapp:hover {
  background: #003bb5 !important;
  transform: scale(1.04);
}

/* ===============================
   MODAL (producto)
================================= */
.modal-content {
  background: #ffffff !important;
  color: #333 !important;
  border-radius: 16px !important;
  border: none !important;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  padding-bottom: 25px;
}

.modal-content h2 {
  font-size: 1.4rem;
  color: #1a1a1a !important;
  font-weight: 700;
}

.modal-content img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 10px;
}

.modal-content a {
  background: #0046d8 !important;
  color: white !important;
  border-radius: 10px;
  padding: 12px 20px;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.modal-content a:hover {
  background: #003bb5 !important;
}

/* ===============================
   LIST VIEW
================================= */
.products.list-view {
  flex-direction: column;
}

.products.list-view .card {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px;
}

.products.list-view .card img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
}

/* ===============================
   FOOTER
================================= */
.site-footer {
  width: 100%;
  background: #eef1f5 !important;
  color: #333;
  padding: 45px 20px;
  border-top: 1px solid #d0d6e0;
  margin-top: 40px;
}

.footer-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}

.footer-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5rem;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  background: #ffffff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  transition: 0.2s;
  color: #333 !important;
}

.footer-social a:hover {
  background: #f2f2f2;
  color: #0046d8 !important;
  transform: scale(1.07);
}

.footer-bottom {
  margin-top: 25px;
  text-align: center;
  color: #444 !important;
  font-size: 0.9rem;
}

/* ===============================
   OCULTAR SCROLLBARS
================================= */
#brandCarousel::-webkit-scrollbar,
#categoryCarousel::-webkit-scrollbar,
#productCarousel::-webkit-scrollbar {
  display: none;
}


/* ============ FOOTER NUEVO ============ */
.site-footer{
  background: linear-gradient(180deg,#000,#ff4e00);
  color:#fff;
  padding:50px 20px;
  margin-top:auto;
}

.footer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  align-items:flex-start;
}

.footer-box h3{
  font-size:1.3rem;
  margin-bottom:10px;
  color:#ffce00;
  text-transform:uppercase;
  letter-spacing:1px;
}

.footer-box p{
  font-size:.9rem;
  color:#ddd;
  margin:5px 0;
}

.footer-btn{
  margin-top:10px;
  display:inline-block;
  background:#ffce00;
  color:#000;
  font-weight:bold;
  padding:8px 15px;
  border-radius:8px;
  transition:.3s;
  text-decoration:none;
}

.footer-btn:hover{
  background:#fff;
  box-shadow:0 0 12px rgba(255,255,255,.5);
  transform:scale(1.05);
}

/* Redes */
.footer-social{
  display:flex;
  gap:15px;
  margin-top:10px;
}

.footer-social a{
  width:42px;height:42px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  transition:.3s;
}
.footer-social a:hover{
  background:#fff;
  color:#ff4e00;
  box-shadow:0 0 12px rgba(255,78,0,.6);
  transform:translateY(-4px);
}

/* Línea */
.footer-divider{
  width:100%;
  border-top:1px solid rgba(255,255,255,0.3);
  margin:30px 0;
}

/* Copy */
.footer-copy{
  text-align:center;
  font-size:.85rem;
  opacity:.8;
}

    /* === FOOTER === */
.site-footer {
  width: 100%;
  margin-top: 60px;
  background: linear-gradient(180deg, #000000, #ff4e00);
  color: #fff;
  padding: 30px 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 900px;
  gap: 20px;
}

.footer-info h4 {
  margin-bottom: 5px;
  font-size: 1.3rem;
  color: #ffce00;
}

.footer-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #ff4e00;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255,78,0,0.6);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 15px;
  opacity: 0.8;
}

 

/* === ESTILOS GENERALES === */
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at center, #0b0b0b, #000);
  color: #eee;
  font-family: "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


  header img {
    width: 200px;
    margin-top: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.3));
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  h1 {
    margin: 15px 0;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff4e00, #ffe600, #ff4e00);
    background-size: 200%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
  }

  @keyframes shine {
    0% { background-position: 200%; }
    100% { background-position: -200%; }
  }

  h2 {
    margin-top: 25px;
    font-size: 1.4rem;
    text-align: center;
    color: #ffce00;
    letter-spacing: 1px;
  }



/* === Botón Quiero este producto (color naranja animado unificado) === */
.btn-whatsapp {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #ff7a00, #ffb347); /* tono naranja */
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 5px 0;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 5px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

/* animación del brillo que ya usa tu modal */
.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: slideShine 2.5s infinite;
}

@keyframes slideShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-whatsapp:active {
  transform: scale(0.97);
}


  /* === CARRUSELES === */
  .carousel,
  .products {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 15px 25px;
    scroll-behavior: smooth;
  }

  .carousel::-webkit-scrollbar,
  .products::-webkit-scrollbar { display: none; }

  /* === CATEGORÍAS === */
  .category {
    background: linear-gradient(135deg, #1f1f1f, #292929);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 10px 20px;
    white-space: nowrap;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .category:hover {
    background: linear-gradient(135deg, #ff4e00, #ffce00);
    color: #000;
    transform: scale(1.05);
  }

  /* === PRODUCTOS === */
  .card {
    flex: 0 0 auto;
    width: 250px;
    background: linear-gradient(160deg, #1a1a1a, #111);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 206, 0, 0.3);
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .card:hover img { transform: scale(1.05); }

  .card h3 {
    margin: 10px 0 5px;
    font-size: 1rem;
    color: #fff;
  }

  .card p {
    font-size: 0.9rem;
    color: #bbb;
    margin: 0 10px 10px;
  }

  .card .price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffce00;
    margin-bottom: 10px;
  }

  /* === MODAL === */
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }

  .modal-content {
    background: linear-gradient(180deg, #181818, #0c0c0c);
    border-radius: 20px;
    width: 90%;
    max-width: 420px; /* tamaño más pequeño en desktop */
    padding: 25px;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    overflow-y: auto;
    max-height: 85vh;
    animation: popIn 0.3s ease-out;
  }

  @keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }

  .modal-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .modal-content h2 {
    font-size: 1.3rem;
    color: #ffce00;
    margin-bottom: 10px;
    text-align: center;
  }

  .modal-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
  }

  .modal-content a {
    display: block;
    margin: 20px auto 0;
    width: fit-content;
    background: linear-gradient(90deg, #ff4e00, #ffce00);
    color: #000;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .modal-content a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 206, 0, 0.5);
  }

  .close {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
  }

  .close:hover { color: #fff; }

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .card {
      width: 180px;
    }
    .card img {
      height: 150px;
    }
    .modal-content {
      max-width: 90%;
      padding: 15px;
    }
    .modal-content h2 {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .card {
      width: 160px;
    }
    .card img {
      height: 140px;
    }
    h1 {
      font-size: 1.3rem;
    }
    h2 {
      font-size: 1.1rem;
    }
  }

    .hidden {
  display: none;
}

.sticky-button {
  position: fixed;
  background-color: #25d366;
  bottom: 20px;
  right: 20px;
  border-radius: 50px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.sticky-button svg {
  margin: auto;
  fill: #fff;
  width: 35px;
  height: 35px;
}

.sticky-button a,
.sticky-button label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.sticky-button label svg.close-icon {
  display: none;
}

.sticky-chat {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 320px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
}

.sticky-chat a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #505050;
}

.sticky-chat svg {
  width: 35px;
  height: 35px;
}

.sticky-chat .chat-content {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #25d366;
  overflow: hidden;
}

.sticky-chat .chat-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 75px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 70px 0 5px 0;
}

.sticky-chat .chat-header svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  fill: #fff;
}

.sticky-chat .chat-header .title {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

.sticky-chat .chat-header .title span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  line-height: 1.58em;
  margin: 0;
  color: #f4f4f4;
}

.sticky-chat .chat-text {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px;
  font-size: 12px;
}

.sticky-chat .chat-text span {
  display: inline-block;
  margin-right: auto;
  padding: 10px;
  background-color: #f0f5fb;
  border-radius: 0px 15px 15px;
}

.sticky-chat .chat-text span:after {
  content: "just now";
  display: inline-block;
  margin-left: 2px;
  font-size: 9px;
  color: #989b9f;
}

.sticky-chat .chat-text span.typing {
  margin: 15px 0 0 auto;
  padding: 10px;
  border-radius: 15px 0px 15px 15px;
}

.sticky-chat .chat-text span.typing:after {
  display: none;
}

.sticky-chat .chat-text span.typing svg {
  height: 13px;
  fill: #505050;
}

.sticky-chat .chat-button {
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.sticky-chat .chat-button svg {
  width: 20px;
  height: 20px;
  fill: #505050;
  margin-left: auto;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
}

.chat-menu:checked + .sticky-button label {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.chat-menu:checked + .sticky-button label svg.chat-icon {
  display: none;
}

.chat-menu:checked + .sticky-button label svg.close-icon {
  display: table-cell;
}

.chat-menu:checked + .sticky-button + .sticky-chat {
  bottom: 90px;
  opacity: 1;
  visibility: visible;
}

#categoryCarousel,
#productCarousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#categoryCarousel::-webkit-scrollbar,
#productCarousel::-webkit-scrollbar {
  display: none;
}

.video-carousel {
  margin-top: 15px;
  overflow-x: auto;
  display: flex;
  gap: 10px;
  scroll-behavior: smooth;
}
.video-scroll {
  display: flex;
  flex-wrap: nowrap;
}
.video-scroll iframe {
  flex: 0 0 auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ============================
   Estilo y animación del -7%
============================ */
.discount-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(45deg, #ff3d00, #ff9800, #ff3d00);
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 100, 0, 0.6);
  animation: colorPulse 2s infinite, floatTag 3s ease-in-out infinite;
}

/* Animación de color */
@keyframes colorPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Movimiento suave (flotando) */
@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.discount-tag {
  background-size: 200% 200%;
}


/* === FIX GENERAL === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at center, #0b0b0b, #000);
}

.container-fluid {
  flex: 1 0 auto;
}

.view-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}

.view-btn {
  background: #222;
  border: 1px solid #ff4e00;
  color: #ffce00;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-btn.active {
  background: linear-gradient(90deg, #ff4e00, #ffce00);
  color: #000;
  box-shadow: 0 0 10px rgba(255, 206, 0, 0.5);
}

.view-btn:hover {
  transform: scale(1.05);
}

/* Modo lista */
.products.list-view {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.products.list-view .card {
  width: 95%;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
  margin: 10px auto;
  padding: 10px;
}

.products.list-view .card img {
  width: 160px;
  height: 120px;
  border-radius: 10px;
}

.products.list-view .card h3 {
  font-size: 1rem;
  margin: 0;
}

.products.list-view .card p {
  margin: 3px 0;
}

/* === BOTÓN HAMBURGUESA === */
.menu-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}
.menu-btn .bar {
  height: 3px;
  width: 100%;
  background: #ffce00;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-btn:hover .bar {
  background: #ff4e00;
}

/* === MENÚ LATERAL IZQUIERDO === */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 240px;
  height: 100%;
  background: linear-gradient(180deg, #0b0b0b, #1a1a1a);
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 60px 20px 20px;
  transition: left 0.4s ease;
  z-index: 109;
}

.side-menu.active {
  left: 0;
}

.close-menu {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #ffce00;
  font-size: 2rem;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  padding: 12px 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.side-menu li:hover {
  background: linear-gradient(90deg, #ff4e00, #ffce00);
  color: #000;
  font-weight: bold;
}

.side-menu li.active {
  background: linear-gradient(90deg, #ffce00, #ff4e00);
  color: #000;
  font-weight: bold;
}

/* Overlay oscuro al abrir menú */
#menuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 108;
}
#menuOverlay.active {
  display: block;
}

/* === Etiquetas de las Cards === */
.card {
  position: relative;
}

/* Envío Gratis */
.free-tag {
  position: absolute;
  top: 6px;         /* más arriba que el -7% */
  left: 10px;
  background: #007bff; /* azul */
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  z-index: 3;
}
 
.bf-style{
background: linear-gradient(45deg, #000, #111);
border: 2px solid #ffce00;
box-shadow: 0px 0px 15px #ffce00;
padding: 12px;
margin-top: 15px;
}
.bf-style h4{ color:#ffce00; font-size:1.3rem; }
.bf-special{ color:#ff0000; font-weight:bold; font-size:1rem; }
.ubicacion{
border: 2px solid #00eaff;
box-shadow: 0 0 12px #00eaff;
padding: 12px;
margin-top: 15px;
}
.ubicacion h4{ color:#00eaff; font-size:1.2rem; }
.ubicacion a{ color:#00eaff; font-weight:bold; font-size:1rem; }

/* ===========================
   🔥 FIX RESPONSIVE FOOTER
   =========================== */

.footer-content{
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-box{
  flex: 1;
  min-width: 250px;
}

/* 📱 En móviles se apilan uno debajo del otro */
@media (max-width: 600px){
  .footer-content{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-box{
    width: 100%;
  }
  .footer-bottom{
    text-align: left;
    padding-left: 0;
  }
}



 :root{
    --overlay: rgba(0,0,0,0.35);
    --accent: #ffb400;
    --max-height-desktop: 560px;
  }

  html,body{
    height:100%;
    margin:0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }

  /* Contenedor del banner */
  .hero {
    position: relative;
    width: 100%;
    min-height: 36vh; /* altura mínima en móviles */
    height: clamp(320px, 45vh, var(--max-height-desktop));
    overflow: hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
  }

  /* Fondo: usa tu imagen local llamada banner.jpg */
  .hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("banner.jpg"); /* <-- coloca tu imagen aquí (o cambia la ruta) */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: background-position, transform;
    z-index: 0;
    transition: transform .6s ease;
  }

  /* Overlay para legibilidad */
  .hero__overlay {
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
    z-index:1;
    pointer-events:none;
  }

  /* Contenido encima del banner */
  .hero__content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 1.25rem;
    box-sizing: border-box;
    display:flex;
    gap:1.25rem;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
  }

  .hero__left{
    flex: 1 1 420px;
    min-width: 220px;
  }
  .hero__right{
    flex: 0 1 300px;
    text-align:right;
    min-width: 180px;
  }

  h1{
    margin:0 0 .4rem 0;
    font-size: clamp(1.1rem, 2.6vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 14px rgba(0,0,0,0.45);
  }

  p.lead{
    margin:0;
    font-size: clamp(.85rem, 1.6vw, 1.05rem);
    opacity: .95;
  }

  .cta {
    display:inline-block;
    margin-top: .9rem;
    background: linear-gradient(90deg,var(--accent), #ff8a00);
    color:#111;
    padding: .6rem 1.05rem;
    border-radius: 10px;
    font-weight:700;
    text-decoration:none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    transition: transform .14s ease, box-shadow .14s ease;
  }
  .cta:hover{ transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.32); }

  /* Small badge on right */
  .badge{
    display:inline-block;
    background: rgba(255,255,255,0.08);
    padding: .45rem .65rem;
    border-radius: 9px;
    backdrop-filter: blur(4px);
    font-weight:600;
    font-size: .86rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
  }

  /* Parallax: fondo fijo en pantallas grandes */
  @media (min-width: 900px) {
    .hero__bg{
      background-image: url(banner.jpg);
      background-attachment: fixed;
      /* Animación lenta horizontal del fondo (opcional) */
      animation: bgShift 24s linear infinite;
      background-size: cover;
    }
  }

  /* Desactivar attachment fixed en móviles por rendimiento */
  @media (max-width:899px){
    .hero__bg{ background-attachment: scroll; animation: none; }
    .hero__content { padding: 1rem; }
    .hero__right { text-align:left; margin-top: .6rem; width:100%; }
  }

  @keyframes bgShift {
    0%   { background-position: 10% 50%; }
    50%  { background-position: 90% 50%; }
    100% { background-position: 10% 50%; }
  }

  /* Extra responsiveness */
  @media (max-width:560px){
    .hero{ min-height: 42vh; }
    h1{ font-size: 1.25rem; }
    .cta{ padding: .5rem .8rem; font-size: .95rem; }
  }

  /* Pequeño efecto al hacer scroll: levantar el contenido */
  .scrolled .hero__content { transform: translateY(-18px); transition: transform .36s ease; }


    .footer{ color:#fff;padding:45px 20px;}
  .footer-content{display:flex;flex-wrap:wrap;gap:25px;max-width:1200px;margin:auto;}
  .footer-box{flex:1;min-width:230px; }
  h3{color:#ffce00;font-size:1.15rem;margin-bottom:8px;text-transform:uppercase;}
  p{font-size:.9rem;color:#d8d8d8;margin:3px 0;}
  .footer-btn{margin-top:6px;display:inline-block;background:#ffce00;color:#000;font-weight:bold;padding:8px 14px;border-radius:8px;transition:.25s;text-decoration:none;}
  .footer-btn:hover{background:#fff;transform:scale(1.04);}

  /* Botón ubicación en azul */
  .btn-blue{background:#00eaff;color:#000;}
  .btn-blue:hover{box-shadow:0 0 10px #00eaff;}

  /* Redes básicas compactas */
  .footer-social{display:flex;gap:10px;}
  .footer-social a{background:#111;padding:8px 12px;border-radius:6px;font-size:.85rem;transition:.25s;}
  .footer-social a:hover{background:#ffce00;color:#000;}

  /* Horario Black Friday Glow */
  .horario{border:2px solid #ffce00;padding:10px;border-radius:8px;box-shadow:0 0 10px #ffce00;}
  .special-title{color:#ff4e00;font-weight:bold;margin-top:6px;}

  .footer-divider{width:100%;height:1px;background:#333;margin:28px 0;}
  .footer-copy{text-align:center;font-size:.8rem;color:#bbb;}

  /* Responsive */
  @media(max-width:650px){
    .footer-content{flex-direction:column;text-align:left;}
    .footer-box{width:100%;}
  }


  @keyframes snowFall{
  to{
    transform: translateY(110vh);
  }
}

 