/* ==========================================================
   AJ AESTHETICS — MEN'S PAGE STYLESHEET
   Charcoal + Bronze · Sanctuary Aesthetic
   ========================================================== */

:root {
  --bg: #14110f;
  --bg-soft: #1a1614;
  --card: #211c19;
  --card-hover: #2a2420;
  --bronze: #b87f4a;
  --bronze-soft: #d4a276;
  --bronze-glow: rgba(184, 127, 74, 0.35);
  --bronze-deep: #8b5a30;
  --text: #f4ede4;
  --text-dim: #b8aea1;
  --text-muted: #847a6e;
  --border: rgba(184, 127, 74, 0.22);
  --border-strong: rgba(184, 127, 74, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 70px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 17, 15, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo-row { display: contents; }
.header-bottom-row { display: contents; }
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(184, 127, 74, 0.2));
  transition: filter 0.25s ease;
}
.logo:hover img {
  filter: drop-shadow(0 0 22px rgba(184, 127, 74, 0.4));
}
.footer .logo img { height: 64px; }
@media (max-width: 600px) {
  .logo img { height: 44px; }
  .footer .logo img { height: 54px; }
}
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--bronze-soft); }
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-link svg { width: 16px; height: 16px; fill: var(--bronze-soft); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-deep) 100%);
  color: #fff;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(184, 127, 74, 0.25);
}
.btn:hover {
  background: linear-gradient(135deg, var(--bronze-soft) 0%, var(--bronze) 100%);
  box-shadow: 0 6px 28px rgba(184, 127, 74, 0.45);
  transform: translateY(-1px);
}
.btn-large { padding: 18px 42px; font-size: 14px; }
.btn-small { padding: 10px 22px; font-size: 12px; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--bronze);
  color: var(--bronze-soft);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--bronze);
  color: #fff;
  border-color: var(--bronze);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.65) 0%, rgba(20, 17, 15, 0.85) 100%),
              url('images/mens-hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 24px;
}
.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--bronze-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero h1 .italic {
  font-style: italic;
  color: var(--bronze-soft);
  font-weight: 500;
}
.hero p {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 38px;
  line-height: 1.7;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.info-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.info-item { text-align: center; }
.info-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--bronze-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.info-value {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

/* ===== SECTION ===== */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-tight { padding: 70px 24px; }
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--bronze-soft);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: center;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  text-align: center;
  margin-bottom: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title .italic { font-style: italic; color: var(--bronze-soft); }
.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== INTRO / NARRATIVE BLOCK ===== */
.intro-band {
  background: var(--bg-soft);
  padding: 90px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.intro-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
}
.intro-quote::before, .intro-quote::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--bronze);
  vertical-align: middle;
  margin: 0 18px 8px;
}
.intro-sub {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== SERVICE MENU ===== */
.menu-section {
  margin-bottom: 80px;
}
.menu-section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.menu-section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0 28px;
  position: relative;
  background: var(--bg);
}
.menu-section-header::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: -1;
}
.menu-section-header p {
  color: var(--text-dim);
  font-size: 15px;
  font-style: italic;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 30px;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-item:hover {
  border-color: var(--border-strong);
  background: var(--card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.service-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 14px;
}
.service-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.service-item-name .italic { font-style: italic; color: var(--bronze-soft); }
.service-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--bronze-soft);
  font-weight: 600;
  white-space: nowrap;
}
.service-item-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.service-item-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.service-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.service-item-duration {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.pillar {
  text-align: center;
  padding: 30px 20px;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 127, 74, 0.08);
}
.pillar-icon svg { width: 26px; height: 26px; stroke: var(--bronze-soft); fill: none; stroke-width: 1.5; }
.pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.pillar p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 90px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.cta-band h2 .italic { font-style: italic; color: var(--bronze-soft); }
.cta-band p {
  color: var(--text-dim);
  margin-bottom: 38px;
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== TESTIMONIAL ===== */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 4px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 22px;
}
.testimonial-author {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bronze-soft);
  font-weight: 600;
}
.testimonial-loc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}
.stars {
  color: var(--bronze-soft);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0a08;
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer p, .footer a {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
  display: block;
}
.footer a:hover { color: var(--bronze-soft); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(20, 17, 15, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-bar a { flex: 1; text-align: center; }

/* ===== NAV DROPDOWN (bronze variant) ===== */
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-item > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-top: -3px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(20, 17, 15, 0.98);
  border: 1px solid rgba(184, 127, 74, 0.25);
  border-radius: 12px;
  min-width: 220px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 24px rgba(184, 127, 74, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-item:hover > a::after,
.nav-item:focus-within > a::after { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown a {
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: 13px !important;
  letter-spacing: 0.6px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  color: rgba(232, 224, 213, 0.7) !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}
.nav-dropdown a:hover {
  background: rgba(184, 127, 74, 0.14);
  color: #fff !important;
}
.nav-dropdown a strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}
.nav-dropdown a span.sub {
  display: block;
  font-size: 11px;
  color: rgba(232, 224, 213, 0.45);
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
  .nav { display: none; }
  .nav-item > a::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 6px;
    border-left: 2px solid rgba(184, 127, 74, 0.35);
    border-radius: 0;
    min-width: 0;
  }
  .nav-dropdown a { padding: 6px 0 !important; font-size: 13px !important; }
  .nav-dropdown a strong { font-size: 13px; }
  .nav-dropdown a span.sub { display: none; }
  .header-right .phone-link { display: none; }
  .info-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .service-list { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonial-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mobile-bar { display: flex; }
  .hero { min-height: 75vh; padding: 60px 22px; }
  .section { padding: 60px 22px; }
  .intro-band { padding: 60px 22px; }
  .cta-band { padding: 60px 22px; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .service-item-top { flex-direction: column; gap: 4px; align-items: flex-start; }
  .info-bar-inner { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   AFTERPAY ANNOUNCEMENT BANNER (Men's variant)
   ========================================================== */
.afterpay-bar {
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-soft) 100%);
  color: #1a1410;
  text-align: center;
  padding: 9px 18px;
  font-size: 13px;
  letter-spacing: 0.4px;
  font-weight: 600;
  position: relative;
  z-index: 110;
}
.afterpay-bar strong { font-weight: 700; }
.afterpay-bar .sep { display: inline-block; margin: 0 12px; opacity: 0.6; }

@media (max-width: 540px) {
  .afterpay-bar { font-size: 12px; padding: 8px 14px; }
  .afterpay-bar .sep { display: none; }
  .afterpay-bar .item { display: block; }
}

/* ==========================================================
   MEMBERSHIP LAUNCH BAR — Men's (bronze)
   ========================================================== */
.launch-bar {
  position: relative;
  z-index: 110;
  background: linear-gradient(90deg, var(--bronze) 0%, var(--bronze-soft) 70%, #e8c39b 100%);
  color: #1a1410;
  padding: 10px 44px 10px 18px;
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 14px rgba(184, 127, 74, 0.25);
}
.launch-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1a1410;
  text-decoration: none;
  flex-wrap: wrap;
  justify-content: center;
}
.launch-bar-pill {
  display: inline-block;
  background: rgba(26, 20, 16, 0.18);
  border: 1px solid rgba(26, 20, 16, 0.4);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.launch-bar-msg { font-weight: 500; }
.launch-bar-msg strong { font-weight: 700; }
.launch-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(26, 20, 16, 0.85);
  color: #f4e3cc;
  border: 1px solid rgba(26, 20, 16, 0.9);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}
.launch-bar-link:hover .launch-bar-cta {
  background: #000;
}
.launch-bar-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #1a1410;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  padding: 4px 8px;
}
.launch-bar-close:hover { opacity: 1; }

@media (max-width: 600px) {
  .launch-bar {
    font-size: 12px;
    padding: 9px 38px 9px 14px;
  }
  .launch-bar-link { gap: 8px; }
  .launch-bar-pill { font-size: 10px; padding: 1px 8px; }
  .launch-bar-cta { font-size: 11px; padding: 2px 10px; }
}

/* ==========================================================
   INLINE AFTERPAY — Men's (bronze)
   ========================================================== */
.afterpay-inline-wrap {
  max-width: 1100px;
  margin: 50px auto 10px;
  padding: 0 24px;
}
.afterpay-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(184, 127, 74, 0.10) 0%, rgba(20, 17, 15, 0.6) 100%);
  border: 1px solid rgba(184, 127, 74, 0.25);
  border-radius: 14px;
  padding: 20px 24px;
}
.afterpay-inline-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184, 127, 74, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze-soft);
}
.afterpay-inline-icon svg { width: 24px; height: 24px; }
.afterpay-inline-text {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.afterpay-inline-text strong { color: #f4e3cc; font-weight: 600; }

@media (max-width: 540px) {
  .afterpay-inline { padding: 16px 18px; gap: 14px; }
  .afterpay-inline-icon { width: 38px; height: 38px; }
  .afterpay-inline-icon svg { width: 20px; height: 20px; }
  .afterpay-inline-text { font-size: 13px; }
}

/* ===== NAV DROPDOWN (Men's bronze theme) ===== */
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-item > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-top: -3px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(20, 17, 15, 0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 220px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(184, 127, 74, 0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-item:hover > a::after,
.nav-item:focus-within > a::after { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown a {
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: 13px !important;
  letter-spacing: 0.6px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  color: var(--text-dim) !important;
  transition: background 0.15s ease, color 0.15s ease !important;
}
.nav-dropdown a:hover {
  background: rgba(184, 127, 74, 0.15);
  color: var(--text) !important;
}
.nav-dropdown a strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}
.nav-dropdown a span.sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Mobile nav dropdown for men's pages */
@media (max-width: 880px) {
  .nav-item > a::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin-top: 6px;
    border-left: 2px solid rgba(184, 127, 74, 0.3);
    border-radius: 0;
    min-width: 0;
  }
  .nav-dropdown a { padding: 6px 0 !important; font-size: 13px !important; }
  .nav-dropdown a strong { font-size: 13px; }
  .nav-dropdown a span.sub { display: none; }
}
