:root{
  --text:#232323;
  --muted:#6f6f6f;
  --border:#e7e7e7;
  --accent:#c18b54;
  --radius:14px;
  --shadow:0 18px 45px rgba(0,0,0,.14);
}

.container{
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner{
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

/* LOGO */
.logo{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img{
  max-height: 88px; /* tamaño del logo */
  width: auto;
  height: auto;
  display: block;
}

/* NAV DESKTOP */
.nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link{
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--muted);
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover,
.nav-link:focus-visible{
  background: #f4f4f4;
  color: var(--text);
  outline: none;
}

.nav-link.cta{
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
}
.nav-link.cta:hover,
.nav-link.cta:focus-visible{
  background: #cc9a67;
  color: #fff;
}

/* BOTÓN HAMBURGUESA */
.nav-toggle{
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle .bar{
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
}

/* OVERLAY */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 150;
}

/* ===== MOBILE ===== */
@media (max-width: 900px){
  .nav-toggle{
    display: inline-flex;
    flex-direction: column;
  }

  /* menú desplegable */
  .nav{
    position: fixed;
    left: 0;
    right: 0;
    top: 110px;                 /* igual a header-inner height */
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 180;

    max-height: 0;              /* cerrado */
    overflow: hidden;
    transition: max-height .35s ease;
  }

  .nav-list{
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    text-align: center;
  }

  .nav-link{
    justify-content: center;
    padding: 14px 16px;
    font-size: 1.05rem;
  }

  /* abierto */
  .site-header.is-open .nav{
    max-height: 75vh;
  }

  .site-header.is-open .nav-overlay{
    display: block;
  }
}

  /* ===== PDP base ===== */
.pdp{
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 16px 40px;
    color: #0f172a;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  
  .pdp__grid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
  }
  
  @media (max-width: 980px){
    .pdp__grid{ grid-template-columns: 1fr; }
  }
  
  /* ===== Gallery ===== */
  .pdp__gallery{
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }
  
  @media (max-width: 560px){
    .pdp__gallery{ grid-template-columns: 1fr; }
    .pdp__thumbs{
      order: 2;
      display: grid;
      grid-auto-flow: column;
      overflow-x: auto;
      padding-bottom: 6px;
    }
  }
  
  .pdp__thumbs{
    display: grid;
    gap: 10px;
    align-content: start;
  }
  
  .pdp__thumb{
    border: 1px solid rgba(15,23,42,.18);
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  }
  
  .pdp__thumb:hover{ transform: translateY(-1px); }
  .pdp__thumb.is-active{
    border-color: rgba(15,23,42,.55);
    box-shadow: 0 10px 30px rgba(2,6,23,.08);
  }
  
  .pdp__thumb img{
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }
  
  .pdp__main{
    position: relative;
    margin: 0;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,.14);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 40px rgba(2,6,23,.08);
  }
  
  .pdp__badge{
    position: absolute;
    top: 12px;
    left: 12px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    letter-spacing: .2px;
    padding: 6px 10px;
    border-radius: 999px;
    z-index: 2;
  }
  
  .pdp__zoomBtn{
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
    display: block;
  }
  
  .pdp__main img{
    width: 100%;
    height: 520px;
    object-fit: contain;         /* <-- importante para que se vea completa en el contenedor */
    background: #fff;
    display: block;
  }
  
  @media (max-width: 980px){
    .pdp__main img{ height: 420px; }
  }
  
  .pdp__zoomHint{
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(15,23,42,.80);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
  }
  
  /* ===== Info ===== */
  .pdp__brand{
    margin: 0 0 6px;
    color: rgba(15,23,42,.65);
    font-size: 13px;
  }
  
  .pdp__title{
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -.3px;
  }
  
  .pdp__priceRow{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0 16px;
    border-top: 1px solid rgba(15,23,42,.12);
    border-bottom: 1px solid rgba(15,23,42,.12);
  }
  
  .pdp__price{
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.4px;
  }
  
  .pdp__meta{
    margin-top: 6px;
    font-size: 13px;
    color: rgba(15,23,42,.7);
  }
  
  .pdp__qty{
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(15,23,42,.18);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  
  .pdp__qtyBtn{
    width: 38px;
    height: 38px;
    border: 0;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
  }
  
  .pdp__qtyInput{
    width: 46px;
    height: 38px;
    border: 0;
    text-align: center;
    font-weight: 700;
    outline: none;
  }
  
  .pdp__cta{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0 10px;
  }
  
  .pdp__btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(15,23,42,.18);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  
  .pdp__btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(2,6,23,.10);
  }
  
  .pdp__btn--primary{
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
  }
  
  .pdp__btn--ghost{
    background: #fff;
    color: #0f172a;
  }
  
  /* ===== Accordions ===== */
  .pdp__acc{
    border: 1px solid rgba(15,23,42,.14);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-top: 10px;
  }
  
  .pdp__acc summary{
    cursor: pointer;
    padding: 12px 14px;
    font-weight: 800;
    list-style: none;
  }
  
  .pdp__acc summary::-webkit-details-marker{ display:none; }
  
  .pdp__accBody{
    padding: 0 14px 14px;
    color: rgba(15,23,42,.78);
    font-size: 14px;
    line-height: 1.55;
  }
  
  .pdp__specs{
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }
  
  .pdp__specs li{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(15,23,42,.14);
  }
  
  .pdp__specs li span{ color: rgba(15,23,42,.70); }
  .pdp__specs li strong{ color: #0f172a; }

  /* PDP: acordeones siempre abiertos y sin comportamiento de desplegar */
.pdp__acc { overflow: visible; } /* para que no “corte” contenido */

.pdp__acc summary{
  cursor: default;
  pointer-events: none;   /* desactiva el click */
  padding-bottom: 6px;    /* se ve más como título */
}

/* opcional: por si tu JS usa display o max-height */
.pdp__acc .pdp__accBody{
  display: block !important;
}

  
  /* ===== ZOOM MODAL (aquí está tu problema del zoom grande) ===== */
  .pdpZoom{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
  }
  
  .pdpZoom.is-open{ display: block; }
  
  .pdpZoom__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(2,6,23,.72);
  }
  
  .pdpZoom__dialog{
    position: relative;
    margin: 5vh auto;
    width: min(980px, 92vw);
    height: min(78vh, 720px);   /* <-- “recuadro” del zoom */
    background: #0b1220;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.5);
  }
  
  .pdpZoom__close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    color: #fff;
    cursor: pointer;
    z-index: 2;
  }
  
  .pdpZoom__stage{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 14px;
  }
  
  .pdpZoom__stage img{
    width: 100%;
    height: 100%;
    object-fit: contain;  /* <-- CLAVE: la imagen entra completa dentro del recuadro */
    display: block;
  }
  

 /* ===== FOOTER PREMIUM OSCURO ===== */
  .footer-premium{
    background: #0f1115;
    color: rgba(255,255,255,.86);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 58px 0 18px;
  }
  
  .footer-premium__container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 38px;
    align-items: start;
  }
  
  .footer-premium__logo{
    margin: 0 0 10px;
    font-size: 1.4rem;
    letter-spacing: .2px;
  }
  
  .footer-premium__desc{
    margin: 0 0 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    max-width: 42ch;
  }
  
  .footer-premium__col h4{
    margin: 0 0 14px;
    font-size: 1.05rem;
    color: rgba(255,255,255,.9);
  }
  
  /* Links */
  .footer-premium__links{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,.68);
    transition: color .18s ease, transform .18s ease;
  }
  
  .footer-link:hover{
    color: #c18b54;
    transform: translateX(2px);
  }
  
  .footer-premium .icon{
    display: inline-flex;
    color: rgba(255,255,255,.75);
  }
  
  /* WhatsApp pill */
  .footer-premium__wa{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    width: fit-content;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  
  .footer-premium__wa:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
    border-color: rgba(193,139,84,.35);
  }
  
  /* Bottom line */
  .footer-premium__bottom{
    width: min(1200px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .footer-premium__container{
      grid-template-columns: 1fr;
      gap: 26px;
    }
    .footer-premium__bottom{
      justify-content: flex-start;
      text-align: left;
    }
  }

  .whatsapp-float{
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0,0,0,.3);
    z-index: 999;
    transition: transform .2s ease;
  }
  
  .whatsapp-float:hover{
    transform: scale(1.05);
  }

  /* =========================
   RESPONSIVE - MÓVIL
   ========================= */
@media (max-width: 900px) {
    /* pasa de 2 columnas a 1 */
    .pdp-grid{
      display: grid;
      grid-template-columns: 1fr !important;
      gap: 18px;
    }
  
    /* imagen principal más controlada */
    .main-image{
      width: 100%;
      height: 360px;           /* ajusta si quieres */
      object-fit: contain;     /* para que se vea completa */
      background: #0b0b0f;     /* por si queda espacio */
      border-radius: 14px;
    }
  
    /* miniaturas en fila con scroll horizontal */
    .thumbs{
      display: flex !important;
      gap: 10px;
      overflow-x: auto;
      padding: 10px 2px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
  
    .thumbs::-webkit-scrollbar{
      height: 6px;
    }
  
    .thumbs img{
      flex: 0 0 auto;
      width: 84px;
      height: 84px;
      object-fit: cover;
      border-radius: 12px;
      scroll-snap-align: start;
    }
  
    /* caja de compra debajo, ancho completo */
    .buybox{
      width: 100%;
      position: relative;
      top: 0;
    }
  
    /* ZOOM OFF EN MÓVIL (no sirve bien en touch) */
    .zoom-box{
      display: none !important;
    }
  }
  
  /* móvil chico */
  @media (max-width: 480px) {
    .main-image{
      height: 300px;
    }
  
    .thumbs img{
      width: 74px;
      height: 74px;
    }
  }
  
  