:root{
  --bg-left:#ece9e2;
  --bg:#ffffff;
  --ink:#111111;
  --muted:#666666;
  --border:#e7e7e7;
  --topbar:#1b1b1b;
  --btn:#111111;
  --btnHover:#2a2a2a;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --container: 1200px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 18px}
.svg{width:18px;height:18px;display:inline-block}

/* Top bar */
.topbar{background:var(--topbar);color:#fff;font-size:13px;line-height:1}
.topbar .row{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:12px}
.topbar .left{opacity:.95;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.topbar .right{display:flex;gap:18px;align-items:center;opacity:.95}
.topbar .right a{opacity:.9}
.topbar .right a:hover{opacity:1;text-decoration:underline}

/* Header */
header{border-bottom:1px solid var(--border);background:#fff;position:sticky;top:0;z-index:50}

/* DESKTOP HEADER */
.headerRow{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "search brand icons";
  align-items:center;
  padding:18px 0 12px;
  gap:14px;
}

.search{
  grid-area: search;
  display:flex;
  align-items:center;
  max-width:520px;
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}
.search input{width:100%;padding:11px 12px;border:0;outline:0;font-size:14px}
.search button{border:0;background:#fff;padding:0 12px;height:100%;cursor:pointer;opacity:.8}
.search button:hover{opacity:1}

.brand{
  grid-area: brand;
  font-size:28px;
  letter-spacing:.08em;
  font-weight:600;
  text-transform:uppercase;
  text-align:center;
}

.icons{
  grid-area: icons;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:14px;
  font-size:14px;
}
.iconBtn{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:10px;border:1px solid transparent}
.iconBtn:hover{border-color:var(--border);background:#fafafa}
.badge{
  display:inline-grid;place-items:center;
  min-width:18px;height:18px;padding:0 6px;
  border-radius:999px;background:#111;color:#fff;
  font-size:12px;margin-left:-6px;transform:translateY(-8px)
}
.cartMini{display:flex;flex-direction:column;line-height:1.15}
.cartMini small{color:var(--muted)}

/* Hamburguesa (iconito) */
.hamburger{width:18px;height:12px;position:relative;display:inline-block}
.hamburger:before,.hamburger:after,.hamburger span{
  content:"";position:absolute;left:0;right:0;height:2px;background:#111;border-radius:2px
}
.hamburger:before{top:0}
.hamburger span{top:5px}
.hamburger:after{bottom:0}

/* Botón hamburguesa móvil (en desktop escondido) */
.mobileHamburger{
  display:none;
  border:0;
  background:transparent;
  padding:8px;
  border-radius:10px;
}

/* Nav desktop */
.navRow{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:10px 0 14px;
  gap:14px;
}
.navLeft{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

/* ✅ IMPORTANTE: tu HTML usa <nav> SIN clase, entonces estilamos nav directamente */
.navRow nav{justify-self:center}
.navRow nav ul{
  list-style:none;
  display:flex;
  gap:26px;
  margin:0;
  padding:0;
  align-items:center;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:600;
  justify-content:center;
}
.navRow nav a{opacity:.9}
.navRow nav a:hover{opacity:1}

/* Mega menu (solo desktop hover) */
.navItem{position:relative}
.mega{
  position:absolute;left:0;top:36px;width:min(980px,92vw);
  background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:var(--shadow);
  padding:22px;display:none;gap:18px;
  grid-template-columns:1.1fr .9fr;
}
.navItem:hover .mega{display:grid}
.megaCols{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.mega h4{margin:0 0 10px;font-size:13px;letter-spacing:.02em;text-transform:none}
.mega a{display:block;padding:6px 0;font-weight:500;text-transform:none;letter-spacing:0;font-size:13px;color:#333}
.mega a:hover{text-decoration:underline}
.megaRight{border-left:1px solid var(--border);padding-left:18px}
.megaRight h3{margin:0 0 14px;font-size:16px;font-weight:700;text-transform:none;letter-spacing:0;text-align:center}
.bestGrid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.bestCard{display:flex;gap:12px;align-items:center;border:1px solid var(--border);border-radius:12px;padding:12px;background:#fff}
.bestThumb{
  width:56px;height:56px;border-radius:10px;background:linear-gradient(135deg,#f2f2f2,#e8e8e8);
  border:1px solid var(--border);display:grid;place-items:center;font-size:12px;color:#888;flex:0 0 auto
}
.bestCard .t{font-size:13px;font-weight:600;line-height:1.2;margin:0}
.bestCard .p{margin:6px 0 0;font-size:13px;color:#111;font-weight:700}
.bestCard small{color:var(--muted);text-decoration:line-through;margin-right:6px;font-weight:500}

/* ===== INDEX SOLO SLIDER ===== */
.solo-slider{width:100%;margin:0;padding:0}
.solo-slider .slider{
  position:relative;
  width:100%;
  height:560px;
  overflow:hidden;
  background:#fff;
}
.solo-slider .slide{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transition:opacity .8s ease-in-out;
}
.solo-slider .slide.active{opacity:1}

/* ===== MENU MOVIL (drawer) - apagado por defecto ===== */
.mobile-menu,
.mobile-menu-overlay{display:none}

/* =========================================================
   MOBILE LOOK (estilo referencia MAJORI) - SOLO MOVIL
   NO TOCA DESKTOP
   ========================================================= */

/* Topbar: en móvil solo links centrados */
@media (max-width: 980px){
  .topbar .left{ display:none; }
  .topbar .row{ justify-content:center; }
  .topbar .right{
    justify-content:center;
    width:100%;
    gap:28px;
  }
}

/* Mostrar header móvil y ocultar desktop header/nav */
.mobileHeader,
.mobileSearchRow{
  display:none;
}

@media (max-width: 980px){
  /* Ocultar header desktop */
  .headerRow,
  .navRow{
    display:none;
  }

  /* Header móvil visible */
  .mobileHeader{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0 10px;
    gap:12px;
  }

  .mobileBrand{
    font-size:30px;
    letter-spacing:.08em;
    font-weight:600;
    text-transform:uppercase;
    text-align:left;
    line-height:1;
    flex:1;
  }

  /* Botón hamburguesa */
  .mobileHamburger{
    width:42px;
    height:42px;
    border:0;
    background:transparent;
    display:grid;
    place-items:center;
    cursor:pointer;
  }
  .mobileHamburger span{
    display:block;
    width:22px;
    height:2px;
    background:#111;
    border-radius:2px;
    margin:2px 0;
  }

  /* Iconos derecha */
  .mobileIcons{
    display:flex;
    align-items:center;
    gap:12px;
  }
  .mobileIconBtn{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border:1px solid transparent;
    border-radius:10px;
    background:transparent;
    cursor:pointer;
  }
  .mobileIconBtn:hover{
    border-color:var(--border);
    background:#fafafa;
  }

  /* Search row (tipo barra abajo del header) */
  .mobileSearchRow{
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid var(--border);
    border-radius:12px;
    padding:10px 12px;
    margin:0 0 12px;
    background:#f4f4f4;
    overflow:hidden;

    /* cerrado por default */
    max-height:0;
    opacity:0;
    padding-top:0;
    padding-bottom:0;
    border-color:transparent;
    transition:.2s ease;
  }

  .mobileSearchRow.open{
    max-height:70px;
    opacity:1;
    padding-top:10px;
    padding-bottom:10px;
    border-color:var(--border);
  }

  .mobileSearchRow input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    font-size:16px;
  }
  .mobileSearchRow button{
    border:0;
    background:#fff;
    width:44px;
    height:44px;
    border-radius:10px;
    display:grid;
    place-items:center;
    cursor:pointer;
  }
}

/* =========================
   SLIDER MOVIL: grande, arriba y sin blanco raro
   ========================= */
@media (max-width: 980px){
  .solo-slider{ margin:0; padding:0; }

  .solo-slider .slider{
    height: calc(100svh - 190px);
    min-height: 520px;
  }

  .solo-slider .slide{
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center top;
  }
}

@media (max-width: 768px){
  .solo-slider .slider{
    height: calc(100svh - 180px);
    min-height: 500px;
  }
}

/* =========================
   DRAWER MENU (hamburguesa)
   ========================= */
.mobile-menu,
.mobile-menu-overlay{
  display:none;
}

@media (max-width: 980px){
  .mobile-menu-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
    z-index:90;
  }

  .mobile-menu{
    display:block;
    position:fixed;
    top:0;
    left:0;
    width:280px;
    height:100svh;
    background:#fff;
    transform:translateX(-100%);
    transition:.25s ease;
    padding:90px 22px 22px;
    z-index:100;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
  }

  .mobile-menu nav{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .mobile-menu a{
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:#111;
  }

  body.menu-open .mobile-menu{
    transform:translateX(0);
  }

  body.menu-open .mobile-menu-overlay{
    opacity:1;
    pointer-events:auto;
  }
}

/* =========================
   AJUSTES SOLO DESKTOP
   ========================= */
@media (min-width: 981px){

  /* 1) Buscador más a la izquierda y más lejos del título */
  .headerRow .search{
    justify-self: start;     /* lo pega a la izquierda de su columna */
    margin-left: -80px;      /* empuja más hacia el borde izquierdo (ajustá -40 / -80) */
    max-width: 460px;        /* opcional: más compacto para dejar aire al centro */
  }

  /* 2) Quitar hamburguesa + "Comprar por categorías" en desktop */
  .navRow .navLeft{
    display: none !important;
  }

  /* 3) Mantener el menú centrado aunque quitemos navLeft */
  .navRow{
    grid-template-columns: 1fr auto 1fr; /* se queda igual */
  }
  .navRow nav{
    grid-column: 2; /* asegura que el nav quede en el centro */
    justify-self: center;
  }
}

/* ============================
   SHOP GRID (Hombres/Mujeres/Perfumería/Accesorios)
   Estilo tipo referencia
   ============================ */

.shopWrap{
  padding: 34px 0 60px;
}

.shopGrid{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items:start;
}

/* Sidebar */
.shopSidebar{
  border:1px solid var(--border);
  background:#fff;
  padding: 18px;
}

.shopSidebar .boxTitle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:800;
  font-size:16px;
  margin:0 0 14px;
}

.filterList{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.filterList label{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#222;
  cursor:pointer;
}

.filterList input{ transform: translateY(1px); }

.sidebarSection{
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.sidebarActions{
  display:flex;
  gap:10px;
  margin-top: 14px;
}

.btnLite{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  font-weight:800;
  font-size:12px;
  letter-spacing:.05em;
  text-transform:uppercase;
  cursor:pointer;
}
.btnLite:hover{ background:#fafafa; }

/* Top row (count + sort) */
.shopTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.shopCount{
  color:#444;
  font-size:14px;
}

.shopSort{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.shopSort select{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
}

/* Products grid */
.productsGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.productCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 0; /* en tu referencia es bien cuadrado */
  overflow:hidden;
  transition: transform .12s ease;
}
.productCard:hover{ transform: translateY(-2px); }

.productImg{
  width:100%;
  aspect-ratio: 1 / 1;
  background:#f6f6f6;
  overflow:hidden;
  display:block;
  position:relative;
}
.productImg img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#fff;
}

.productBody{
  padding: 14px 12px 16px;
  text-align:center;
}

.productName{
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height:1.25;
  min-height: 34px;
}

.productPrice{
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 900;
}
.productPrice small{
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 1100px){
  .productsGrid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px){
  .shopGrid{ grid-template-columns: 1fr; }
  .productsGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .productsGrid{ grid-template-columns: 1fr; }
}

/* ==============================
   HERO SLIDER
   ============================== */
.hero-slider{
  position: relative;
  width: 100%;
  height: 820px;        /* ajustá si querés más alto */
  overflow: hidden;
  background: #e9eef0;  /* por si tarda en cargar */
}

.hero-slider .slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}

.hero-slider .slide.active{
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

.about-section{
  padding: 80px 16px;
  background: #fff;
}

.about-container{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
}

.about-left h2{
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-right p{
  margin: 0 0 14px;
  line-height: 1.7;
  color: #333;
}

.about-bullets{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.about-bullets li{
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.about-bullets li::before{
  content: "";
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

@media (max-width: 820px){
  .about-container{
    grid-template-columns: 1fr;
  }
}

/* ===== Scroll suave ===== */
html { scroll-behavior: smooth; }

/* ===== Footer estilo oscuro ===== */
.site-footer{
  background:#111;
  color:#fff;
  padding: 60px 18px 26px;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  align-items:start;
}

.footer-brand{
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.footer-mark{
  width: 110px;
  height: 110px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.15);
  font-weight: 900;
  letter-spacing: .2em;
  font-size: 22px;
}

.footer-title{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.footer-links a{
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

.footer-links a:hover{
  color:#fff;
  text-decoration: underline;
}

.footer-text{
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.footer-social{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}

.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  display:grid;
  place-items:center;
  color:#fff;
  opacity:.9;
}

.social-btn:hover{
  opacity: 1;
  border-color: rgba(255,255,255,.3);
}

.footer-bottom{
  max-width: 1200px;
  margin: 30px auto 0;
  text-align:center;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  letter-spacing: .08em;
}

/* ===== WhatsApp flotante ===== */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25D366;
  color: #111;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 9999;
}

.wa-float:hover{
  transform: translateY(-2px);
}

/* Responsive footer */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-brand{
    justify-content:flex-start;
  }
}

/* ===== CONTACTANOS ===== */

.contact-wrap {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  border: 1px solid #e6e6e6;
  padding: 30px;
  background: #fff;
}

.contact-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-title-sm {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.contact-sub,
.contact-sub-sm {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.contact-row {
  display: flex;
  gap: 10px;
}

.contact-row strong {
  width: 90px;
  color: #555;
}

.contact-icons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.contact-icons .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
}

.icon.fb { background: #2f4a8a; }
.icon.wa { background: #25D366; color:#0b2b15; }
.icon.mail { background: #e04545; }
.icon.ig { background: #111; }

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label span {
  font-size: 13px;
  font-weight: 700;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.btn-primary {
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
}

.form-note {
  font-size: 12px;
  color: #777;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FIX: Mega menú no se cierre al mover el mouse
   ========================= */

/* Asegura que el contenedor sea el que maneja el hover */
.navItem{
  position: relative;
}

/* Bajar/pegar el mega menu al link sin huecos */
.navItem .mega{
  top: calc(100% - 2px); /* pega el menú al nav item (sin gap) */
}

/* "Puente" invisible entre el texto y el menú para que no se pierda el hover */
.navItem .mega::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;      /* crea una banda invisible arriba del menú */
  height: 12px;
}

/* Mejora: el link tiene un área de hover un poco más alta */
.navRow nav > ul > li > a{
  display: inline-block;
  padding: 10px 0; /* agranda zona de hover */
}

/* =========================
   PRODUCTO (detalle) - estilo tipo imagen 2 sin lo tachado
   ========================= */
.productWrap{
  padding: 46px 0 70px;
  background:#fff;
}

.productGrid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items:start;
}

.productInfo{
  border: 1px solid var(--border);
  padding: 26px;
  background:#fff;
}

.productTitle{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.productPrices{
  display:flex;
  gap: 12px;
  align-items: baseline;
}

.oldPrice{
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}

.newPrice{
  font-size: 22px;
  font-weight: 900;
}

.productNote{
  margin: 10px 0 0;
  color: #444;
  font-size: 13px;
}

.divider{
  margin: 18px 0;
  height: 1px;
  background: var(--border);
}

.optBlock{
  margin-bottom: 16px;
}

.optLabel{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
}

.optBtns{
  display:flex;
  gap: 10px;
}

.optBtn{
  width: 46px;
  height: 42px;
  border: 1px solid #111;
  background:#fff;
  font-weight: 800;
  cursor:pointer;
}

.optBtn.is-active{
  background:#111;
  color:#fff;
}

.qty{
  display:flex;
  align-items:center;
  gap:0;
  width: 160px;
  border: 1px solid #111;
}

.qtyBtn{
  width: 42px;
  height: 42px;
  border: 0;
  background:#fff;
  font-size: 18px;
  cursor:pointer;
}

.qtyInput{
  width: 76px;
  height: 42px;
  border: 0;
  text-align:center;
  font-weight: 800;
  outline:none;
}

.addCartBtn{
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 0;
  background:#111;
  color:#fff;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor:pointer;
}

.addCartBtn:hover{
  background:#222;
}

.productDesc{
  margin-top: 22px;
}

.productDesc h3{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.productDesc p{
  margin: 0 0 8px;
  color:#333;
  line-height: 1.6;
  font-size: 14px;
}

.backLink{
  display:inline-block;
  margin-top: 18px;
  font-weight: 800;
  color:#111;
  text-decoration: underline;
}

/* Foto grande */
.productMedia{
  border: 1px solid var(--border);
  background:#fff;
  padding: 18px;
}

.productImageBox{
  width: 100%;
  aspect-ratio: 3 / 4;
  background:#f6f6f6;
  overflow:hidden;
  display:grid;
  place-items:center;
}

.productImageBox img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* Mensaje vacío */
.productEmpty{
  border: 1px solid var(--border);
  background:#fff;
  padding: 18px;
}

/* Responsive */
@media (max-width: 980px){
  .productGrid{
    grid-template-columns: 1fr;
  }
  .productImageBox{
    aspect-ratio: 4 / 5;
  }
}

/* ==========================
   BOTONES APLICAR / LIMPIAR (sidebarActions / btnLite)
   ========================== */

.sidebarActions .btnLite{
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;          /* finita */
  letter-spacing: 0.10em !important;    /* elegante */
  text-transform: uppercase !important;
  font-size: 12px !important;

  padding: 8px 18px !important;
  border-radius: 999px !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  color: #111 !important;

  box-shadow: none !important;
}

/* Hover elegante */
.sidebarActions .btnLite:hover{
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
  text-decoration: none !important;
}

.search{ position: relative; }

.searchDropdown{
  position:absolute;
  top: calc(100% + 10px);
  left:0;
  width:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  z-index:9999;
  overflow:hidden;
}

.searchDropdownInner{
  max-height:420px;
  overflow:auto;
}

.searchItem{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid #f0f0f0;
  cursor:pointer;
  background:#fff;
}

.searchItem:hover{ background:#f8f8f8; }

.searchThumb{
  width:62px;height:62px;
  border-radius:10px;
  border:1px solid #eee;
  overflow:hidden;
  background:#fafafa;
}
.searchThumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.searchCat{ font-size:12px; color:#666; }
.searchName{ font-size:14px; font-weight:800; color:#111; line-height:1.2; }
.searchPrice{ font-size:14px; font-weight:900; color:#111; }
.searchPrice small{ color:#777; text-decoration:line-through; margin-right:8px; }

.searchEmpty{ padding:16px; color:#666; font-size:14px; }


/* =========================
   FIX dropdown buscador (no se corte / no se esconda)
   ========================= */

/* La caja del search NO debe recortar el dropdown */
.search{
  overflow: visible !important;
}

/* Asegurar que el header y el nav no tapen */
header{
  z-index: 9998; /* ya lo tenés sticky, lo subimos un poco */
  position: sticky;
}

/* Dropdown por encima de todo */
.searchDropdown{
  z-index: 999999 !important;
}

/* Si algún padre recorta, esto ayuda en varios navegadores */
.headerRow,
.navRow,
.container{
  overflow: visible !important;
}

/* En móvil, que el dropdown no se vaya fuera */
@media (max-width: 980px){
  .searchDropdown{
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
}

.searchDropdown,
.searchDropdownInner{
  background: #fff !important;
  color: #111 !important;
}
/* =========================
   CART DRAWER
   ========================= */
.cartOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  opacity: 0;
  transition: .15s ease;
}
.cartOverlay.show{ opacity:1; }

.cartDrawer{
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: .15s ease;
  display: flex;
  flex-direction: column;
}
.cartDrawer.show{ transform: translateX(0); }

.cartHead{
  padding: 18px 18px;
  border-bottom: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.cartTitle{ font-weight: 900; letter-spacing:.06em; text-transform: uppercase; font-size: 13px; }
.cartClose{
  border:0; background:transparent; font-size:22px; cursor:pointer; line-height:1;
}

.cartBody{ padding: 18px; overflow:auto; }

.cartEmpty h3{ margin: 10px 0 8px; font-size: 22px; }
.cartEmpty p{ color:#555; line-height:1.6; margin:0 0 16px; }
.cartBtns{ display:flex; gap:10px; flex-wrap:wrap; }

.cartBtn{ width:auto; padding:12px 18px; }
.cartBtnLite{ width:auto; padding:10px 16px; }

.cartItem{
  display:grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom:1px solid #f0f0f0;
}
.cartThumb{ width:70px; height:70px; object-fit:cover; border:1px solid #eee; border-radius:10px; background:#fafafa; }
.cartName{ font-weight:800; font-size:14px; }
.cartPrice{ color:#444; margin-top:6px; font-weight:700; }
.cartActions{ display:flex; gap:8px; margin-top:10px; flex-wrap:wrap; }
.cartMiniBtn{
  border:1px solid #ddd; background:#fff; padding:6px 10px; border-radius:10px; cursor:pointer; font-weight:800; font-size:12px;
}
.cartMiniBtn:hover{ background:#111; color:#fff; border-color:#111; }

.cartTotal{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 12px;
  border-top:1px solid var(--border);
  font-size: 14px;
}

/* =========================
   AUTH (login / register)
   ========================= */

.authWrap{
  padding: 56px 0 80px;
  background: #fff;
}

.authShell{
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 22px;
  align-items: stretch;
}

.authCard{
  border: 1px solid var(--border);
  padding: 28px;
  background: #fff;
}

.authKicker{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  color: #111;
  opacity: .75;
}

.authTitle{
  margin: 10px 0 8px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.authSub{
  margin: 0 0 18px;
  color: #444;
  line-height: 1.7;
  font-size: 14px;
}

.authAlert{
  border: 1px solid #f2c7c7;
  background: #ffecec;
  padding: 12px;
  border-radius: 12px;
  color: #7a1d1d;
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 13px;
}

.authForm{
  display: grid;
  gap: 12px;
}

.authField{
  display: grid;
  gap: 6px;
}

.authField span{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #222;
}

.authField input{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.authField input:focus{
  border-color: #cfcfcf;
  box-shadow: 0 0 0 4px rgba(0,0,0,.04);
}

.authBtn{
  margin-top: 6px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.authBtn:hover{
  background: #222;
}

.authLinks{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
  color: #333;
}

.authLinks a{
  text-decoration: underline;
  font-weight: 800;
}

.authLinks .dot{
  opacity: .5;
}

/* Panel derecho */
.authSide{
  border: 1px solid var(--border);
  background: #fafafa;
  padding: 28px;
  display: flex;
  align-items: center;
}

.authSideInner h2{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
}

.authSideInner p{
  margin: 0 0 14px;
  color: #444;
  line-height: 1.7;
  font-size: 14px;
}

.authSideInner ul{
  margin: 0;
  padding-left: 18px;
  color: #333;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px){
  .authShell{
    grid-template-columns: 1fr;
  }
}
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display:grid;
  place-items:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 9999;
  font-size: 22px;
}
/* =========================
   CONTACTANOS
========================= */

.contactPage {
  padding: 80px 0;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contactTitle {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contactText {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contactList {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.contactList li {
  margin-bottom: 14px;
}

.contactList strong {
  display: block;
  font-weight: 700;
}

.contactSocial {
  display: flex;
  gap: 12px;
}

.contactSocial .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.dot.blue { background: #2f4c9f; }
.dot.green { background: #25D366; }
.dot.red { background: #e53935; }
.dot.black { background: #111; }

/* FORM */
.contactForm {
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 12px;
}

.formTitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.formText {
  color: #666;
  margin-bottom: 25px;
}

.formGroup {
  margin-bottom: 18px;
}

.formGroup label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.formGroup input,
.formGroup textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}

.btnPrimary {
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btnPrimary:hover {
  opacity: .9;
}

.formNote {
  display: block;
  margin-top: 10px;
  color: #888;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .contactGrid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PROFILE DRAWER
   ========================= */
.profileOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9996;
  opacity: 0;
  transition: .15s ease;
}
.profileOverlay.show{ opacity:1; }

.profileDrawer{
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 9997;
  transform: translateX(100%);
  transition: .15s ease;
  display: flex;
  flex-direction: column;
}
.profileDrawer.show{ transform: translateX(0); }

.profileHead{
  padding: 18px;
  border-bottom: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.profileTitle{
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.profileClose{
  border:0;
  background:transparent;
  font-size:22px;
  cursor:pointer;
  line-height:1;
}

.profileBody{
  padding: 18px;
  overflow:auto;
}

.profileBox{
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
}

.profileRow{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
}
.profileRow:last-child{
  border-bottom: 0;
}

.profileLabel{
  color:#666;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.profileValue{
  color:#111;
  font-weight: 700;
  font-size: 14px;
}

.profileLogout{
  display:block;
  margin-top: 16px;
  text-align:center;
  padding: 12px 16px;
}

.profileEmpty p{
  color:#555;
  line-height:1.6;
  margin: 0 0 14px;
}
.profileBtns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.profileBtn{ width:auto; padding:12px 18px; }
.profileBtnLite{ width:auto; padding:10px 16px; }

/* =========================
   FIX: overlay/carrito por encima del header sticky
   ========================= */

header{
  z-index: 50; /* tu header puede quedarse así */
}

/* Overlay debe tapar TODO (incluyendo el header) */
.cartOverlay,
.profileOverlay{
  z-index: 10000 !important;
}

/* Drawer por encima del overlay */
.cartDrawer,
.profileDrawer{
  z-index: 10001 !important;
}

/* Cuando está abierto, bloquear scroll (se ve más pro) */
body.drawer-open{
  overflow: hidden;
}

/* Mantener sidebar visible en desktop */
@media (min-width: 981px){
  .shopGrid{
    grid-template-columns: 280px 1fr !important;
    align-items: start;
  }
  .shopSidebar{
    position: sticky;
    top: 150px;
  }
}
.productCard{ display:block; cursor:pointer; }
.productImg img{ display:block; }

/* =========================================
   TECH DRAWERS (CART + PROFILE) - Premium UI
   ========================================= */

/* Overlay oscuro full */
.cartOverlay,
.profileOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 10000 !important;
  opacity: 0;
  transition: opacity .18s ease;
}
.cartOverlay.show,
.profileOverlay.show{ opacity: 1; }

/* Panel base */
.cartDrawer,
.profileDrawer{
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  z-index: 10001 !important;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-left: 1px solid rgba(0,0,0,.08);
  box-shadow: -18px 0 40px rgba(0,0,0,.22);

  transform: translateX(100%);
  transition: transform .18s ease;
  display: flex;
  flex-direction: column;
}
.cartDrawer.show,
.profileDrawer.show{ transform: translateX(0); }

/* Header del panel */
.cartHead,
.profileHead{
  padding: 18px 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.65));
}

.cartTitle,
.profileTitle{
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: #111;
}

.cartClose,
.profileClose{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.8);
  cursor: pointer;
  font-size: 18px;
  display:grid;
  place-items:center;
}
.cartClose:hover,
.profileClose:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

.cartBody,
.profileBody{
  padding: 18px;
  overflow:auto;
}

/* Caja interna elegante */
.cartEmpty,
.profileEmpty,
.profileBox{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.85);
}

/* Titulos del vacío */
.cartEmpty h3{
  margin: 6px 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
  color:#111;
}
.cartEmpty p,
.profileEmpty p{
  margin: 0 0 14px;
  color:#444;
  line-height:1.6;
}

/* Botones dentro del drawer */
.cartBtns,
.profileBtns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.cartBtn,
.profileBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background:#111;
  color:#fff;
  font-weight: 900;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 12px;
  border: 0;
}
.cartBtn:hover,
.profileBtn:hover{ background:#222; }

.cartBtnLite,
.profileBtnLite{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.14);
  color:#111;
  font-weight: 900;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.cartBtnLite:hover,
.profileBtnLite:hover{
  border-color:#111;
}

/* Items del carrito */
.cartItem{
  display:grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.cartThumb{
  width:64px;height:64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
}
.cartName{
  font-weight: 900;
  font-size: 14px;
  color:#111;
  margin-bottom: 6px;
}
.cartPrice{
  color:#444;
  font-weight: 800;
  font-size: 13px;
}

/* Total */
.cartTotal{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.10);
  display:flex;
  justify-content:space-between;
  font-size: 14px;
}
.cartTotal strong{ font-weight: 900; }

/* Perfil rows */
.profileRow{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.profileRow:last-child{ border-bottom:0; }

.profileLabel{
  color:#666;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing:.18em;
}
.profileValue{
  color:#111;
  font-weight: 800;
  font-size: 13px;
}

/* Botón cerrar sesión dentro del box */
.profileLogout{
  display:block;
  margin-top: 14px;
  text-align:center;
  padding: 12px 18px;
  border-radius: 999px;
  background:#111;
  color:#fff;
  font-weight: 900;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.profileLogout:hover{ background:#222; }

/* Bloquear scroll cuando drawer open */
body.drawer-open{ overflow:hidden; }
/* Iconos redes - Contactanos */
.contactSocialIcons{
  display:flex;
  gap:14px;
  margin-top: 18px;
}

.csIcon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid #e7e7e7;
  background:#fff;
  transition: .2s ease;
}

.csIcon svg{
  width: 18px;
  height: 18px;
  fill: #fff;
}

.csIcon.fb{ background:#2f4c9f; border-color:#2f4c9f; }
.csIcon.wa{ background:#25D366; border-color:#25D366; }
.csIcon.mail{ background:#e53935; border-color:#e53935; }
.csIcon.ig{ background:#111; border-color:#111; }

.csIcon:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}
/* LOGO FOOTER */
.footer-logo {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
}

/* responsive */
@media (max-width: 768px) {
  .footer-logo {
    width: 130px;
    margin-bottom: 12px;
  }
}
.checkoutBtn{
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}
.checkoutBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
}
.cartNote{
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #666;
}
.cartItem{
  position: relative;
  padding-right: 42px; /* espacio para el botón */
}

.cartRemoveBtn{
  position: absolute;
  right: 10px;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.cartRemoveBtn i{
  font-size: 13px;
  color: #111;
}

.cartRemoveBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}
/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}
/* SOLO MOVIL: quitar icono de perfil */
@media (max-width: 980px){
  #profileOpenBtn{ 
    display: none !important;
  }

  /* (opcional) para que el carrito no quede raro alineado */
  .icons{
    gap: 10px;
  }
}
/* ================================
   SOLO TELEFONO – QUITAR PERFIL
   ================================ */
@media (max-width: 980px){

  /* Oculta el icono de perfil (el muñequito) */
  .icons a[aria-label="Cuenta"],
  .icons a#profileOpenBtn,
  .icons a.iconBtn:first-child {
    display: none !important;
  }

}

