:root{
  --bg:linear-gradient(180deg,#ffffff 0%,#f0f0f0 100%);
  --panel:#f8fafc;
  --panel2:#eef2f7;
  --text:#0f172a;
  --muted:#353c46;

  --accent:#0b203c;      /* navy */
  --accent-soft:#1e3a5f;

  --border: rgba(15,23,42,.12);
  --shadow: 0 10px 25px rgba(15,23,42,.08);
  --radius: 16px;

  /* 🍃 Fuente moderna gratuita */
  --font-main: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
  min-height:100%;
  font-family: var(--font-main);
  font-weight:400;
  color:var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fondo global */
body{
  background-color:#ffffff;
  background-repeat:no-repeat;
  background-position:center top;
  background-size:cover;
}

.section,
.site-header,
.footer{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(2px);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 99%); margin:0 auto; align-items: center; justify-content: center; text-align: center; padding: 0px;}


/* ✅ Header full */
.site-header .container{
  width:100%;
  max-width:none;
  margin:0;
  padding-left:20px;
  padding-right:20px;
}

.muted{ color:var(--muted); text-align:center; }
.accent{ color:var(--accent); }

/* Modal */
.modal-overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.6);
  z-index:9999;
}
.modal-overlay.is-open{ display:flex; }
.modal{
  background:#fff;
  max-width:520px;
  width:calc(100% - 32px);
  border-radius:14px;
  padding:18px;
}

/* Bandera */
.flag-hn{
  display:flex;
  align-items:center;
}
.flag-hn img{
  width:40px;
  height:auto;
  border-radius:1px;
}



/* =========================================================
   HEADER NUEVO (3 NIVELES): TOPBAR + MAINBAR + NAVBAR
   ========================================================= */
.site-header{
  position:static;
  top:0;
  z-index:999;
}

/* TOPBAR */

/* TOPBAR estilo shopbop */
.topbar{
  background:#242427;
  color:#ffffff;
  font-size:14px;
}

/* contenedor del topbar */
.topbar__inner{
  position:relative;
  height:50px;              /* 👈 una sola altura */
  display:flex;
  align-items:center;       /* respaldo */
}

/* texto centrado exacto */
.topbar__text{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  margin:0;
  text-align:center;
  white-space:nowrap;
}

/* link a la derecha */
.topbar__link{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  color:#ffffff;
  font-weight:600;
}

@media (max-width:768px){
  .topbar__text{
    font-size:12px;
    max-width:75%;
  }
}



@keyframes topbar-slide{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* 2) MAIN HEADER: logo + search + acciones + burger */
.mainbar{ background:#fff}

.mainbar--shop{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:18px 20px;
  gap:12px;
}

.mainbar__left{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-start;
}
.mainbar__right{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:flex-end;
}

.mini-link{
  font-size:12px;
  color:#111;
  opacity:.85;
  white-space:nowrap;
}
.mini-link:hover{ text-decoration:underline; }

.brand--center .brand__logo{
  height:77px;   /* ajústalo */
  width:auto;
  display:block;
}

/* oculta tu search de arriba (porque shopbop no la pone ahí) */
.search{ display:none; }
.actionsbar{ display:none; } /* opcional */


.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  height: 30px;  
  width: auto;
  display:flex;
  margin-right: auto;
}

/* Search */
.search{
  display:flex;
  align-items:center;
  gap:15px;
  max-width:700px;
  width:100%;
}

/* Input */
.search__input{
  width:100%;
  height:42px;
  border-radius:999px;
  border:1px solid #dcdcdc;
  background:#ffffff;            /* 👈 fondo blanco */
  color:#2e2c2c;
  padding:0 16px;
  outline:none;
}

/* Placeholder */
.search__input::placeholder{
  color:#797979;                 /* 👈 gris claro */
}

/* Botón */
.search__btn{
  height:42px;
  border-radius:999px;
  padding:0 16px;
  border:1px solid #d6622c;
  background:#d6622c;        /* 👈 gris muy claro */
  color:#ffffff;
  cursor:pointer;
}

/* Hover */
.search__btn:hover{
  background:#e9e9e9;
}


/* Acciones derecha */
.actionsbar{
  display:flex;
  gap:12px;
}
.actionsbar__item{
  color:rgba(255,255,255,.9);
  font-size:14px;
  white-space:nowrap;
}
.actionsbar__item:hover{ text-decoration:underline; }

.mini-ico{
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
}

.mini-ico img{
  width:24px;      /* ajusta aquí el tamaño */
  height:24px;
  object-fit:contain;
}

@media (max-width: 480px){
  .mini-ico{
    width:24px;
    height:24px;
  }

  .mini-ico img{
    width:16px;
    height:16px;
  }
}




/* Burger (para header blanco) */
.burger{
  -webkit-appearance:none;
  appearance:none;
  cursor:pointer;
  width:40px;
  height:40px;

  display:none;                 /* solo en móvil */
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;

  background:transparent;
  border:1px solid rgba(0,0,0,.35);  /* 👈 borde oscuro */
  border-radius:10px;
  padding:0;
}

.burger__line{
  width:20px;
  height:2px;
  background:#111;              /* 👈 líneas oscuras */
  border-radius:2px;
  display:block;
}

.burger:hover{
  background:rgba(0,0,0,.06);   /* 👈 hover suave */
}

@media (max-width:900px){
  .burger{ display:inline-flex; }
}

/* 3) NAVBAR: links */
.navbar{ background:#fff; border-bottom:1px solid rgba(0,0,0,.08); }

.navbar--shop{
  position:relative;
  padding:10px 20px;
}

.navbar__links{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.navbar__links a{
  color:#111;
  font-weight:500;
  font-size:13px;
  padding:6px 0;  
}

.navbar__links a:hover{ border-bottom-color:#111; }

.navbar__search{
  display:flex;
  align-items:center;
  justify-content:flex-end;   /* 🔥 clave */
  width:32px;
  height:32px;
}


.navbar__search img{
  width:26px;
  height:26px;
  object-fit:contain;
  display:block;
}


/* ===== Aqui ajusto la lupa para que no salga montada en el burguer ===== */
@media (max-width: 768px){
  .navbar__inner{
    position:relative;
  }

  .navbar__search{
    position:absolute;
    right:60px;
    top:50%;
    transform:translateY(-50%);
  }
}




/* ===== Hover premium: negrita + línea + leve zoom ===== */
.navbar__links a{
  position:relative;
  display:inline-block;
  color:#111;
  font-weight:500;
  font-size:13px;
  padding:6px 0;
  transform-origin:center;
  transition:
    color .2s ease,
    transform .2s ease;
}

/* Línea azul */
.navbar__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .25s ease;
}

/* Hover */
.navbar__links a:hover{
  color: var(--accent);
  font-weight:600;
  transform: scale(1.06);   /* 👈 leve crecimiento */
}

/* Línea visible */
.navbar__links a:hover::after{
  transform: scaleX(1);
}

/* Estado activo */
.navbar__links a.active{
  color: var(--accent);
  font-weight:600;
  transform: scale(1.04);
}

.navbar__links a.active::after{
  transform: scaleX(1);
}



/* =========================================================
   BANNER IMAGEN
   ========================================================= */
.img-banner{
  width:100%;
  
  border-bottom:1px solid var(--border);
}
.img-banner img{
  width:100%;
  height:150px;
  object-fit:cover;
  object-position:center 25%;
  display:block;
}

/* ================= HERO SHOP (DESKTOP + MOBILE tipo Shopbop) ================= */
.hero-shop{
  position:relative;
  padding:0px;
}

/* Fondo exterior (si lo quieres estilo “mar” alrededor) */
.hero-shop__bg{
  position:absolute;
  inset:0;
  background:transparent;
}

/* ------------------ DESKTOP HERO (default) ------------------ */
/* ✅ Por defecto (DESKTOP): solo hero desktop */
.hero-shop__mobile{ display:none !important; }
.hero-shop__desktop{ display:block !important; }

/* ✅ En móvil: solo hero mobile */
@media (max-width:900px){
  .hero-shop__desktop{ display:none !important; }
  .hero-shop__mobile{ display:block !important; }
}


.hero-shop__panel{
  position:relative;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  padding:28px;
  overflow:hidden;
  min-height:560px;
}

.hero-shop__panel--bgimg{
  padding:28px;
}

/* Imagen 1 como fondo dentro del panel */
.hero-shop__bgimg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
  opacity:1;
}

/* Overlay suave para leer texto */
.hero-shop__panel--bgimg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,
    rgba(243,242,238,.92) 0%,
    rgba(243,242,238,.70) 40%,
    rgba(243,242,238,.25) 70%,
    rgba(243,242,238,.05) 100%
  );
  z-index:1;
}

/* Grid encima del fondo: texto + 2 frames */
.hero-shop__grid--3{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
  align-items:stretch;
  min-height:560px;
}

/* Copy */
.hero-shop__copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:8px 8px 8px 6px;
}

.hero-shop__title{
  margin:0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:64px;
  line-height:0.9;
  letter-spacing:.02em;
  color:#111;
}

.hero-shop__desc{
  margin:0 0 18px;
  color:#333;
  font-size:14px;
  max-width:320px;
}

.hero-shop__btn{
  display:inline-flex;
  width:max-content;
  padding:12px 18px;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  border-radius:10px;
}

/* Frames (fotos 2 y 3) */
.hero-shop__frame{
  border:2px solid #ffffff;
  padding:14px;
  background:transparent;
  overflow:hidden;
  display:flex;
}

.hero-shop__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Tablet: si quieres, mantiene desktop pero apila */
@media (max-width:980px){
  .hero-shop__panel{ min-height:auto; }
  .hero-shop__grid--3{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .hero-shop__title{ font-size:44px; }
  .hero-shop__frame{ height:320px; }
}

/* ------------------ MOBILE HERO (tipo Shopbop) ------------------ */
@media (max-width:900px){
  .hero-shop{
    padding:0 0 28px;            /* evita espacio raro arriba */
  }

  .hero-shop__desktop{ display:none; }
  .hero-shop__mobile{ display:block; }
}

/* ===== HERO MOBILE SLIDER ===== */
.hero-shop__mobile{
  position:relative;
  width:100%;
  height:70vh;
  min-height:520px;
  max-height:760px;
  overflow:hidden;
  display:block;
  background:#eee;
}

/* contenedor de imágenes */
.hero-shop__mobile-slider{
  position:absolute;
  inset:0;
}

/* imágenes */
.hero-shop__mobile-slider img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

/* imagen visible */
.hero-shop__mobile-slider img.is-active{
  opacity:1;
}

/* overlay fijo */
.hero-shop__mobile-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:22px 18px 26px;
  color:#fff;
  text-align:center;
  z-index:2;
  background:linear-gradient(to top,
    rgba(0,0,0,.60) 0%,
    rgba(0,0,0,.28) 55%,
    rgba(0,0,0,0) 100%
  );
}

.hero-shop__mobile-title{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:42px;
  line-height:.9;
  letter-spacing:.02em;
}

.hero-shop__mobile-desc{
  margin:0 0 14px;
  font-size:14px;
  opacity:.95;
}

.hero-shop__mobile-cta{
  display:inline-block;
  padding:12px 18px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  border-radius:10px;
}



h1{
  font-size:clamp(34px,4vw,48px);
  margin:12px 0;
  line-height:1.1;
  text-align: center;
}
.title-alert{
  color:lch(0% 0 0);
  font-weight:500;
  font-size:11px;
  align-items: center;
}
.tag{
  display:inline-block;
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--accent);
  background:#fff;
  font-weight:600;
  font-size:12px;
}
.actions{
  display:flex;
  gap:12px;
  margin:22px 0;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  text-align:center;
}
/* layout general */
.layout{
  display:flex;
  gap:20px;
}

/* contenido principal */
.contenido{
  flex:1;
}

/* 2 columnas: Contacto (izq) + Departamentos (der) */
.contact-dept{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  align-items:start;
}

/* Opcional: que el bloque de contacto también se vea como card */
.contact-col .contact__info{
  
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  justify-content: center;
}

/* Ajuste: tu contact__info actual tiene display:flex; */
.contact__info{
  display:flex;
  align-items:center;
  gap:14px;
  justify-content: center;
  flex-wrap:wrap; /* para que el botón baje si no cabe */
}

.contact__info .btn{
  margin-left:auto; /* empuja el botón a la derecha */
}

/* Responsive: apilar en móvil */
@media (max-width:900px){
  .contact-dept{
    grid-template-columns:1fr;
  }

  .contact__info .btn{
    width:100%;
    margin-left:0;
  }
}


@media (max-width:768px){
  .layout{
    flex-direction:column;
  }

  .video-lateral{
    width:100%;
    height:200px;
    position:relative;
    top:auto;
  }
}


.hero-image{
  
  width:100%;
  display:flex;               /* centra */
  justify-content:center;
  align-items:center;
  background:#f5f5f5;         /* opcional, relleno si sobra espacio */
}

.hero-image img{
  max-width:40%;             /* 👈 se adapta al ancho */
  height:auto;                /* 👈 mantiene proporción */
  display:block;
}


/* móvil */
@media (max-width:768px){
  .hero-image{
    height:200px;
  }
}


/* ================= BOTONES ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:14px;
  background:var(--accent);
  color:#fff;
  font-weight:700;
  border:none;
  box-shadow:var(--shadow);
  transition:.2s ease;
}
.btn:hover{
  background:var(--accent-soft);
  transform:translateY(-1px);
}
.btn--secondary{
  background:#fff;
  color:var(--accent);
  border:1px solid var(--accent);
  box-shadow:none;
}
.btn--small{
  padding:10px 14px;
  border-radius:12px;
}

/* ================= STATS ================= */
.stats{
  display:flex;
  gap:18px;
  margin-top:18px;
}
.stat{
  padding:14px 18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  
}
.stat__num{
  font-size:22px;
  font-weight:800;
  color:var(--accent);
}
.stat__txt{
  font-size:13px;
  color:var(--muted);
}

/* ================= SECCIONES ================= */
.section{ padding:60px 0; }
.section--alt{
  background:var(--panel);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head{ margin-bottom:24px; }
h2{ font-size:30px; margin:0 0 6px; text-align: center;}

/* ================= GRID & CARDS ================= */
.grid{
  display:grid;
  gap:20px;

  /* ✅ columnas automáticas según cantidad */
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));

  /* ✅ centra el “bloque” completo del grid */
  justify-content: center;

  /* opcional */
  align-items: stretch;
  text-align:center;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  align-items: center;
  text-align: center;
  justify-content: center;
}
.hero__card{ border-left:4px solid var(--accent); }

/* ===== PROMOCIONES ===== */
.promo-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 5px;
  align-items:center;
  padding: 0;
}

.promo-card{
  width:100%;
  height:550px;          /* 👈 define el alto del slide */
  display:flex;
  align-items:center;
  justify-content:center;
  
  
}

.promo-card img{
  width:100%;
  height:100%;
  object-fit:contain;    /* 👈 CLAVE: no se deforma */
  object-position:center;
  display:block;
}




/* Mobile: slider horizontal */
@media (max-width: 768px){
  .promo-slider{
    display:flex;
    gap:0;                          /* 👈 sin separación para que no se vea la anterior */
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
  padding:0 12px 10px;  /* 👈 margen lateral */
    
  }

  /* cada card ocupa TODO el ancho visible */
  .promo-slider .promo-card{
    flex:0 0 100%;                  /* 👈 una “pagina” por slide */
    scroll-snap-align:center;        /* 👈 encaja al inicio */
    scroll-snap-stop:always;        /* 👈 fuerza parar en cada slide (si el navegador lo soporta) */
  }

  /* para que la imagen también se adapte */
  .promo-slider .promo-card img{
    width:100%;
    height:auto;
    display:block;
  }

  /* opcional: ocultar scrollbar */
  .promo-slider::-webkit-scrollbar{ display:none; }
  .promo-slider{ scrollbar-width:none; }
}


/* Indicador de slide */
.slider-hint{
  display:none;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:12px;
  color:#666;
  font-size:13px;
  font-weight:600;
}

.slider-hint__icon{
  font-size:18px;
  opacity:.7;
}

/* Mostrar SOLO en móvil */
@media (max-width:768px){
  .slider-hint{
    display:flex;
  }
}


/* ===== CARRUSEL TIPO SHOPBOP ===== */
.promo-carousel{
  position:relative;
  padding: 0%;
}

/* Track con scroll horizontal */
.promo-track{
  display:flex;
  gap:5px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:1px 1px;            /* deja espacio para flechas */
}

/* ocultar scrollbar */
.promo-track::-webkit-scrollbar{ display:none; }
.promo-track{ scrollbar-width:none; }

/* cada tarjeta */
.promo-item{
  flex:0 0 240px;              /* desktop: varias visibles */
  height:360px;
  background:#fff;
  border-radius:0px;           /* en el ejemplo son rectas; cambia si quieres */
  overflow:hidden;
  scroll-snap-align:start;
  display:block;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.promo-item img{
  width:100%;
  height:100%;
  object-fit:cover;            /* tipo shopbop (llena el cuadro) */
  display:block;
}

/* Flechas */
.promo-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background: var(--accent);         /* rojo como el ejemplo */
  color:#fff;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
  z-index:2;
}

.promo-arrow--left{ left:8px; }
.promo-arrow--right{ right:8px; }

.promo-arrow:active{ transform:translateY(-50%) scale(.98); }

/* Sombras laterales (dan pista de que hay más) */
.promo-carousel::before,
.promo-carousel::after{
  content:"";
  position:absolute;
  top:0;
  width:44px;
  height:100%;
  pointer-events:none;
  z-index:1;
}

.promo-carousel::before{
  left:0;
  background:linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}
.promo-carousel::after{
  right:0;
  background:linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Móvil: tarjetas más anchas y “peek” */
@media (max-width:768px){
  .promo-track{
    padding:8px 44px;          /* mantiene flechas */
  }
  .promo-item{
    flex:0 0 82%;              /* se ve parte de la siguiente */
    height:320px;
  }
}


/* ===== EMPLEOS: formulario responsive ===== */

.img-banner img{
  width:100%;
  height:300px;          /* desktop */
  object-fit:cover;
  object-position:center;
  display:block;
}

@media (max-width:768px){
  .img-banner img{
    height:140px;        /* movil */
  }
}

@media (max-width:768px){
  #formEmpleos button{
    width:100%;
  }
}



#formEmpleos > div{
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}

@media (max-width:768px){
  #formEmpleos > div{
    grid-template-columns:1fr; /* 1 columna en móvil */
  }
  #formEmpleos > div > div{
    grid-column:auto !important; /* quita spans en móvil */
  }
}


/* ===== SUCURSALES ===== */
.branch{ padding:0; overflow:hidden; }
.branch__img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
  border-bottom:1px solid var(--border);
}
.branch h3{
  margin:16px 16px 6px;
  font-size:20px;
  color:var(--accent);
}
.branch p{
  margin:0 16px 18px;
  font-size:14px;
}
.branch__links{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:0 16px 16px;
}
.branch__links a{
  font-size:14px;
  color:var(--accent);
  font-weight:600;
}
.branch__links a:hover{ text-decoration:underline; }


/* ===== SOBRE NOSOTROS / TIENDAS ===== */
.tiendas-grid{
  grid-template-columns:repeat(3,1fr);
}

.tienda-card{
  padding:0;
  overflow:hidden;
  text-align:center;
}

.tienda-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.tienda-card h3{
  margin:14px 0;
  font-size:18px;
  color:var(--accent);
}


/* ===== BANNERS DE DEPARTAMENTOS ===== */
.dept-banners{
  display:grid;
  grid-template-columns:repeat(2, 1fr); /* ✅ 2 columnas */
  gap:5px;
  margin-top:10px;
}

.dept-banner{
  position:relative;
  height:100px;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:var(--shadow);
}

.dept-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(0.7);
  transition:transform .3s ease;
}

.dept-banner span{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  padding-left:14px;
  font-weight:800;
  font-size:15px;
  color:#fff;
  text-shadow:0 2px 6px rgba(0,0,0,.6);
}

.dept-banner:hover img{
  transform:scale(1.04);
}

/* Hover elegante */
.dept-banner:hover img{
  transform:scale(1.04);
}
.dept-banner img{
  transition:transform .3s ease, filter .3s ease;
}


/* ===== REDES SOCIALES ===== */
.socials{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:30px;
  flex-wrap:wrap;
}
.social{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
  transition:transform .2s ease;
}
.social img{
  width:48px;
  height:48px;
  object-fit:contain;
}
.social span{
  font-size:14px;
  font-weight:600;
  color:var(--accent);
}
.social:hover{ transform:translateY(-4px); }

/* ===== CONTACTO ===== */
.contact__info{
  display:flex;
  align-items:center;
  gap:14px;
}
.contact__icon{
  width:36px;
  height:36px;
  object-fit:contain;
}

/* ================= FOOTER ================= */
.footer{
  
  border-top:1px solid var(--border);
  padding:20px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ===== MARCAS ===== */
.brands-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));
  gap:24px;
  margin-top:30px;
}

.brand-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  display:flex;
  flex-direction:column;   /* texto abajo */
  gap:12px;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}

.brand-card:hover{ 
  transform:translateY(-4px); 
}

.brand-card img{
  max-width:120px;
  max-height:50px;
  object-fit:contain;
}

.brand-name{
  font-size:14px;
  font-weight:500;
  color:var(--text);
  text-align:center;
  line-height:1.2;
}


/* ================= RESPONSIVE ================= */
@media (max-width:900px){
  .hero__grid{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }

  .actionsbar{ display:none; }
  .burger{ display:inline-flex; }
  .mainbar__inner{ grid-template-columns:auto 1fr auto; }

  /* navbar colapsable (usa class nav--open desde JS) */
  .navbar{ display:none; }
  .navbar.nav--open{ display:block; }

  .navbar__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:14px 0;
  }
  .navbar__inner a{
    width:100%;
    padding:10px 0;    
  }

  /* promos cuadradas en móvil */
  .promo-card img{ aspect-ratio:1 / 1; }

  /* sucursales más compactas en móvil */
  .branch__img{ height:170px; }
}

@media (max-width:720px){
  .topbar__text{ font-size:12px; }
  .search__btn{ display:none; }
}

/* ===== TIENDA ===== */
.storebar{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin:14px 0 18px;
}

.storebar__search{
  flex:1 1 360px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow);
}

.storebar__icon{ opacity:.75; }

.storebar__search input{
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  font-size:15px;
  color:var(--text);
}

.storebar__filters{
  display:flex;
  gap:10px;
  align-items:center;
  flex:0 0 auto;
}

.storebar__filters select{
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  color:var(--text);
}

/* Grid responsive (usa tu .grid, pero afinamos tamaños) */
.storegrid{
  grid-template-columns:repeat(auto-fill, minmax(230px, 1fr));
}

/* Cards de producto */
.product{
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.product__media{
  position:relative;
  background:#f6f6f6;
  aspect-ratio: 4/3;
}

.product__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product__badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background:#e11d48;
  color:#fff;
}

.product__body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.product__title{
  margin:0;
  font-size:15px;
  font-weight:900;
  line-height:1.2;
}

.product__code{ margin:0; }

.product__prices{
  display:flex;
  align-items:baseline;
  gap:10px;
}

.product__price{
  font-size:16px;
  font-weight:900;
}

.product__old{
  text-decoration:line-through;
  font-size:13px;
}

.product__meta{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.product__pill{
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  font-size:12px;
  font-weight:800;
}

.product__pill--off{
  opacity:.6;
}

.product__actions{
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width:520px){
  .storebar__filters{ width:100%; }
  .storebar__filters select{ flex:1; }
}


/* ===== Checkout WhatsApp (carrito) ===== */
.cart-checkout{
  border-top:1px solid var(--border);
  padding-top:16px;
  margin-top:14px;
}

.cart-checkout__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.cart-checkout__title{
  margin:0;
  font-size:14px;
  font-weight:900;
  color:var(--text);
}

.cart-checkout__total{
  font-weight:900;
  color:var(--accent);
}

.cart-checkout__form{
  display:grid;
  gap:10px;
}

.cart-checkout__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.cart-field label{
  display:block;
  font-size:12px;
  font-weight:800;
  margin:0 0 6px;
  color:var(--text);
}

.cart-field input,
.cart-field textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  background:#fff;
  color:var(--text);
  outline:none;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
}

.cart-field textarea{
  min-height:92px;
  resize:vertical;
}

.cart-checkout__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn--whats{
  background:#0ea372; /* verde elegante */
}
.btn--whats:hover{
  background:#0b8c62;
}

/* móvil: todo 1 columna y botón full */
@media (max-width:768px){
  .cart-checkout__row{
    grid-template-columns:1fr;
  }
  .cart-checkout__actions .btn{
    width:100%;
  }
}

/* ===== TOAST NOTIFICATION ===== */
.toast{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  background:#ffffff;
  color:#0f172a;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.08);
  font-weight:600;
  font-size:14px;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:all .25s ease;
  z-index:9999;
}

.toast__icon{
  color:#16a34a; /* verde elegante */
  font-size:18px;
}

/* visible */
.toast.is-show{
  opacity:1;
  transform:translateY(0);
}

/* móvil: centrado abajo */
@media (max-width:768px){
  .toast{
    left:50%;
    right:auto;
    transform:translate(-50%, 10px);
  }
  .toast.is-show{
    transform:translate(-50%, 0);
  }
}

.product__brand{
  margin:2px 0 6px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(15,23,42,.7);
}


/* ===== Layout editorial elegante ===== */

.container.narrow{
  max-width:800px;
}

.about-block,
.about-features,
.about-values,
.about-cta{
  padding:60px 0;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.about-block h2,
.about-features h2,
.about-cta h2{
  font-size:32px;
  margin-bottom:16px;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.about-block p,
.about-features p,
.about-values p,
.about-cta p{
  font-size:17px;
  line-height:1.7;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* Lista elegante */
.features-list{
  list-style:none;
  padding:0;
  margin:24px 0 0;
}

.features-list li{
  padding:12px 0;
  border-bottom:1px solid var(--border);
}

/* Valores */
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.values-grid h3{
  font-size:20px;
  margin-bottom:10px;
    align-items:center;
  justify-content:center;
  text-align:center;
}

/* CTA */
.about-cta{
  text-align:center;
  background:#fff;
  border-top:1px solid var(--border);
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* Responsive */
@media(max-width:768px){
  .values-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
}


/* ===== FIX: iconos del header NO deben heredar width:100% ===== */
.mainbar__right .mini-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  flex:0 0 28px;          /* evita que se estire */
}

.mainbar__right .mini-ico img{
  width:18px !important;
  height:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  object-fit:contain;
  display:block;
}


@media (max-width:480px){
  .mainbar__right .mini-ico{
    width:24px;
    height:24px;
    flex:0 0 24px;
  }
  .mainbar__right .mini-ico img{
    width:16px !important;
    height:16px !important;
    max-width:16px !important;
    max-height:16px !important;
  }
}


/* =========================================================
   MOBILE HEADER (AISLADO) - NO TOCA DESKTOP
   ========================================================= */

/* 1) Por defecto: OCULTA el header móvil en desktop */
.sb-mobile-header{ display:none; }

/* 2) En móvil: oculta tu header/nav desktop y muestra el móvil */
@media (max-width: 900px){

  /* 🔥 oculta tus barras desktop (ajusta nombres si los tuyos difieren) */
 /* oculta TODA la estructura desktop en móvil */
.topbar:not(.sb-topbar),
.mainbar,
.navbar{
  display:none !important;
}


  .sb-mobile-header{
    display:block;
  }

  /* TOPBAR */
  .sb-topbar{
    background:#242427;
    color:#fff;
  }
  .sb-topbar__inner{
    position:relative;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 14px;
    text-align:initial; /* evita el center global de .container */
  }
  .sb-topbar__text{
    margin:0;
    font-size:10px;
    padding:0 44px; /* espacio para la X */
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    text-align:center;
  }
  .sb-topbar__close{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:0;
    background:transparent;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    opacity:.95;
  }

  /* MAINBAR */
  .sb-mainbar{
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.08);
  }
  .sb-mainbar__inner{
    position:relative;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 14px;
    text-align:initial;
  }

  /* Burger izquierda */
  .sb-burger{
    width:42px;
    height:42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    border:0;
    background:transparent;
    padding:0;
  }
  .sb-burger span{
    width:24px;
    height:2px;
    background:#111;
    display:block;
    border-radius:2px;
  }

  /* Logo centrado real */
  .sb-brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    max-width:65%;
  }
  .sb-brand img{
    height:33px;
    width:auto;
    display:block;
  }

  /* Iconos derecha */
  .sb-actions{
    display:flex;
    align-items:center;
    gap:16px;
  }
  .sb-ico{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .sb-ico img{
    width:20px;
    height:20px;
    object-fit:contain;
    display:block;
  }

  /* Badge carrito */
  .sb-ico--cart{ position:relative; }
  .sb-badge{
    position:absolute;
    right:6px;
    top:6px;
    min-width:16px;
    height:16px;
    padding:0 4px;
    border-radius:999px;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111;
    color:#fff;
    line-height:1;
  }

  /* NAV drawer */
  .sb-nav{
    display:none;
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.08);
  }
  .sb-nav.is-open{ display:block; }

  .sb-nav__inner{
    padding:14px 16px 18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
  }
  .sb-nav__inner a{
    width:100%;
    text-align:center;
    padding:10px 0;
    font-size:18px;
    font-weight:500;
  }
}
