/* ═══════════════════════════════════════════════════════════
   AR MEN — Stylesheet
   Critical above-the-fold CSS is inlined in index.html.
   This file covers below-the-fold sections + drawer + footer.
   ═══════════════════════════════════════════════════════════ */

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.section{
  padding:120px 0;
  position:relative;
}
.section--alt{background:var(--dark-secondary);}
.section--light{background:var(--light-card);}
.section--dark{background:var(--dark-primary);color:var(--text-on-dark-b);}
.section--dark-alt{background:var(--dark-secondary);color:var(--text-on-dark-b);}
.section--white{background:var(--light-page);color:var(--text-on-light-b);}

@media(max-width:720px){
  .section{padding:88px 0;}
}

.eyebrow{
  font-size:11px;
  letter-spacing:.36em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--steel);
  margin:0 0 18px;
}
.eyebrow--steel{color:var(--steel);}
.eyebrow--light{color:var(--steel);}

.section__head{
  text-align:center;
  max-width:680px;
  margin:0 auto 72px;
}
.section__title{
  font-family:var(--font-sans);
  font-weight:300;
  font-size:clamp(28px,4vw,44px);
  letter-spacing:.22em;
  color:var(--text-on-dark-h);
  text-transform:uppercase;
  line-height:1.15;
}
.section__title--light{color:var(--text-on-light-h);}
.section__sub{
  margin-top:18px;
  color:var(--text-on-dark-b);
  font-size:15px;
  line-height:1.6;
}
.section__sub--light{color:var(--text-on-light-b);}

/* ── DRAWER (mobile) ─────────────────────────────────────── */
.drawer{
  position:fixed;
  top:0;right:0;
  height:100vh;
  width:min(82vw,360px);
  background:#0A0A0A;
  z-index:99;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.65,.05,.36,1);
  border-left:1px solid rgba(113,114,114,.18);
  padding:96px 32px 32px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.drawer.open{transform:translateX(0);}
.drawer__link{
  display:block;
  padding:18px 0;
  color:var(--text-on-dark-b);
  font-size:14px;
  letter-spacing:.18em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(113,114,114,.14);
  transition:color .2s ease, padding-left .2s ease;
}
.drawer__link:hover,.drawer__link:focus{
  color:var(--text-on-dark-h);
  padding-left:6px;
}
.drawer__scrim{
  position:fixed;inset:0;
  background:rgba(0,0,0,.5);
  z-index:98;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.drawer__scrim.open{opacity:1;pointer-events:auto;}

/* ── REVEAL on scroll ────────────────────────────────────── */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s ease-out, transform .8s ease-out;
  transition-delay:calc(var(--i,0) * .1s);
}
.reveal.in{opacity:1;transform:translateY(0);}

.reveal-line{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .7s ease-out, transform .7s ease-out;
}
.reveal-line.in{opacity:1;transform:translateY(0);}

@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-line{opacity:1;transform:none;transition:none;}
}

/* ═══════════ SEC 2 — COLECCIONES (cards) ═══════════ */
.grid{display:grid;gap:24px;}
.grid--2{grid-template-columns:1fr;}
@media(min-width:760px){.grid--2{grid-template-columns:1fr 1fr;gap:28px;}}

.card{
  background:var(--light-card);
  border-bottom:2px solid var(--cta);
  overflow:hidden;
  transition:transform .35s ease, box-shadow .35s ease;
  display:flex;flex-direction:column;
  position:relative;
  cursor:pointer;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.card__media{
  aspect-ratio:3/2;
  background:
    radial-gradient(ellipse at 30% 30%, #353535 0%, #1c1c1c 60%, #141414 100%);
  position:relative;
  overflow:hidden;
}
.card__media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card__media .card__index{
  position:absolute;
  bottom:24px;
  right:24px;
}
.card__media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.03) 0%, transparent 50%);
  pointer-events:none;
}
.card__index{
  font-family:var(--font-display);
  font-size:48px;
  font-weight:400;
  color:rgba(255,255,255,.18);
  line-height:1;
  font-style:italic;
}
.card__limited{
  font-size:10px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--steel);
  border:1px solid var(--steel);
  padding:6px 10px;
  background:rgba(0,0,0,.4);
}
.card__body{
  padding:20px 22px 22px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.card__title{
  font-family:var(--font-sans);
  font-weight:500;
  font-size:15px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--text-on-light-h);
  margin-bottom:8px;
}
.card__desc{
  color:var(--text-on-light-b);
  font-size:14px;
  line-height:1.5;
}
.card__cta{
  display:inline-block;
  margin-top:auto;
  padding:0;
  background:none;
  color:var(--text-on-light-h);
  font-family:var(--font-sans);
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-align:left;
  transition:color .2s ease;
}
.card__cta em{font-style:normal;display:inline-block;transition:transform .2s ease;}
.card:hover .card__cta{color:#000;}
.card:hover .card__cta em{transform:translateX(4px);}

/* ═══════════ SEC 3 — FEATURED PRODUCT ═══════════ */
.featured{background:var(--dark-primary);}
.featured__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:center;
}
@media(min-width:900px){
  .featured__grid{grid-template-columns:1fr 1fr;gap:80px;}
}
.featured__media{
  order:2;
}
@media(min-width:900px){.featured__media{order:1;}}
.featured__placeholder{
  aspect-ratio:1/1;
  width:100%;
  background:#272727;
  position:relative;
  overflow:hidden;
}
.featured__text{
  order:1;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
@media(min-width:900px){.featured__text{order:2;}}
.featured__title{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(40px,5vw,64px);
  color:var(--text-on-dark-h);
  line-height:1.05;
  letter-spacing:-.01em;
  margin-bottom:20px;
}
.featured__body{
  color:var(--text-on-dark-b);
  font-size:16px;
  line-height:1.75;
  margin-bottom:28px;
  max-width:520px;
}
.specs{
  list-style:none;
  padding:0;margin:0 0 36px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  color:var(--steel);
  font-size:12px;
  letter-spacing:.06em;
}
.specs li{
  position:relative;
  padding-right:14px;
}
.specs li:not(:last-child)::after{
  content:"·";
  position:absolute;
  right:0;
  color:var(--steel);
}
.featured__buy{
  width:100%;
  max-width:420px;
  padding-top:28px;
  border-top:1px solid rgba(113,114,114,.3);
}
.featured__price{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-bottom:18px;
}
.featured__price-amount{
  font-family:var(--font-display);
  font-size:42px;
  color:var(--text-on-dark-h);
  font-weight:500;
}
.featured__price-currency{
  color:var(--steel);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.featured__shipping{
  margin-top:14px;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--steel);
  text-align:center;
}

/* ═══════════ SEC 4 — NARRATIVE ═══════════ */
.narrative{
  background:var(--dark-primary);
  padding:140px 24px;
  position:relative;
  overflow:hidden;
}
.narrative__noise{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.03;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
  mix-blend-mode:overlay;
}
.narrative__inner{
  max-width:680px;
  margin:0 auto;
  text-align:center;
  position:relative;
}
.narrative__title{
  font-family:var(--font-display);
  font-weight:500;
  font-style:italic;
  font-size:clamp(36px,5vw,56px);
  color:var(--text-on-dark-h);
  line-height:1.1;
  margin:0 0 48px;
}
.narrative__body{
  color:var(--text-on-dark-b);
  font-size:17px;
  line-height:1.9;
}
.narrative__body p{margin:0 0 18px;}
.narrative__body p:last-child{margin-bottom:0;}
.narrative__body em{
  font-style:italic;
  color:#E8E8E5;
}
.narrative__body strong{
  font-weight:500;
  color:var(--text-on-dark-h);
}
.narrative__divider{
  width:60px;
  height:1px;
  background:rgba(113,114,114,.4);
  margin:48px auto 36px;
}
.narrative__pull{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:500;
  font-size:clamp(36px,5vw,52px);
  color:var(--cta);
  line-height:1.2;
  margin:0 0 40px;
  letter-spacing:-.005em;
}

/* ═══════════ SEC 5 — BESTSELLERS ═══════════ */
.rail{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
@media(max-width:1080px){.rail{grid-template-columns:repeat(2,1fr);}}
@media(max-width:540px){
  .rail{
    grid-template-columns:none;
    grid-auto-flow:column;
    grid-auto-columns:78%;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:18px;
    margin:0 -24px;
    padding-left:24px;
    padding-right:24px;
    scrollbar-width:thin;
  }
  .rail .product{scroll-snap-align:start;}
}

.product{
  background:var(--light-page);
  border-top:2px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  display:flex;
  flex-direction:column;
}
.product:hover{
  border-top-color:var(--cta);
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  transform:translateY(-2px);
}
.product__media{
  aspect-ratio:4/5;
  background:#E8E7E4;
  overflow:hidden;
}
.product__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.product__body{
  padding:20px 22px 0;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.product__name{
  font-family:var(--font-sans);
  font-weight:500;
  font-size:15px;
  color:var(--text-on-light-h);
  letter-spacing:.04em;
}
.product__rating{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--text-on-light-b);
}
.product__stars{
  color:var(--cta);
  letter-spacing:1px;
  font-size:13px;
}
.product__price{
  font-weight:700;
  font-size:16px;
  color:var(--text-on-light-h);
  margin-top:2px;
}
.btn--outline-dark{
  border-color:var(--steel);
  color:var(--text-on-light-b);
  background:transparent;
  margin-top:14px;
  padding:13px 20px;
  font-size:11px;
}
.btn--outline-dark:hover{
  border-color:var(--text-on-light-h);
  color:var(--text-on-light-h);
}

/* ═══════════ SEC 6 — TRUST ═══════════ */
.trust{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  text-align:center;
  position:relative;
}
@media(min-width:820px){
  .trust{
    grid-template-columns:repeat(3,1fr);
    gap:0;
  }
  .trust__col{padding:0 36px;position:relative;}
  .trust__col:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;top:10%;
    width:1px;height:80%;
    background:rgba(113,114,114,.3);
  }
}
.trust__icon{
  color:var(--steel);
  margin:0 auto 24px;
  display:block;
}
.trust__stat{
  font-family:var(--font-display);
  font-weight:500;
  font-size:48px;
  color:var(--text-on-dark-h);
  line-height:1;
  margin:0 0 18px;
  font-variant-numeric:tabular-nums;
}
.trust__title{
  font-family:var(--font-sans);
  font-weight:500;
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--text-on-dark-h);
  margin:0 0 10px;
}
.trust__body{
  font-size:14px;
  color:var(--text-on-dark-b);
  line-height:1.6;
}

/* ═══════════ SEC 7 — NEWSLETTER ═══════════ */
.newsletter{
  background:var(--dark-primary);
  text-align:center;
}
.newsletter__inner{
  max-width:520px;
  margin:0 auto;
  padding:0 24px;
}
.newsletter__title{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:500;
  font-size:clamp(36px,5vw,52px);
  color:var(--text-on-dark-h);
  line-height:1.1;
  margin:6px 0 16px;
}
.newsletter__sub{
  color:var(--text-on-dark-b);
  font-size:15px;
  line-height:1.65;
  margin-bottom:32px;
}
.newsletter__form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:18px;
}
@media(min-width:540px){
  .newsletter__form{flex-direction:row;}
  .newsletter__form .btn{flex-shrink:0;}
}
.newsletter__input{
  flex:1;
  padding:18px 20px;
  background:var(--dark-secondary);
  border:1px solid var(--steel);
  color:var(--text-on-dark-h);
  font-family:inherit;
  font-size:14px;
  letter-spacing:.04em;
  transition:border-color .2s ease, background-color .2s ease;
  outline:none;
}
.newsletter__input::placeholder{color:var(--steel);}
.newsletter__input:focus{
  border-color:var(--cta);
  background:#181818;
}
.newsletter__legal{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--steel);
}
.newsletter__success{
  margin-top:16px;
  color:var(--cta);
  font-size:13px;
  letter-spacing:.1em;
  min-height:1em;
}

/* ═══════════ FOOTER ═══════════ */
.footer{
  background:var(--dark-primary);
  border-top:1px solid rgba(113,114,114,.2);
  padding:80px 0 32px;
}
.footer__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  margin-bottom:64px;
}
@media(min-width:820px){
  .footer__grid{grid-template-columns:1.2fr 1fr 1fr;gap:64px;}
}
.footer__brand{
  font-size:22px;
  letter-spacing:.32em;
  font-weight:300;
  color:var(--text-on-dark-h);
  margin:0 0 16px;
}
.footer__tag{
  color:var(--text-on-dark-b);
  font-size:14px;
  line-height:1.6;
  margin:0 0 24px;
  max-width:320px;
}
.footer__social{
  display:flex;
  gap:18px;
  color:var(--steel);
}
.footer__social a{
  width:40px;height:40px;
  border:1px solid rgba(113,114,114,.3);
  display:inline-flex;
  align-items:center;justify-content:center;
  transition:color .2s ease, border-color .2s ease;
}
.footer__social a:hover{
  color:var(--text-on-dark-h);
  border-color:var(--text-on-dark-h);
}
.footer__heading{
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--text-on-dark-h);
  font-weight:600;
  margin:0 0 18px;
}
.footer__heading--2{margin-top:32px;}
.footer__links{
  list-style:none;padding:0;margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer__links a{
  color:var(--steel);
  font-size:14px;
  transition:color .2s ease;
}
.footer__links a:hover{color:var(--text-on-dark-h);}
.footer__pay{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
}
.footer__pay span{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--steel);
  border:1px solid rgba(113,114,114,.3);
  padding:8px 12px;
}
.footer__copy{
  text-align:center;
  color:var(--steel);
  font-size:12px;
  letter-spacing:.14em;
  padding-top:32px;
  border-top:1px solid rgba(113,114,114,.15);
  margin:0;
}

/* ═══════════ CONTACTO ═══════════ */
.contact-hero{
  background:var(--dark-primary);
  padding:calc(var(--nav-h) + 72px) 0 80px;
}
.contact-hero__inner{max-width:680px;}
.contact-hero__sub{
  color:var(--text-on-dark-b);
  font-size:17px;
  line-height:1.75;
  max-width:520px;
  margin:0;
}
.contact-section{padding-top:80px;padding-bottom:80px;}
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media(min-width:640px){.contact-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:960px){.contact-grid{grid-template-columns:repeat(3,1fr);}}
.contact-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:36px 32px 32px;
  background:var(--light-page);
  border-top:2px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
  text-decoration:none;
}
.contact-card:hover{
  border-top-color:var(--cta);
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  transform:translateY(-3px);
}
.contact-card--primary{
  border-top-color:var(--cta);
  background:var(--dark-primary);
}
.contact-card--primary .contact-card__icon{color:var(--cta);}
.contact-card--primary .contact-card__label{color:var(--cta);}
.contact-card--primary .contact-card__title{color:var(--text-on-dark-h);}
.contact-card--primary .contact-card__desc{color:var(--text-on-dark-b);}
.contact-card--primary .contact-card__cta{color:var(--text-on-dark-h);}
.contact-card--primary:hover{
  box-shadow:0 14px 40px rgba(212,175,55,.15);
  transform:translateY(-3px);
}
.contact-card__icon{
  color:var(--steel);
  margin-bottom:6px;
}
.contact-card__label{
  font-size:10px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--steel);
  margin:0;
}
.contact-card__title{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(20px,2.5vw,26px);
  color:var(--text-on-light-h);
  letter-spacing:-.01em;
  line-height:1.15;
  margin:0;
}
.contact-card__desc{
  color:var(--text-on-light-b);
  font-size:14px;
  line-height:1.6;
  margin:0;
  flex:1;
}
.contact-card__cta{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--text-on-light-h);
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:8px;
}
.contact-card__cta em{
  font-style:normal;
  transition:transform .25s ease;
  display:inline-block;
}
.contact-card:hover .contact-card__cta em{transform:translateX(4px);}
.contact-info-section{background:var(--dark-secondary);}
.contact-info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
}
@media(min-width:640px){.contact-info-grid{grid-template-columns:repeat(2,1fr);gap:48px 64px;}}
@media(min-width:1024px){.contact-info-grid{grid-template-columns:repeat(4,1fr);gap:48px 40px;}}
.contact-info-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.contact-info-item__icon{
  color:var(--cta);
  flex-shrink:0;
  margin-top:2px;
}
.contact-info-item__title{
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--text-on-dark-h);
  margin:0 0 10px;
}
.contact-info-item__body{
  color:var(--text-on-dark-b);
  font-size:14px;
  line-height:1.75;
  margin:0;
}
.contact-bottom{padding-top:80px;padding-bottom:80px;}
.contact-bottom__inner{
  text-align:center;
  max-width:580px;
  margin:0 auto;
}
.contact-bottom__title{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:500;
  font-size:clamp(30px,4vw,44px);
  color:var(--text-on-light-h);
  letter-spacing:-.01em;
  line-height:1.1;
  margin:8px 0 16px;
}
.contact-bottom__sub{
  color:var(--text-on-light-b);
  font-size:15px;
  line-height:1.7;
  margin-bottom:32px;
}

/* ═══════════ GUÍA DE TALLAS ═══════════ */
.gt-hero{
  background:var(--dark-primary);
  padding:calc(var(--nav-h) + 100px) 0 100px;
}
.gt-hero__inner{max-width:720px;}
.gt-hero .pdp-h1-dual{
  gap:14px;
  margin:0 0 28px;
}
.gt-hero .luxury-name{
  font-size:clamp(42px,5.5vw,68px);
}
.gt-hero__sub{
  color:var(--text-on-dark-b);
  font-size:17px;
  line-height:1.75;
  max-width:560px;
  margin:0;
}
.gt-section{padding-top:88px;padding-bottom:88px;}
.gt-section--dark{background:var(--dark-primary);}
.gt-intro{margin-bottom:52px;}
.gt-intro--dark{}
.gt-title{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(28px,4vw,44px);
  color:var(--text-on-light-h);
  letter-spacing:-.01em;
  line-height:1.1;
  margin:8px 0 14px;
}
.gt-title--dark{color:var(--text-on-dark-h);}
.gt-lead{
  color:var(--text-on-light-b);
  font-size:16px;
  line-height:1.7;
  max-width:600px;
  margin:0;
}
.gt-lead--dark{color:var(--text-on-dark-b);}
.gt-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:start;
}
@media(min-width:860px){
  .gt-grid{grid-template-columns:1fr 1fr;gap:64px;}
}
.gt-steps{display:flex;flex-direction:column;gap:28px;}
.gt-step{display:flex;gap:18px;align-items:flex-start;}
.gt-step strong{
  display:block;
  font-size:14px;
  font-weight:600;
  color:var(--text-on-light-h);
  letter-spacing:.04em;
  margin-bottom:4px;
}
.gt-step p{color:var(--text-on-light-b);font-size:14px;line-height:1.6;margin:0;}
.gt-step--dark strong{color:var(--text-on-dark-h);}
.gt-step--dark p{color:var(--text-on-dark-b);}
.gt-step__num{
  font-family:var(--font-display);
  font-size:30px;
  font-weight:400;
  font-style:italic;
  color:var(--cta);
  line-height:1;
  flex-shrink:0;
  width:38px;
}
.gt-tip{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:rgba(212,175,55,.07);
  border-left:2px solid var(--cta);
  padding:14px 16px;
  margin-top:4px;
  font-size:13px;
  color:var(--text-on-light-b);
  line-height:1.55;
}
.gt-tip svg{flex-shrink:0;color:var(--cta);margin-top:2px;}
.gt-tip strong{color:var(--text-on-light-h);}
.gt-tip--dark{color:var(--text-on-dark-b);}
.gt-tip--dark strong{color:var(--text-on-dark-h);}
.gt-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;}
.gt-table{width:100%;border-collapse:collapse;min-width:280px;}
.gt-table thead tr{border-bottom:2px solid var(--cta);}
.gt-table th{
  font-size:10px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--steel);
  font-weight:500;
  text-align:left;
  padding:0 16px 14px 0;
}
.gt-table td{
  font-size:14px;
  color:var(--text-on-light-b);
  padding:14px 16px 14px 0;
  border-bottom:1px solid rgba(113,114,114,.15);
  line-height:1.4;
}
.gt-table strong{color:var(--text-on-light-h);font-weight:600;}
.gt-table__row--highlight td{background:rgba(212,175,55,.05);}
.gt-table__note{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--steel);
  margin-top:14px;
}
.gt-table--dark th{color:var(--steel);}
.gt-table--dark td{color:var(--text-on-dark-b);border-bottom-color:rgba(113,114,114,.2);}
.gt-table--dark strong{color:var(--text-on-dark-h);}
.gt-table--dark .gt-table__row--highlight td{background:rgba(212,175,55,.06);}
.gt-table__note--dark{color:var(--steel);}
.gt-material-section{background:var(--light-card);}
.gt-material{
  display:flex;
  gap:32px;
  align-items:flex-start;
  max-width:740px;
  margin:0 auto;
}
@media(max-width:640px){.gt-material{flex-direction:column;gap:20px;}}
.gt-material__icon{color:var(--steel);flex-shrink:0;margin-top:4px;}
.gt-material__title{
  font-family:var(--font-display);
  font-size:clamp(22px,3vw,30px);
  font-weight:500;
  color:var(--text-on-light-h);
  margin:0 0 14px;
  letter-spacing:-.01em;
}
.gt-material__body p{
  color:var(--text-on-light-b);
  font-size:15px;
  line-height:1.75;
  margin:0 0 20px;
}
.gt-material__list{
  list-style:none;
  padding:0;margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.gt-material__list li{
  font-size:13px;
  color:var(--text-on-light-b);
  padding-left:16px;
  position:relative;
}
.gt-material__list li::before{
  content:"·";
  position:absolute;
  left:0;
  color:var(--cta);
  font-weight:700;
}
.gt-cta-section{background:var(--dark-primary);}
.gt-cta{text-align:center;max-width:600px;margin:0 auto;}
.gt-cta__title{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:500;
  font-size:clamp(36px,5vw,52px);
  color:var(--text-on-dark-h);
  line-height:1.1;
  margin:8px 0 16px;
}
.gt-cta__sub{
  color:var(--text-on-dark-b);
  font-size:15px;
  line-height:1.65;
  margin-bottom:36px;
}
.gt-cta__btns{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn--outline-light{
  border-color:var(--steel);
  color:var(--text-on-dark-b);
  background:transparent;
}
.btn--outline-light:hover{
  border-color:var(--text-on-dark-h);
  color:var(--text-on-dark-h);
}

/* ═══════════ CATEGORÍAS WooCommerce ═══════════ */
.cat-hero{
  position:relative;
  min-height:320px;
  background:var(--dark-primary);
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding-top:var(--nav-h);
}
.cat-hero__overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(10,10,10,.9) 0%, rgba(10,10,10,.5) 60%, rgba(10,10,10,.3) 100%);
}
.cat-hero__inner{
  position:relative;
  padding-top:48px;
  padding-bottom:56px;
}
.cat-hero__title{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(36px,5vw,64px);
  color:var(--text-on-dark-h);
  letter-spacing:-.01em;
  margin:12px 0 18px;
}
.cat-hero__desc{
  color:var(--text-on-dark-b);
  font-size:16px;
  line-height:1.7;
  max-width:620px;
  margin-bottom:20px;
}
.cat-hero__count{
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--steel);
}

/* Breadcrumb WooCommerce */
.woocommerce-breadcrumb{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--steel);
}
.woocommerce-breadcrumb a{
  color:var(--steel);
  transition:color .2s ease;
}
.woocommerce-breadcrumb a:hover{color:var(--text-on-dark-h);}

.cat-products{padding-top:72px;}

/* Grid de productos WooCommerce — AR Men style */
.woocommerce ul.products{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:24px;
  list-style:none;
  margin:0;padding:0;
}
.woocommerce ul.products li.product{
  background:var(--light-page);
  border-top:2px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.woocommerce ul.products li.product:hover{
  border-top-color:var(--cta);
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  transform:translateY(-2px);
}
.woocommerce ul.products li.product img{
  width:100%;aspect-ratio:4/5;object-fit:cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-family:var(--font-sans);
  font-weight:500;
  font-size:15px;
  color:var(--text-on-light-h);
  letter-spacing:.04em;
  padding:16px 20px 4px;
}
.woocommerce ul.products li.product .price{
  font-weight:700;
  font-size:16px;
  color:var(--text-on-light-h);
  padding:0 20px 16px;
  display:block;
}
.woocommerce ul.products li.product .button{
  display:block;
  margin:0 20px 20px;
  padding:13px 20px;
  background:var(--cta);
  color:#fff;
  font-family:var(--font-sans);
  font-size:11px;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  text-align:center;
  border:none;
  cursor:pointer;
  transition:background .25s ease, box-shadow .3s ease;
}
.woocommerce ul.products li.product .button:hover{
  background:#E0BD45;
  box-shadow:0 0 20px rgba(212,175,55,.3);
}

/* ═══════════ FICHA DE PRODUCTO (single-product) ═══════════ */

/* Breadcrumb */
.pdp-breadcrumb{
  background:var(--dark-primary);
  border-bottom:1px solid rgba(113,114,114,.15);
  padding:14px 0;
}
.pdp-breadcrumb__list{
  list-style:none;
  padding:0;margin:0;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--steel);
}
.pdp-breadcrumb__list a{
  color:var(--steel);
  transition:color .2s ease;
}
.pdp-breadcrumb__list a:hover{color:var(--text-on-dark-h);}
.pdp-breadcrumb__list [aria-current]{color:var(--text-on-dark-b);}

/* Layout principal */
.pdp-main{
  background:var(--light-page);
  padding:56px 0 72px;
}
.pdp-main__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:start;
}
@media(min-width:900px){
  .pdp-main__grid{
    grid-template-columns:1fr 1fr;
    gap:72px;
  }
}

/* Galería */
.pdp-gallery__main{
  background:var(--light-card);
  aspect-ratio:1/1;
  overflow:hidden;
  position:relative;
}
.pdp-gallery__img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .5s ease;
  cursor:zoom-in;
}
.pdp-gallery__main:hover .pdp-gallery__img{transform:scale(1.03);}
.pdp-gallery__placeholder{
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background:var(--light-card);
  color:var(--steel);
  font-family:var(--font-sans);
  font-size:14px;
  letter-spacing:.32em;
  text-transform:uppercase;
}
.pdp-gallery__thumbs{
  display:flex;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}
.pdp-thumb{
  width:72px;height:72px;
  border:2px solid transparent;
  overflow:hidden;
  cursor:pointer;
  padding:0;
  background:var(--light-card);
  transition:border-color .2s ease;
  flex-shrink:0;
}
.pdp-thumb img{width:100%;height:100%;object-fit:cover;}
.pdp-thumb--active,.pdp-thumb:hover{border-color:var(--cta);}

/* Galería — flechas de navegación */
.pdp-gallery__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:44px;height:44px;
  border-radius:50%;
  background:rgba(10,10,10,.6);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  opacity:0;
  transition:opacity .2s ease, background .2s ease;
  padding:0;
}
.pdp-gallery__main:hover .pdp-gallery__arrow{opacity:1;}
.pdp-gallery__arrow:hover{background:rgba(30,30,30,.9);}
.pdp-gallery__arrow--prev{left:12px;}
.pdp-gallery__arrow--next{right:12px;}
@media(max-width:768px){
  .pdp-gallery__arrow{opacity:.85;width:38px;height:38px;}
}

/* Lightbox */
.pdp-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.96);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}
.pdp-lightbox.open{opacity:1;pointer-events:all;}
.pdp-lightbox__img{
  max-width:90vw;
  max-height:90vh;
  object-fit:contain;
  user-select:none;
  display:block;
}
.pdp-lightbox__close{
  position:absolute;
  top:16px;right:20px;
  width:44px;height:44px;
  background:transparent;
  border:none;
  color:rgba(255,255,255,.7);
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:color .2s ease;
  padding:0;
}
.pdp-lightbox__close:hover{color:#fff;}

/* Hover-swap — tarjetas de categoría */
.armen-img-wrap{
  position:relative;
  overflow:hidden;
  display:block;
  background:var(--light-card);
}
.armen-img-wrap img:first-child{
  display:block;
  width:100%;
  transition:opacity .35s ease;
}
.armen-hover-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .35s ease;
  pointer-events:none;
}
.armen-img-wrap:hover img:first-child{opacity:0;}
.armen-img-wrap:hover .armen-hover-img{opacity:1;}

/* Info columna */
.pdp-main__info{
  display:flex;
  flex-direction:column;
  gap:0;
}
.pdp-name{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(28px,3.5vw,44px);
  color:var(--text-on-light-h);
  line-height:1.1;
  letter-spacing:-.01em;
  margin:6px 0 14px;
}
/* ── H1 Dual: eyebrow keyword (SEO) + nombre de marca (branding) ── */
.pdp-title-wrap,
.pdp-h1-dual,
.cat-h1-dual{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin:6px 0 14px;
}
.seo-eyebrow,
.pdp-eyebrow-seo{
  display:block;
  font-family:var(--font-sans);
  font-size:11px;
  letter-spacing:.34em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--steel);
  line-height:1;
}
.luxury-name,
.pdp-name-luxury{
  display:block;
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(28px,3.5vw,44px);
  color:var(--text-on-light-h);
  line-height:1.1;
  letter-spacing:-.01em;
}
/* Variante sobre fondo oscuro (hero categoría) */
.luxury-name--on-dark{color:var(--text-on-dark-h);}
.seo-eyebrow--on-dark{color:var(--steel);}

.pdp-tagline{
  color:var(--text-on-light-b);
  font-size:15px;
  line-height:1.7;
  margin-bottom:20px;
  max-width:480px;
}

/* Precio */
.pdp-price{
  margin-bottom:12px;
}
.pdp-price .price,
.pdp-price .woocommerce-Price-amount{
  font-family:var(--font-display);
  font-size:clamp(30px,4vw,42px);
  font-weight:500;
  color:var(--text-on-light-h);
  line-height:1;
}
.pdp-price ins{
  text-decoration:none;
}
.pdp-price del{
  color:var(--steel);
  font-size:60%;
  margin-right:8px;
}

/* Envío */
.pdp-shipping{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--steel);
  margin-bottom:28px;
  display:flex;
  align-items:center;
  gap:6px;
}
.pdp-shipping--free{color:#4a9c6b;}

/* ── Formulario WooCommerce ── */
.pdp-cart{margin-bottom:28px;}

/* Tabla de variaciones */
.pdp-cart .variations{
  border-collapse:collapse;
  width:100%;
  margin-bottom:16px;
}
.pdp-cart .variations td,
.pdp-cart .variations th{
  border:none;
  padding:0;
  vertical-align:top;
}
.pdp-cart .variations .label{
  display:none; /* el label se muestra via el select */
}
.pdp-cart .variations .value{width:100%;}
.pdp-cart .variations select{
  width:100%;
  padding:14px 18px;
  background:var(--light-card);
  border:1px solid rgba(113,114,114,.35);
  color:var(--text-on-light-h);
  font-family:var(--font-sans);
  font-size:14px;
  letter-spacing:.04em;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23717272' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat:no-repeat;
  background-position:right 16px center;
  cursor:pointer;
  outline:none;
  transition:border-color .2s ease;
  margin-bottom:12px;
}
.pdp-cart .variations select:focus{
  border-color:var(--cta);
}

/* Precio de variación — oculto: lo actualizamos en .pdp-price via JS */
.pdp-cart .woocommerce-variation-price{display:none !important;}
.pdp-cart .woocommerce-variation{
  margin-bottom:16px;
}

/* Cantidad — stepper +/− */
.pdp-cart .quantity,
.pdp-cart .woocommerce-variation-add-to-cart .quantity{display:none !important;}
.pdp-qty-stepper{
  display:flex;
  align-items:center;
  gap:0;
  margin-bottom:16px;
  border:1px solid rgba(113,114,114,.35);
  width:fit-content;
}
.pdp-qty__btn{
  width:44px;
  height:52px;
  background:var(--light-card);
  border:none;
  color:var(--text-on-light-h);
  font-size:20px;
  font-weight:300;
  cursor:pointer;
  transition:background .15s ease,color .15s ease;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pdp-qty__btn:hover{background:var(--cta);color:#fff;}
.pdp-qty__btn:disabled{opacity:.35;cursor:not-allowed;}
.pdp-qty__input{
  width:56px;
  height:52px;
  text-align:center;
  border:none;
  border-left:1px solid rgba(113,114,114,.35);
  border-right:1px solid rgba(113,114,114,.35);
  font-family:var(--font-sans);
  font-size:16px;
  font-weight:400;
  color:var(--text-on-light-h);
  background:var(--light-page);
  outline:none;
  -moz-appearance:textfield;
}
.pdp-qty__input::-webkit-inner-spin-button,
.pdp-qty__input::-webkit-outer-spin-button{-webkit-appearance:none;}

/* Botón agregar al carrito */
.pdp-cart .single_add_to_cart_button,
.pdp-cart .button.alt{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:20px 32px;
  background:var(--cta);
  color:#fff;
  font-family:var(--font-sans);
  font-size:12px;
  font-weight:700;
  letter-spacing:.28em;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  transition:background .25s ease, box-shadow .3s ease, transform .15s ease;
}
.pdp-cart .single_add_to_cart_button:hover,
.pdp-cart .button.alt:hover{
  background:#E0BD45;
  box-shadow:0 0 32px rgba(212,175,55,.4);
  transform:translateY(-1px);
}
.pdp-cart .single_add_to_cart_button:disabled{
  background:var(--steel);
  cursor:not-allowed;
  box-shadow:none;
  transform:none;
}

/* Reset link de variación */
.pdp-cart .reset_variations{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:6px;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--steel);
  text-decoration:none;
  cursor:pointer;
  transition:color .2s ease;
  opacity:.7;
}
.pdp-cart .reset_variations::before{
  content:"✕";
  font-size:9px;
  line-height:1;
}
.pdp-cart .reset_variations:hover{color:var(--text-on-light-h);opacity:1;}
.pdp-reset-hint{
  display:block;
  margin-top:4px;
  font-size:11px;
  color:var(--steel);
  opacity:.55;
  font-style:italic;
  letter-spacing:.01em;
}

/* Trust badges */
.pdp-trust{
  list-style:none;
  padding:0;margin:0;
  border-top:1px solid rgba(113,114,114,.2);
  padding-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.pdp-trust li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.04em;
  color:var(--text-on-light-b);
}
.pdp-trust li svg{
  flex-shrink:0;
  color:var(--steel);
}

/* ── Historia editorial ── */
.pdp-story{
  background:var(--dark-primary);
  padding:100px 0;
  position:relative;
  overflow:hidden;
}
.pdp-story__inner{
  max-width:680px;
  margin:0 auto;
}
.pdp-story__heading{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(22px,3vw,32px);
  color:var(--text-on-dark-h);
  letter-spacing:.04em;
  line-height:1.2;
  margin:0 0 32px;
}
.pdp-story__body{
  color:var(--text-on-dark-b);
  font-size:19px;
  line-height:1.85;
  text-align:center;
}
.pdp-story__body br{display:none;}
.pdp-story__body p{margin:0 0 24px;}
.pdp-story__body p:last-child{margin-bottom:0;}
.pdp-story__body em{font-style:italic;color:#E8E8E5;}
.pdp-story__body strong{font-weight:500;color:var(--text-on-dark-h);}
/* ── Enlace de categoría (anti-huérfana) ── */
.pdp-cat-nav{
  background:var(--dark-primary);
  padding:40px 0 60px;
  border-top:1px solid rgba(113,114,114,.15);
}
.pdp-cat-nav__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--steel);
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  transition:color .2s ease;
}
.pdp-cat-nav__link:hover{color:var(--text-on-dark-h);}

/* ── Especificaciones ── */
.pdp-specs{
  background:var(--light-card);
  padding:80px 0;
}
.pdp-specs__inner{
  max-width:640px;
  margin:0 auto;
}
.pdp-specs__title{
  font-family:var(--font-sans);
  font-weight:300;
  font-size:clamp(14px,1.8vw,18px);
  color:var(--steel);
  text-align:center;
  margin:0 0 32px;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.pdp-specs__table{
  width:100%;
  border-collapse:collapse;
}
.pdp-specs__table tr{
  border-bottom:1px solid rgba(113,114,114,.18);
}
.pdp-specs__table tr:last-child{border-bottom:none;}
.pdp-specs__table th{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--steel);
  font-weight:500;
  text-align:left;
  padding:14px 0;
  width:38%;
  vertical-align:top;
}
.pdp-specs__table td{
  font-size:14px;
  color:var(--text-on-light-b);
  padding:14px 0;
  line-height:1.5;
}

/* ── Productos relacionados ── */
.pdp-related{
  background:var(--dark-secondary);
  padding:80px 0;
}
.pdp-related .section__head{margin-bottom:48px;}
.pdp-related__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
@media(min-width:760px){
  .pdp-related__grid{grid-template-columns:repeat(4,1fr);gap:20px;}
}
.pdp-related__item{
  background:var(--light-page);
  display:flex;
  flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.pdp-related__item:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(0,0,0,.3);
}
.pdp-related__media{
  aspect-ratio:4/5;
  background:var(--light-card);
  overflow:hidden;
}
.pdp-related__img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.pdp-related__item:hover .pdp-related__img{transform:scale(1.04);}
.pdp-related__body{
  padding:16px 18px 18px;
}
.pdp-related__name{
  font-size:13px;
  font-weight:500;
  color:var(--text-on-light-h);
  letter-spacing:.04em;
  margin-bottom:6px;
  line-height:1.3;
}
.pdp-related__price .woocommerce-Price-amount,
.pdp-related__price .price{
  font-size:14px;
  font-weight:700;
  color:var(--text-on-light-h);
}

/* ═══════════ SECTION TYPOGRAPHY VARIANTS (shared) ═══════════ */
.section__title--dark{color:var(--text-on-dark-h);}
.section__lead{font-size:16px;line-height:1.7;max-width:680px;margin-bottom:40px;}
.section__lead--dark{color:var(--text-on-dark-b);}
.section__lead--light{color:var(--text-on-light-b);}

/* ═══════════ COMPARE TABLE (shared) ═══════════ */
.compare-table{width:100%;border-collapse:collapse;margin-top:40px;font-size:14px;}
.compare-table th{
  font-size:11px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--steel);font-weight:400;padding:14px 16px;
  border-bottom:1px solid rgba(113,114,114,.25);text-align:left;
}
.compare-table td{
  padding:16px;border-bottom:1px solid rgba(113,114,114,.12);
  color:var(--text-on-dark-b);vertical-align:top;
}
.compare-table tr td:first-child{color:var(--text-on-dark-h);font-weight:500;}
.compare-table tr.highlight td{background:rgba(212,175,55,.04);}

/* ═══════════ FAQ ACCORDION (shared) ═══════════ */
.faq{margin-top:48px;}
.faq__item{border-bottom:1px solid rgba(17,17,17,.12);}
.faq__question{
  width:100%;background:none;border:none;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  gap:16px;padding:24px 0;text-align:left;
  font-family:var(--font-sans);font-size:15px;font-weight:500;
  color:var(--text-on-light-h);
}
.faq__question:hover{color:#000;}
.faq__icon{
  flex-shrink:0;width:20px;height:20px;
  color:var(--steel);transition:transform .3s ease;
}
.faq__item.open .faq__icon{transform:rotate(45deg);}
.faq__answer{
  max-height:0;overflow:hidden;
  transition:max-height .35s ease,padding .3s ease;
  color:var(--text-on-light-b);font-size:14px;line-height:1.7;
}
.faq__item.open .faq__answer{max-height:400px;padding-bottom:24px;}

/* ═══════════ MAT-CTA (shared) ═══════════ */
.mat-cta{text-align:center;padding:80px 24px;background:var(--dark-primary);}
.mat-cta__title{
  font-family:var(--font-display);font-size:clamp(28px,4vw,48px);
  color:var(--text-on-dark-h);margin-bottom:16px;
}
.mat-cta__sub{color:var(--text-on-dark-b);margin-bottom:40px;font-size:15px;}
.mat-cta__links{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT AR MEN — WooCommerce
   ═══════════════════════════════════════════════════════════ */

.woocommerce-checkout{background:var(--dark-primary);min-height:70vh;padding:64px 24px 100px;}
.woocommerce-checkout .woocommerce{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 380px;gap:48px;align-items:start;}
@media(max-width:860px){.woocommerce-checkout .woocommerce{grid-template-columns:1fr;}}
.woocommerce-checkout .woocommerce-notices-wrapper{grid-column:1/-1;}

.woocommerce-billing-fields h3,.woocommerce-shipping-fields h3,#order_review_heading,#payment h3{
  font-family:var(--font-sans);font-weight:300;font-size:11px;letter-spacing:.32em;
  text-transform:uppercase;color:var(--steel);margin:0 0 28px;
  padding-bottom:12px;border-bottom:1px solid rgba(113,114,114,.2);
}

.woocommerce-checkout .form-row{margin:0 0 16px;}
.woocommerce-checkout .form-row label{display:block;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--steel);margin-bottom:8px;font-weight:400;}
.woocommerce-checkout .form-row .required{color:var(--cta);margin-left:2px;}
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select,
.woocommerce-checkout textarea{
  width:100%;background:var(--dark-secondary);border:1px solid rgba(113,114,114,.3);
  color:var(--text-on-dark-h);padding:14px 18px;font-family:var(--font-sans);font-size:14px;
  outline:none;border-radius:0;transition:border-color .2s ease;appearance:none;-webkit-appearance:none;
}
.woocommerce-checkout input::placeholder,.woocommerce-checkout textarea::placeholder{color:var(--steel);opacity:.7;}
.woocommerce-checkout input:focus,.woocommerce-checkout select:focus,.woocommerce-checkout textarea:focus{border-color:var(--cta);}
.woocommerce-checkout select{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23717272' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");background-repeat:no-repeat;background-position:right 16px center;padding-right:40px;cursor:pointer;}
.woocommerce-checkout textarea{height:100px;resize:vertical;}

.woocommerce-checkout .form-row-first,.woocommerce-checkout .form-row-last{width:calc(50% - 8px);display:inline-block;vertical-align:top;}
.woocommerce-checkout .form-row-first{margin-right:16px;}
@media(max-width:580px){.woocommerce-checkout .form-row-first,.woocommerce-checkout .form-row-last{width:100%;margin-right:0;}}

.woocommerce-checkout #ship-to-different-address{display:flex;align-items:center;gap:10px;cursor:pointer;margin:0 0 24px;font-size:13px;color:var(--text-on-dark-b);}
.woocommerce-checkout #ship-to-different-address input{accent-color:var(--cta);}

#order_review{background:var(--dark-secondary);border:1px solid rgba(113,114,114,.18);padding:32px;position:sticky;top:96px;}
#order_review table.shop_table{width:100%;border-collapse:collapse;margin-bottom:24px;}
#order_review table.shop_table th,#order_review table.shop_table td{padding:14px 0;border-bottom:1px solid rgba(113,114,114,.12);font-size:14px;vertical-align:middle;}
#order_review table.shop_table thead th{font-size:10px;letter-spacing:.28em;text-transform:uppercase;color:var(--steel);font-weight:400;border-bottom:1px solid rgba(113,114,114,.2);}
#order_review table.shop_table tbody td{color:var(--text-on-dark-b);}
#order_review table.shop_table tbody .product-total{color:var(--text-on-dark-h);text-align:right;}
#order_review table.shop_table tfoot tr th{color:var(--steel);font-size:11px;letter-spacing:.2em;text-transform:uppercase;font-weight:400;}
#order_review table.shop_table tfoot tr td{color:var(--text-on-dark-b);text-align:right;}
#order_review table.shop_table tfoot tr.order-total th,#order_review table.shop_table tfoot tr.order-total td{color:var(--text-on-dark-h);font-size:18px;border-bottom:none;}
#order_review table.shop_table tfoot tr.order-total td{font-weight:700;}

#payment{background:transparent;margin-top:24px;}
#payment ul.payment_methods{list-style:none;padding:0;margin:0 0 24px;border:1px solid rgba(113,114,114,.2);}
#payment ul.payment_methods li{border-bottom:1px solid rgba(113,114,114,.12);padding:16px 20px;}
#payment ul.payment_methods li:last-child{border-bottom:none;}
#payment ul.payment_methods label{display:flex;align-items:center;gap:12px;color:var(--text-on-dark-b);font-size:14px;cursor:pointer;}
#payment ul.payment_methods input[type="radio"]{accent-color:var(--cta);}
#payment ul.payment_methods .payment_box{background:rgba(113,114,114,.08);padding:16px;margin-top:12px;font-size:13px;color:var(--text-on-dark-b);}
#payment ul.payment_methods img{max-height:28px;object-fit:contain;}
#payment #place_order{display:block;width:100%;background:var(--cta);color:#fff;padding:20px 32px;font-family:var(--font-sans);font-size:12px;font-weight:700;letter-spacing:.28em;text-transform:uppercase;border:none;cursor:pointer;transition:background .25s ease,box-shadow .3s ease,transform .15s ease;}
#payment #place_order:hover{background:#E0BD45;box-shadow:0 0 32px rgba(212,175,55,.4);transform:translateY(-1px);}

.woocommerce-checkout .woocommerce-privacy-policy-text{font-size:11px;color:var(--steel);margin-bottom:20px;line-height:1.6;}
.woocommerce-checkout .woocommerce-privacy-policy-text a{color:var(--steel);text-decoration:underline;}
.woocommerce-checkout .woocommerce-invalid input,.woocommerce-checkout .woocommerce-invalid select{border-color:#e05252;}
.woocommerce-checkout .woocommerce-invalid-required-field::after{content:"Campo obligatorio";display:block;font-size:11px;color:#e05252;margin-top:4px;}

/* ═══════════ HOMEPAGE — WooCommerce conectado ═══════════ */
.featured__img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:4px;
  display:block;
}
.featured__price .woocommerce-Price-amount,
.featured__price .price{
  font-family:var(--font-display);
  font-size:clamp(28px,4vw,42px);
  font-weight:500;
  color:var(--text-on-dark-h);
}
.product__link{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  height:100%;
}
.product__cta{
  display:block;
  margin-top:16px;
  padding:13px 20px;
  background:var(--cta);
  color:#fff;
  font-family:var(--font-sans);
  font-size:11px;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  text-align:center;
  transition:background .25s ease, box-shadow .3s ease;
}
.product__cta em{
  font-style:normal;
}
.product:hover .product__cta{
  background:#E0BD45;
  box-shadow:0 0 20px rgba(212,175,55,.3);
}
.product__price .woocommerce-Price-amount,
.product__price .price{
  font-size:16px;
  font-weight:700;
  color:var(--text-on-light-h);
}

/* ═══════════ CARD LINK (sección categorías home) ═══════════ */
.card__link{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  height:100%;
}
.card--collection:hover .card__cta em{transform:translateX(4px);}

/* ═══════════ HERO SUB (reemplaza h2 en hero) ═══════════ */
.hero__sub{
  max-width:580px;
  color:var(--text-on-dark-b);
  font-size:clamp(17px,2vw,20px);
  font-style:italic;
  line-height:1.65;
  opacity:0;
  transform:translateY(25px);
  animation:rise .8s ease-out .55s forwards;
  text-align:center;
}

/* ═══════════ CAT-EXPLORE (cross-links en categorías) ═══════════ */
.cat-explore{background:var(--dark-secondary);}
.cat-explore .section__head{margin-bottom:48px;}
.cat-explore__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media(max-width:720px){
  .cat-explore__grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:480px){
  .cat-explore__grid{grid-template-columns:1fr;}
}
.cat-explore__item{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  background:var(--dark-primary);
  border:1px solid rgba(113,114,114,.18);
  transition:border-color .25s ease, transform .25s ease;
}
.cat-explore__item:hover{
  border-color:var(--steel);
  transform:translateY(-3px);
}
.cat-explore__img{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#1a1a1a;
}
.cat-explore__img--empty{background:var(--dark-secondary);}
.cat-explore__img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}
.cat-explore__item:hover .cat-explore__img img{transform:scale(1.04);}
.cat-explore__body{
  padding:20px 22px 24px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.cat-explore__label{
  font-family:var(--font-sans);
  font-size:13px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-on-dark-h);
  margin:0;
}
.cat-explore__sub{
  font-size:12px;
  color:var(--text-on-dark-b);
  margin:0;
}
.cat-explore__cta{
  margin-top:10px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--steel);
  display:flex;
  align-items:center;
  gap:6px;
}
.cat-explore__cta em{
  font-style:normal;
  transition:transform .25s ease;
  display:inline-block;
}
.cat-explore__item:hover .cat-explore__cta em{transform:translateX(4px);}
.cat-explore__item:hover .cat-explore__cta{color:var(--text-on-dark-h);}

/* ═══════════ DEVOLUCIONES ═══════════ */
.pol-hero{
  background:var(--dark-primary);
  padding:160px 0 80px;
  text-align:center;
}
.pol-hero__inner{max-width:680px;margin:0 auto;}
.pol-hero__title{
  font-family:var(--font-display);
  font-size:clamp(36px,6vw,72px);
  font-weight:500;
  color:var(--text-on-dark-h);
  line-height:1.05;
  margin:16px 0 20px;
}
.pol-hero__sub{
  color:var(--text-on-dark-b);
  font-size:16px;
  margin:0;
}
.pol-content{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:56px;
}
.pol-block h2{
  font-family:var(--font-sans);
  font-size:18px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-on-light-h);
  margin:0 0 16px;
}
.pol-block p,.pol-block li{
  color:var(--text-on-light-b);
  font-size:15px;
  line-height:1.75;
  margin:0 0 12px;
}
.pol-block ul,.pol-block ol{
  padding-left:20px;
  margin:0 0 12px;
}
.pol-block a{color:var(--text-on-light-h);text-decoration:underline;}
.pol-block--cta{
  text-align:center;
  padding:48px 0 0;
  border-top:1px solid rgba(113,114,114,.2);
}
.pol-block--cta p{
  font-size:17px;
  margin-bottom:24px;
  color:var(--text-on-light-h);
}
