/* BuySellConsumeGolf v2 — Compact Premium Design */
/* Tighter spacing, smaller images, faster to scan */

:root {
  --navy: #0d1b2a;
  --green: #2d6a2d;
  --green-accent: #4caf50;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --border: #e8eaed;
  --text: #1a1a2e;
  --text-mid: #4b5563;
  --text-sub: #6b7280;
  --text-light: #9ca3af;
  --red: #dc2626;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; }

p { margin: 0; }
a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-accent); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TIGHT SECTION SPACING */
section {
  padding: 2.5rem 0;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.section-title em {
  color: var(--green);
  font-style: italic;
}

/* NAVIGATION */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-logo-golf { color: var(--green); font-style: normal; font-weight: 700; letter-spacing: 0.04em; }

.nav-search {
  flex: 1;
  max-width: 360px;
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0.8rem;
}

.nav-search input {
  flex: 1;
  border: none;
  background: none;
  font-size: 0.82rem;
  color: var(--text);
}

.nav-search input::placeholder { color: var(--text-light); }
.nav-search button {
  background: none;
  border: none;
  color: var(--text-sub);
  cursor: pointer;
  display: flex;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}

.nav-icon-btn:hover { color: var(--navy); }

.nav-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--green-accent);
  color: #0a1520;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-cta {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--navy);
  transition: background 0.18s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--border); }

/* site-banner — defined in mobile section below */

/* HERO — COMPACT */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2844 100%);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.hero-content h1 em {
  color: var(--green-accent);
  font-style: italic;
}

.hero-content p {
  font-size: 0.9rem;
  color: #8a9bb0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: #245a24;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--navy);
}

.btn-ghost {
  background: none;
  color: var(--green);
  padding: 0;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.7rem; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* CARDS */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s;
  padding: 1.5rem;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(76, 175, 80, 0.2);
  transform: translateY(-3px);
}

.listing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.listing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(76, 175, 80, 0.2);
  transform: translateY(-2px);
}

.listing-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--off-white), #eff2f5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  gap: 0.5rem;
  font-size: 0.8rem;
}

.listing-card-body {
  padding: 0.9rem;
}

.listing-card-seller {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.listing-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.listing-card-type {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-bottom: 0.8rem;
}

.listing-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.listing-card-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
}

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-navy { background: rgba(13, 27, 42, 0.08); color: var(--navy); }
.badge-green { background: rgba(45, 106, 45, 0.08); color: var(--green); }
.badge-gold { background: rgba(201, 168, 76, 0.08); color: var(--gold); }
.badge-red { background: rgba(220, 38, 38, 0.08); color: var(--red); }

/* FORMS */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: #6a8098;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Newsletter band */
.footer-newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: 1.8rem 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-news-text h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 600; color: white; margin-bottom: 0.3rem;
}
.footer-news-text p { font-size: 0.82rem; color: #6a8098; line-height: 1.6; max-width: 460px; }
.footer-news-form { display: flex; gap: 0.6rem; flex: 1; min-width: 280px; max-width: 420px; }
.footer-news-form input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 0.75rem 1rem; color: white;
  font-family: inherit; font-size: 0.85rem; outline: none; transition: border-color 0.15s;
}
.footer-news-form input::placeholder { color: #4a5f7f; }
.footer-news-form input:focus { border-color: var(--green-accent); }
.footer-news-form button {
  background: var(--green); color: white; border: none; border-radius: var(--radius);
  padding: 0.75rem 1.4rem; font-family: inherit; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.footer-news-form button:hover { background: #1f4f1f; }
.footer-news-msg { font-size: 0.78rem; font-weight: 600; margin: -1rem 0 1.5rem; min-height: 1em; }

.footer-brand { color: white; }
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Social icons — prominent centered row */
.footer-social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0 2rem;
}
.footer-social-row a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9bb3cc;
  transition: all 0.2s ease;
}
.footer-social-row a:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(45,106,45,0.35);
}

/* Trust badges */
.footer-trust { display: flex; gap: 0.5rem; margin-top: 1.1rem; flex-wrap: wrap; }
.footer-trust-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(45,106,45,0.12); border: 1px solid rgba(45,106,45,0.25);
  border-radius: 5px; padding: 0.3rem 0.6rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #6fae6f;
}

.footer-col h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: #6a8098;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

/* Payment icons */
.footer-payments {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem 0; margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-pay-label { font-size: 0.72rem; color: #6a8098; }
.footer-pay-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pay-pill {
  background: white; color: #1a2940; border-radius: 4px;
  padding: 0.35rem 0.7rem; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.03em; font-family: Arial, sans-serif;
}

.footer-bottom {
  text-align: center;
  font-size: 0.7rem;
  color: #4a5f7f;
}

.footer-bottom p { margin: 0.2rem 0; }

/* Global toast notification — used site-wide via BSCG.toast() */
.share-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: calc(100vw - 2.5rem);
  text-align: center;
}
.share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 600px) {
  .share-toast { bottom: 18px; font-size: 0.8rem; padding: 0.75rem 1.2rem; }
}

/* Sell pages sub-navigation (Sell Your Clubs / Seller Hub / Sell to BSC Golf) */
.sell-subnav {
  position: absolute;
  top: 1.6rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  gap: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.3rem;
  pointer-events: auto;
}
.sell-subnav-tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s;
  position: relative;
  z-index: 51;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(45,106,45,0.25);
  touch-action: manipulation;
  cursor: pointer;
}
.sell-subnav-tab svg { flex-shrink: 0; }
.sell-subnav-tab:hover { color: white; background: rgba(255,255,255,0.06); }
.sell-subnav-tab--active { background: var(--green); color: white; }
.sell-subnav-tab--active:hover { background: var(--green); color: white; }

.sell-subnav--light {
  position: static;
  background: white;
  border: 1px solid var(--border);
  margin-bottom: 1.8rem;
  width: fit-content;
}
.sell-subnav--light .sell-subnav-tab { color: var(--text-sub); }
.sell-subnav--light .sell-subnav-tab:hover { color: var(--text); background: var(--off-white); }
.sell-subnav--light .sell-subnav-tab--active { background: var(--green); color: white; }

@media (max-width: 900px) {
  .sell-subnav {
    position: static;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
  }
}
@media (max-width: 560px) {
  .sell-subnav { width: 100%; justify-content: space-between; }
  .sell-subnav-tab { font-size: 0.62rem; padding: 0.45rem 0.5rem; }
  .sell-subnav-tab span.subnav-label-full { display:none; }
}

/* MOBILE */
@media(max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { gap: 1rem; }
}

@media(max-width: 768px) {
  .nav-search { max-width: 150px; font-size: 0.75rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 2rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 2.5rem 0; }
}


/* ── iOS overflow fix ── */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Skip link hidden ── */
.skip-link {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Mobile drawer overlay ── */
.mobile-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.55);
  z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ── Mobile drawer panel ── */
.mobile-drawer {
  position: fixed; top: 0; right: 0;
  width: min(360px, 90vw); height: 100dvh;
  background: white; z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.18);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.mobile-drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-sub);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  transition: background 0.18s;
}
.mobile-drawer-close:hover { background: var(--border); }
.mobile-drawer-nav { flex: 1; overflow-y: auto; padding: 0.8rem 0; }
.mobile-drawer-link {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.mobile-drawer-link:hover { background: var(--off-white); color: var(--green); }
.mobile-drawer-link svg { flex-shrink: 0; color: var(--text-sub); }
.mobile-drawer-link:hover svg { color: var(--green); }
.mobile-drawer-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); }

/* ── Brand carousel ── */
/* ── BRAND CAROUSEL — pure CSS, zero glitch ── */
@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-carousel {
  background: var(--navy); overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-carousel-track {
  display: flex; align-items: center;
  white-space: nowrap; width: max-content;
  animation: brand-scroll 32s linear infinite;
  will-change: transform;
}
.brand-carousel-item {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #4caf50; text-decoration: none;
  padding: 0 0.4rem; transition: color 0.18s;
}
.brand-carousel-item:hover { color: white; }
.brand-carousel-dot { color: rgba(76,175,80,0.35); font-size: 0.8rem; padding: 0 0.6rem; }

/* ══════════════════════════════════════════════
   MOBILE NAV — shown only on phones/tablets
   Desktop nav shown only on desktop
   ══════════════════════════════════════════════ */

/* Site banner — scrolling marquee on mobile, static on desktop */
/* ── BANNER MARQUEE — pure CSS, zero glitch ── */
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-banner {
  background: var(--navy);
  overflow: hidden;
  padding: 0;
}
.site-banner-marquee {
  overflow: hidden;
  padding: 0.5rem 0;
}
.site-banner-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  animation-play-state: running;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.banner-set {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.banner-set span { padding: 0 0.5rem; }
.banner-dot { color: rgba(255,255,255,0.3) !important; padding: 0 0.4rem; }

/* Mobile nav — hidden on desktop */
.mobile-nav {
  display: none;
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Desktop nav — shown on desktop, hidden on mobile */
.desktop-nav {
  display: block;
}

/* Mobile nav rows */
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  gap: 0.5rem;
}

.mobile-nav-logo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  flex: 1;
  justify-content: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-nav-logo .nav-logo-golf { color: var(--green); font-style: normal; font-weight: 700; }

.mobile-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-hamburger:active { background: var(--off-white); }

.mobile-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cart-btn:active { background: var(--off-white); }

/* Search row */
.mobile-search-row {
  padding: 0 1rem 0.6rem;
}
.mobile-search-form {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.mobile-search-form input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  min-width: 0;
}
.mobile-search-form input::placeholder { color: var(--text-light); }
.mobile-search-form button {
  background: var(--green);
  border: none;
  padding: 0 1rem;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  flex-shrink: 0;
}

/* Mobile-only Start Selling CTA row, bordered to separate from menu above and categories below */
.mobile-sell-row {
  display: none;
  padding: 0.7rem 1rem;
  border-top: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  background: rgba(45,106,45,0.06);
}
.mobile-sell-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-sell-cta:active { background: #1f4f1f; }

/* Category pill scroll bar */
.mobile-cat-bar {
  padding: 0 0 0.65rem;
  border-top: 1px solid var(--border);
}
.mobile-cat-scroll {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.55rem 1rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-cat-scroll::-webkit-scrollbar { display: none; }
.mobile-cat-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.38rem 0.85rem;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-sub);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cat-pill:hover,
.mobile-cat-pill:active { background: var(--green); border-color: var(--green); color: white; }
.mobile-cat-pill--gold {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
  color: #8a6a1a;
}
.mobile-cat-pill--gold:hover,
.mobile-cat-pill--gold:active { background: var(--gold); border-color: var(--gold); color: #1a1208; }
.mobile-cat-pill--active { background: var(--navy); border-color: var(--navy); color: white; }

/* ── SWITCH: mobile vs desktop ── */
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-nav { display: block !important; }
  .mobile-sell-row { display: block; }

  /* iOS overflow fix */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
  }

  /* Hero — compact on mobile */
  .hero {
    min-height: 0 !important;
    padding: 1.8rem 0 !important;
  }
  .hero-inner {
    padding: 0 !important;
    max-width: 100% !important;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
    margin-bottom: 0.8rem !important;
  }
  .hero-sub { font-size: 0.85rem !important; margin-bottom: 1.2rem !important; }
  .hero-search-row { max-width: 100% !important; margin-bottom: 1rem !important; }
  .hero-btns { margin-bottom: 1.2rem !important; gap: 0.6rem !important; }
  .hero-trust { gap: 0.8rem !important; }
  .hero-trust-item { font-size: 0.68rem !important; }

  /* Listing grid — 2 cols on mobile */
  .listing-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.7rem !important;
  }

  /* Category grid — 3 cols */
  .cats-scroll {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
  }

  /* Promo strip — stack */
  .promo-strip-inner {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  .promo-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    padding: 0.6rem 0 !important;
  }
  .promo-item:last-child { border-bottom: none !important; }

  /* Steps — stack */
  .steps-grid { grid-template-columns: 1fr !important; }

  /* Reviews — single col */
  .reviews-grid { grid-template-columns: 1fr !important; }

  /* FAQ — single col */
  .faq-grid { grid-template-columns: 1fr !important; }

  /* Pricing — stack */
  .pricing-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Protection — stack */
  .protection-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Values — 2 cols */
  .values-grid { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }

  /* Stats — 2 cols */
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .stats-item { border-bottom: 1px solid rgba(255,255,255,0.07) !important; }

  /* Classics */
  .classics-inner { grid-template-columns: 1fr !important; }
  .classics-text { padding-right: 0 !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; }

  /* Container padding */
  .container { padding: 0 1rem !important; }

  /* Section padding tighter on mobile */
  section { padding: 2rem 0 !important; }
}

@media (max-width: 400px) {
  .values-grid { grid-template-columns: 1fr !important; }
  .listing-grid { gap: 0.5rem !important; }
  .cats-scroll { grid-template-columns: repeat(3, 1fr) !important; gap: 0.4rem !important; }
  .cat-photo { width: 44px !important; height: 44px !important; }
}

/* ══════════════════════════════════════════════
   WISHLIST + HEART BUTTON
   ══════════════════════════════════════════════ */

.heart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.38rem 0.7rem;
  cursor: pointer;
  color: var(--text-sub);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.18s;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.heart-btn:hover { border-color: #fca5a5; color: #dc2626; background: #fef2f2; }
.heart-btn--active { background: #fef2f2 !important; color: #dc2626 !important; border-color: #fca5a5 !important; }
.heart-btn--active svg { fill: currentColor; }

/* Card heart — absolute positioned */
.heart-btn--card {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.35rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* Listing page heart */
.heart-btn--listing {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.78rem;
}

/* Wishlist drawer */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100dvh;
  background: white;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}
.wishlist-drawer.open { transform: translateX(0); }

.wishlist-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  flex-shrink: 0;
}

.wishlist-count-badge {
  background: #dc2626;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}

.wishlist-drawer-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.wishlist-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  gap: 0.8rem;
  color: var(--text-sub);
  font-size: 0.85rem;
}

.wishlist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.wishlist-item:hover { background: var(--off-white); }

.wishlist-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-item-img img { width: 100%; height: 100%; object-fit: cover; }
.wishlist-item-img-ph { color: var(--text-light); }

.wishlist-item-info { flex: 1; min-width: 0; }
.wishlist-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wishlist-item-name:hover { color: var(--green); }
.wishlist-item-type { font-size: 0.68rem; color: var(--text-sub); margin-top: 0.1rem; }
.wishlist-item-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 0.2rem;
}

.wishlist-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 0.3rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  flex-shrink: 0;
}
.wishlist-item-remove:hover { color: #dc2626; }

/* ══════════════════════════════════════════════
   RETAIL PRICE DISPLAY
   ══════════════════════════════════════════════ */

.listing-retail-price {
  font-size: 0.82rem;
  color: var(--red);
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.listing-price--green {
  color: var(--green) !important;
  font-size: 2.6rem !important;
}

.lc-retail-price {
  font-size: 0.65rem;
  color: var(--red);
  text-decoration: line-through;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.listing-card-price--green {
  color: var(--green) !important;
  font-size: 1.2rem !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   SELLER RESPONSE BADGE
   ══════════════════════════════════════════════ */

.seller-response-badge { flex-shrink: 0; }

.resp-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.resp-badge--fast { background: rgba(45,106,45,0.1); color: var(--green); }
.resp-badge--good { background: rgba(13,27,42,0.07); color: var(--navy); }
.resp-badge--ok { background: rgba(201,168,76,0.1); color: #8a6a1a; }

/* ══════════════════════════════════════════════
   NETFLIX-STYLE RECOMMENDATION ROWS
   ══════════════════════════════════════════════ */

.recommend-section { margin-bottom: 2.5rem; }

.recommend-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  position: sticky;
  top: 0;
  background: var(--off-white);
  z-index: 2;
  padding: 0.5rem 0;
}

.recommend-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.recommend-viewall {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.recommend-viewall:hover { color: var(--green-accent); }

.recommend-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.recommend-track-wrap::-webkit-scrollbar { display: none; }

.recommend-track {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  padding-bottom: 0.5rem;
}

/* Recommendation card */
.rc-card {
  width: 160px;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}
.rc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(45,106,45,0.2); }

.rc-card-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rc-card-img-ph { color: var(--text-light); display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.rc-card-badge {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  background: rgba(13,27,42,0.75);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.rc-card-body { padding: 0.7rem; }
.rc-card-brand { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.15rem; }
.rc-card-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.2; margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc-retail { font-size: 0.62rem; color: var(--red); text-decoration: line-through; font-weight: 500; }
.rc-card-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; font-weight: 600; color: var(--green); }

@media (max-width: 768px) {
  .rc-card { width: 140px; }
  .recommend-header { top: 0; }
}

/* ══════════════════════════════════════════════
   MOBILE FILTER FAB + DRAWER
   ══════════════════════════════════════════════ */

.filter-fab {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(13,27,42,0.35);
  -webkit-tap-highlight-color: transparent;
}

.filter-fab-count {
  background: #dc2626;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.filter-drawer-overlay.open { opacity: 1; pointer-events: all; }

.filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  max-height: 85dvh;
  display: flex;
  flex-direction: column;
}
.filter-drawer.open { transform: translateY(0); }

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.filter-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.filter-drawer-group { margin-bottom: 0.8rem; }
.filter-drawer-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 0.35rem;
}

.filter-drawer-footer {
  display: flex;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}

@media (max-width: 768px) {
  .filter-fab { display: flex !important; }
  .shop-sidebar { display: none !important; }
  .shop-layout { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════
   CATEGORY PHOTO TILE GRID
   ══════════════════════════════════════════════ */

.cats-section {
  background: var(--off-white);
  padding: 4rem 0;
}

.cats-section .container {
  padding: 0 3.5rem;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* Base tile */
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  text-decoration: none;
  background: #1a1a2e;
  cursor: pointer;
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s;
  filter: brightness(0.82);
}

.cat-tile:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

/* Gradient overlay */
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.78) 0%, rgba(13,27,42,0.1) 55%, transparent 100%);
  pointer-events: none;
}

.cat-tile-overlay--gold {
  background: linear-gradient(to top, rgba(100,72,0,0.82) 0%, rgba(100,72,0,0.1) 55%, transparent 100%);
}

/* Label */
.cat-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.7rem 0.9rem;
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  pointer-events: none;
}

.cat-tile-label--gold {
  color: #f5d980;
}

/* Size variants */
.cat-tile--lg  { aspect-ratio: 4 / 3.2; }
.cat-tile--md  { aspect-ratio: 4 / 3.4; }
.cat-tile--sm  { aspect-ratio: 4 / 3; }

/* Classics tile spans 2 columns */
.cat-tile--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3.4;
}

/* Gold border glow on classics */
.cat-tile--gold {
  outline: 1.5px solid rgba(201,168,76,0.45);
  outline-offset: -1.5px;
}
.cat-tile--gold:hover {
  outline-color: rgba(201,168,76,0.9);
}

/* ── MOBILE: 2-col grid ── */
@media (max-width: 768px) {
  .cats-section .container {
    padding: 0 1.25rem;
  }

  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  /* Classics stays wide on mobile too */
  .cat-tile--wide { grid-column: span 2; aspect-ratio: 8 / 3.6; }

  .cat-tile--lg  { aspect-ratio: 1 / 1; }
  .cat-tile--md  { aspect-ratio: 1 / 1; }
  .cat-tile--sm  { aspect-ratio: 1 / 1; }

  .cat-tile-label {
    font-size: 0.68rem;
    padding: 0.55rem 0.7rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 400px) {
  .cats-grid { gap: 0.4rem; }
  .cat-tile-label { font-size: 0.6rem; padding: 0.45rem 0.55rem; }
}

/* ══════════════════════════════════════════════
   HERO — COMPACT PRODUCT-FIRST
   ══════════════════════════════════════════════ */

.hero--compact {
  padding: 2.2rem 0 2rem !important;
  min-height: 0 !important;
}

.hero-inner--center {
  max-width: 620px !important;
  text-align: center;
  margin: 0 auto;
}

.hero-inner--center h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem) !important;
  margin-bottom: 0 !important;
}

/* Quick category pills under hero search */
.hero-cats-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hcq-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.hcq-pill:hover { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.3); }
.hcq-pill--all { color: var(--green-accent); border-color: rgba(76,175,80,0.3); background: rgba(76,175,80,0.08); }
.hcq-pill--all:hover { background: rgba(76,175,80,0.18); }

/* ══════════════════════════════════════════════
   LISTING GRID — 4 col desktop, 3 col tablet, 2 mobile
   ══════════════════════════════════════════════ */

/* Global listing grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1100px) {
  .listing-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  .listing-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.6rem !important; }
}

/* iOS — 3 across */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .listing-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.5rem !important; }
  }
}

@media (max-width: 500px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
}

/* Shop page — same grid rules */
#shopGrid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  #shopGrid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  #shopGrid { grid-template-columns: repeat(3, 1fr) !important; gap: 0.6rem !important; }
}

@media (max-width: 500px) {
  #shopGrid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
}

/* ══════════════════════════════════════════════
   LISTING CARD — BRAND PILL
   ══════════════════════════════════════════════ */

.listing-card-brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  background: rgba(13,27,42,0.06);
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 50px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* tighter card body on small screens */
@media (max-width: 768px) {
  .listing-card-body { padding: 0.65rem 0.65rem 0.7rem; }
  .listing-card-name { font-size: 0.82rem; }
  .listing-card-seller { font-size: 0.55rem; }
  .listing-card-type { font-size: 0.65rem; margin-bottom: 0.3rem; }
  .listing-card-brand-pill { font-size: 0.52rem; padding: 0.14rem 0.4rem; margin-bottom: 0.35rem; }
}

/* ══════════════════════════════════════════════
   PHOTO DOTS (replaces photo counter)
   ══════════════════════════════════════════════ */

.photo-dots {
  position: absolute;
  bottom: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: center;
  pointer-events: none;
}

.photo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.photo-dot--active {
  background: white;
  transform: scale(1.25);
}

/* Hide old photo counter if it ever appears */
.photo-counter { display: none !important; }


/* ══════════════════════════════════════════════
   LISTING CARD — PRICE-FIRST LAYOUT
   ══════════════════════════════════════════════ */

/* Price is now the FIRST thing — large and green */
.listing-card-price--hero {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}

/* Model name — below price, smaller */
.listing-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Condition dot + label row */
.listing-card-condition-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.cond-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Condition dot colors matching the 1-10 scale */
.cond-dot--new          { background: #16a34a; }
.cond-dot--like-new     { background: #22c55e; }
.cond-dot--excellent    { background: #2d8f2d; }
.cond-dot--good         { background: #d97706; }
.cond-dot--average      { background: #ea580c; }
.cond-dot--below-average{ background: #dc2626; }

.listing-card-cond-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

/* Mobile price size */
@media (max-width: 768px) {
  .listing-card-price--hero { font-size: 1.25rem; }
  .listing-card-name { font-size: 0.78rem; }
  .listing-card-body { padding: 0.55rem 0.6rem 0.65rem; }
  .listing-card-brand-pill { margin-top: 0.25rem; }
}

@media (max-width: 400px) {
  .listing-card-price--hero { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════
   DUAL CTA — MOBILE STACK
   ══════════════════════════════════════════════ */

@media (max-width: 640px) {
  .final-cta > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 1rem !important;
  }
}

/* ══════════════════════════════════════════════
   HERO — hide eyebrow line cleanly
   ══════════════════════════════════════════════ */

.hero-inner--center h1 {
  margin-top: 0 !important;
}


/* ══════════════════════════════════════════════
   PAGE NAV TABS — above shop by category
   ══════════════════════════════════════════════ */

.page-nav-tabs {
  background: white;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.page-nav-tabs-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.page-nav-tabs-inner::-webkit-scrollbar { display: none; }

.page-nav-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.page-nav-tab:hover {
  color: var(--navy);
  background: var(--off-white);
  border-bottom-color: var(--navy);
}

.page-nav-tab--gold {
  color: #8a6a1a;
}
.page-nav-tab--gold:hover {
  border-bottom-color: var(--gold);
  color: #6b500e;
  background: rgba(201,168,76,0.05);
}

/* Active state — matches current page */
.page-nav-tab--active {
  color: var(--navy);
  border-bottom-color: var(--green);
}

@media (max-width: 768px) {
  .page-nav-tab {
    padding: 0.75rem 1.1rem;
    font-size: 0.66rem;
  }
}

/* ══════════════════════════════════════════════
   DESKTOP NAV — rectangular search, no links
   ══════════════════════════════════════════════ */

.nav-search--rect {
  border-radius: 0 !important;
  max-width: 520px !important;
  border: 1.5px solid var(--border) !important;
  background: white !important;
}
.nav-search--rect input { font-size: 0.85rem !important; }
.nav-search--rect button {
  background: var(--navy) !important;
  color: white !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 0 !important;
  margin: -0.5rem -0.8rem -0.5rem 0.8rem !important;
  height: calc(100% + 1rem) !important;
}
.nav-links { display: none !important; }

/* ══════════════════════════════════════════════
   PAGE NAV TABS — full width, no container wrap
   ══════════════════════════════════════════════ */

.page-nav-tabs {
  background: white;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.page-nav-tabs-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem;
}
.page-nav-tabs-inner::-webkit-scrollbar { display: none; }

.page-nav-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.page-nav-tab:hover { color: var(--navy); background: var(--off-white); border-bottom-color: var(--navy); }
.page-nav-tab--gold { color: #8a6a1a; }
.page-nav-tab--gold:hover { border-bottom-color: var(--gold); color: #6b500e; background: rgba(201,168,76,0.05); }
.page-nav-tab--deals { color: #dc2626; }
.page-nav-tab--deals:hover { border-bottom-color: #dc2626; background: #fef2f2; }
.page-nav-tab--active { color: var(--navy); border-bottom-color: var(--green); }

@media (max-width: 768px) {
  .page-nav-tab { padding: 0.7rem 1rem; font-size: 0.62rem; }
}

/* ══════════════════════════════════════════════
   CATEGORY GRID — 4 column compact
   ══════════════════════════════════════════════ */

.cats-grid--4col {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0.6rem !important;
  margin-top: 1.5rem !important;
}

.cat-tile--compact {
  aspect-ratio: 4 / 3 !important;
}

@media (max-width: 1024px) {
  .cats-grid--4col { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  .cats-grid--4col { grid-template-columns: repeat(3, 1fr) !important; gap: 0.4rem !important; }
  .cat-tile--compact { aspect-ratio: 1 / 1 !important; }
}

@media (max-width: 480px) {
  .cats-grid--4col { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ══════════════════════════════════════════════
   LISTING CARD — PHOTO SWIPE WITH ARROWS
   ══════════════════════════════════════════════ */

.card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.card-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.card-slide--active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

/* Arrow buttons — hidden by default, show on hover (desktop) */
.card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}
.card-arrow--prev { left: 0.5rem; }
.card-arrow--next { right: 0.5rem; }
.card-arrow:hover { background: white; }

/* Desktop hover — show arrows */
@media (hover: hover) {
  .listing-card:hover .card-arrow { opacity: 1; }
}

/* Touch — hide arrows completely, swipe handles navigation */
@media (hover: none) {
  .card-arrow { display: none; }
}

/* Photo dots on cards */
.card-photo-dots {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}
.card-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.card-dot--active {
  background: white;
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════
   LISTING DETAIL — PHOTO COUNTER
   ══════════════════════════════════════════════ */

.gallery-counter {
  position: absolute;
  bottom: 0.6rem;
  right: 0.7rem;
  background: rgba(13,27,42,0.65);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  pointer-events: none;
  z-index: 10;
}


/* ══════════════════════════════════════════════
   PAGE NAV TABS — navy background
   ══════════════════════════════════════════════ */

.page-nav-tabs {
  background: var(--navy) !important;
  border-bottom: none !important;
}

.page-nav-tab {
  color: rgba(255,255,255,0.6) !important;
  border-bottom-color: transparent !important;
}

.page-nav-tab:hover {
  color: white !important;
  background: rgba(255,255,255,0.08) !important;
  border-bottom-color: rgba(255,255,255,0.3) !important;
}

.page-nav-tab--gold {
  color: #f5d870 !important;
}
.page-nav-tab--gold:hover {
  color: #fde68a !important;
  background: rgba(201,168,76,0.12) !important;
  border-bottom-color: var(--gold) !important;
}

.page-nav-tab--new {
  color: #86efac !important;
}
.page-nav-tab--new:hover {
  color: #4ade80 !important;
  background: rgba(74,222,128,0.08) !important;
  border-bottom-color: #4ade80 !important;
}

.page-nav-tab--active {
  color: white !important;
  border-bottom-color: var(--green) !important;
}


/* ══════════════════════════════════════════════
   LISTING CARD — TALLER IMAGE RATIO
   ══════════════════════════════════════════════ */

.listing-card-img {
  aspect-ratio: 3 / 4 !important;
  overflow: visible;
  position: relative;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════
   CARD ADD-TO-CART BAR — full width rectangular
   ══════════════════════════════════════════════ */

.card-atc-bar {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--navy);
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.card-atc-bar:hover { background: #162033; }
.card-atc-bar--sold {
  background: var(--text-light);
  cursor: default;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ══════════════════════════════════════════════
   HOMEPAGE CARD — ADD TO CART + VIEW BUTTONS
   ══════════════════════════════════════════════ */

.hp-card-btns {
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.hp-card-btn {
  padding: 0.6rem 0.8rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-card-btn--cart {
  background: var(--navy);
  color: white;
  flex: 1;
}
.hp-card-btn--cart:hover { background: #162033; }

.hp-card-btn--view {
  background: var(--off-white);
  color: var(--green);
  border-left: 1px solid var(--border);
  padding: 0.6rem 1rem;
  white-space: nowrap;
}
.hp-card-btn--view:hover { background: #e8f0e8; }

/* ══════════════════════════════════════════════
   DESCRIPTION — READ MORE COLLAPSE
   ══════════════════════════════════════════════ */

.listing-desc-preview {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
  white-space: pre-line;
}

.listing-desc-full {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
  white-space: pre-line;
  margin-top: 0.5rem;
}

.desc-read-more {
  background: none;
  border: none;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.4rem 0;
  display: inline-block;
  margin-top: 0.3rem;
  font-family: inherit;
  transition: color 0.15s;
}
.desc-read-more:hover { color: var(--green-accent); }

/* ══════════════════════════════════════════════
   NAV TABS — NAVY BACKGROUND, GREEN LETTERS
   ══════════════════════════════════════════════ */

.page-nav-tabs {
  background: var(--navy) !important;
}

.page-nav-tab {
  color: #2d8f2d !important;
}

.page-nav-tab:hover {
  color: #4caf50 !important;
  background: rgba(45,143,45,0.08) !important;
  border-bottom-color: #2d8f2d !important;
}

.page-nav-tab--gold {
  color: #f5d870 !important;
}
.page-nav-tab--gold:hover {
  color: #fde68a !important;
  background: rgba(201,168,76,0.1) !important;
  border-bottom-color: var(--gold) !important;
}

.page-nav-tab--new {
  color: #2d8f2d !important;
}
.page-nav-tab--new:hover {
  color: #4caf50 !important;
}


/* ══════════════════════════════════════════════
   LIVE NOW CARDS — Price | Add to Cart | View
   ══════════════════════════════════════════════ */

.lnf-row {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  min-height: 44px;
}

.lnf-price {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

.lnf-atc {
  flex: 1;
  background: var(--navy);
  color: white;
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.55rem 0.5rem;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.lnf-atc:hover { background: #162033; }

.lnf-view {
  display: flex;
  align-items: center;
  padding: 0 0.65rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  text-decoration: none;
  border-left: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--off-white);
  transition: background 0.15s;
}
.lnf-view:hover { background: #e8f0e8; }

.lnf-row--sold {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  min-height: 44px;
  padding: 0 0.6rem;
  gap: 0.5rem;
}
.lnf-sold {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .lnf-price { font-size: 1rem; padding: 0 0.45rem; }
  .lnf-atc   { font-size: 0.6rem; letter-spacing: 0.06em; }
  .lnf-view  { font-size: 0.58rem; padding: 0 0.45rem; }
}

/* ══════════════════════════════════════════════
   #1 — NAV TABS iOS OVERFLOW FIX
   ══════════════════════════════════════════════ */

.page-nav-tabs {
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.page-nav-tabs-inner {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-x: contain !important;
  box-sizing: border-box !important;
  /* prevent iOS rubber-band from pushing tabs off screen */
  touch-action: pan-x !important;
}

/* ══════════════════════════════════════════════
   #2 & #3 — LIVE NOW CARDS: PRICE ABOVE ATC
   ══════════════════════════════════════════════ */

/* Price row — its own line above the button row */
.lnf-price-row {
  padding: 0.75rem 0.9rem 0.6rem;
  border-top: 1px solid var(--border);
}

.lnf-price {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--green) !important;
  line-height: 1 !important;
  display: block !important;
}

/* Button row — thinner/tighter than before */
.lnf-row {
  display: flex !important;
  align-items: stretch !important;
  border-top: none !important;
  min-height: 36px !important;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
  overflow: hidden !important;
}

/* Add to Cart — slightly slimmer */
.lnf-atc {
  flex: 1 !important;
  background: var(--navy) !important;
  color: white !important;
  border: none !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  padding: 0.42rem 0.4rem !important;
  transition: background 0.15s !important;
  text-align: center !important;
  -webkit-tap-highlight-color: transparent !important;
}
.lnf-atc:hover { background: #162033 !important; }

.lnf-view {
  display: flex !important;
  align-items: center !important;
  padding: 0 0.6rem !important;
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: var(--green) !important;
  text-decoration: none !important;
  border-left: 1px solid var(--border) !important;
  white-space: nowrap !important;
  background: var(--off-white) !important;
  flex-shrink: 0 !important;
}
.lnf-view:hover { background: #e8f0e8 !important; }

@media (max-width: 768px) {
  .lnf-price { font-size: 1.65rem !important; }
  .lnf-price-row { padding: 0.6rem 0.7rem 0.5rem; }
  .lnf-atc { font-size: 0.55rem !important; letter-spacing: 0.06em !important; }
  .lnf-view { padding: 0 0.45rem !important; font-size: 0.55rem !important; }
}

/* ══════════════════════════════════════════════
   #5 — GOLF CART TOAST NOTIFICATION
   ══════════════════════════════════════════════ */

.golf-cart-toast {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  transition: bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: min(360px, 92vw);
  pointer-events: none;
}

.golf-cart-toast.gct-show {
  bottom: 1.5rem;
  pointer-events: all;
}

.gct-inner {
  background: var(--navy);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.gct-icon {
  flex-shrink: 0;
  color: #c9a84c;
  display: flex;
  align-items: center;
}

.gct-text { flex: 1; min-width: 0; }

.gct-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

.gct-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gct-btn {
  flex-shrink: 0;
  background: #c9a84c;
  color: #0d1b2a;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.gct-btn:hover { background: #b8943e; }


/* ══════════════════════════════════════════════
   HOMEPAGE CARD — PHOTO SWIPE
   ══════════════════════════════════════════════ */

.hp-swipe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hp-swipe-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hp-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hp-slide--active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}


/* ══════════════════════════════════════════════
   NAV TABS — AUTO-SCROLL MARQUEE, PAUSE ON HOVER
   ══════════════════════════════════════════════ */

@keyframes tab-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.page-nav-tabs {
  overflow: hidden !important;
}

.page-nav-tabs-inner {
  display: flex !important;
  width: max-content !important;
  overflow: visible !important;
  animation: tab-scroll 22s linear infinite !important;
  -webkit-overflow-scrolling: unset !important;
  padding: 0 !important;
}

/* Pause scroll on hover so user can click */
.page-nav-tabs:hover .page-nav-tabs-inner {
  animation-play-state: paused !important;
}


/* ══════════════════════════════════════════════
   NAV TABS — FINAL OVERRIDE: WHITE TEXT ONLY
   Classics stays gold. Everything else white.
   ══════════════════════════════════════════════ */

.page-nav-tabs { background: var(--navy) !important; }

.page-nav-tab                { color: white !important; }
.page-nav-tab:hover          { color: white !important; background: rgba(255,255,255,0.1) !important; border-bottom-color: white !important; }
.page-nav-tab--active        { color: white !important; border-bottom-color: var(--green) !important; }
.page-nav-tab--new           { color: white !important; }
.page-nav-tab--new:hover     { color: white !important; }
.page-nav-tab--deals         { color: white !important; }
.page-nav-tab--deals:hover   { color: white !important; }

/* Classics stays gold — must come after the white overrides */
.page-nav-tab--gold          { color: #f5d870 !important; }
.page-nav-tab--gold:hover    { color: #fde68a !important; background: rgba(201,168,76,0.1) !important; border-bottom-color: #f5d870 !important; }


/* ══ NAV TABS — tighter spacing in marquee ══ */
.page-nav-tab {
  padding: 0.85rem 0.75rem !important;
  letter-spacing: 0.06em !important;
}
@media (max-width: 768px) {
  .page-nav-tab { padding: 0.7rem 0.6rem !important; }
}

/* ══ NAV TAB SEPARATORS + EVEN SPACING ══ */
.tab-sep {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.9rem;
  padding: 0 0.1rem;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
}
.tab-sep--gap { padding: 0 0.6rem; }

/* Override padding to be tight and uniform */
.page-nav-tab {
  padding: 0.85rem 0.55rem !important;
  letter-spacing: 0.07em !important;
}

/* ══════════════════════════════════════════════
   HERO — OPTION D (Your Game Deserves Better)
   ══════════════════════════════════════════════ */

.hero--option-d {
  background: var(--navy);
  padding: 2.5rem 0 2rem;
  position: relative;
}

.hero-d-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 680px;
  margin: 0 auto;
}

.hero-d-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.6rem;
}

.hero-d-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-d-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-d-search {
  display: flex;
  overflow: hidden;
  background: white;
}

.hero-d-search input {
  flex: 1;
  border: none;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  color: var(--text);
  background: white;
  min-width: 0;
}

.hero-d-search input::placeholder { color: var(--text-light); }

.hero-d-search button {
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.85rem 1.4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hero-d-search button:hover { background: #162033; }

.hero-d-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hcq-pill--gold {
  color: #c9a84c !important;
  border-color: rgba(201,168,76,0.3) !important;
  background: rgba(201,168,76,0.08) !important;
}
.hcq-pill--gold:hover {
  background: rgba(201,168,76,0.18) !important;
  color: #f5d870 !important;
}

.hero-d-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.hero-d-stat {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.hero-d-stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  line-height: 1;
}

.hero-d-stat-num--gold { color: #c9a84c; }
.hero-d-stat-num--green {
  color: #4caf50;
  font-size: 1.3rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-d-stat-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-d-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-d-h1, .hero-d-h2 { font-size: 1.9rem; }
  .hero-d-stat-num { font-size: 1.5rem; }
}

@media (max-width: 400px) {
  .hero-d-h1, .hero-d-h2 { font-size: 1.6rem; }
}


/* ══════════════════════════════════════════════
   HERO OPTION D — CONTENT VISIBILITY FIX
   ══════════════════════════════════════════════ */

.hero--option-d {
  overflow: visible !important;
}

.hero--option-d .hero-bg-img {
  display: none !important;
}

.hero--option-d .container {
  position: relative !important;
  z-index: 2 !important;
}

.hero-d-inner {
  position: relative !important;
  z-index: 2 !important;
  color: white !important;
}

.hero-d-h1, .hero-d-h2, .hero-d-eyebrow, .hero-d-stat-lbl {
  position: relative !important;
  z-index: 2 !important;
}


/* ══════════════════════════════════════════════
   SELL YOUR CLUBS MODAL — REDESIGNED
   ══════════════════════════════════════════════ */

.sell-modal {
  background: white;
  border-radius: 16px;
  width: min(560px, 94vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  margin: auto;
}

.sell-modal-header {
  background: var(--navy);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.sell-modal-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.3rem;
}

.sell-modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.sell-modal-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.sell-modal-close:hover { background: rgba(255,255,255,0.2); color: white; }

.sell-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.6rem;
  -webkit-overflow-scrolling: touch;
}

.sell-modal-sub {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.sell-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sell-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.sell-form-group--full { grid-column: 1 / -1; }

.sell-form-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
}

.sell-required { color: var(--green); }

.sell-form-input,
.sell-form-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.sell-form-input:focus,
.sell-form-select:focus {
  border-color: var(--navy);
}

.sell-form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.sell-form-msg {
  font-size: 0.78rem;
  font-weight: 600;
  min-height: 1.2em;
  margin-top: 0.8rem;
}
.sell-form-msg--error { color: var(--red); }
.sell-form-msg--success { color: var(--green); }

.sell-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.6rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--off-white);
}

.sell-btn-cancel {
  flex: 1;
  padding: 0.75rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.sell-btn-cancel:hover { border-color: var(--navy); color: var(--navy); }

.sell-btn-submit {
  flex: 2;
  padding: 0.75rem;
  background: var(--navy);
  border: none;
  border-radius: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: background 0.15s;
}
.sell-btn-submit:hover { background: #162033; }

/* Thank you state */
.sell-thankyou {
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.sell-thankyou-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sell-thankyou-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.sell-thankyou-msg {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 340px;
}

@media (max-width: 540px) {
  .sell-form-grid { grid-template-columns: 1fr; }
  .sell-form-group--full { grid-column: 1; }
  .sell-modal-body { padding: 1.2rem; }
  .sell-modal-header { padding: 1.2rem; }
  .sell-modal-footer { padding: 0.8rem 1.2rem; }
}




/* ══════════════════════════════════════════════
   NAV TABS — STATIC CENTERED ROWS (FINAL)
   ══════════════════════════════════════════════ */

.page-nav-tabs {
  background: var(--navy) !important;
  overflow: visible !important;
  width: 100% !important;
  padding: 0.6rem 0 !important;
}

.page-nav-tabs-inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  animation: none !important;
  -webkit-animation: none !important;
  transform: none !important;
  padding: 0 1rem !important;
  gap: 0 !important;
}

.page-nav-tab {
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  color: white !important;
  text-decoration: none !important;
  padding: 0.55rem 1rem !important;
  white-space: nowrap !important;
  transition: color 0.15s !important;
  border-bottom: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.page-nav-tab:hover {
  color: rgba(255,255,255,0.65) !important;
  background: none !important;
  border-bottom: none !important;
}

.page-nav-tab--gold        { color: #f5d870 !important; }
.page-nav-tab--gold:hover  { color: #c9a84c !important; }
.page-nav-tab--new         { color: white !important; }

.tab-sep {
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.85rem !important;
  padding: 0 0.1rem !important;
  display: inline-flex !important;
  align-items: center !important;
  pointer-events: none !important;
  user-select: none !important;
}

@media (max-width: 768px) {
  .page-nav-tab { font-size: 0.82rem !important; padding: 0.45rem 0.75rem !important; }
}

@media (max-width: 480px) {
  .page-nav-tab { font-size: 0.75rem !important; padding: 0.4rem 0.6rem !important; }
}


/* ══ NAV TABS — slightly smaller font ══ */
.page-nav-tab {
  font-size: 0.78rem !important;
  padding: 0.5rem 0.85rem !important;
}
@media (max-width: 768px) {
  .page-nav-tab { font-size: 0.68rem !important; padding: 0.4rem 0.65rem !important; }
}

/* ══════════════════════════════════════════════
   NAV DROPDOWN MENUS
   ══════════════════════════════════════════════ */

.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: white;
  padding: 0.5rem 0.85rem;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s;
}
.nav-dropdown-btn:hover { color: rgba(255,255,255,0.65); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 200px;
  padding: 0.5rem 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* Condition dots in dropdown */
.nav-dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-dd-dot--new       { background: #16a34a; }
.nav-dd-dot--likenew   { background: #22c55e; }
.nav-dd-dot--excellent { background: #2d8f2d; }
.nav-dd-dot--good      { background: #d97706; }
.nav-dd-dot--average   { background: #ea580c; }

/* Mobile — tap to open */
@media (max-width: 768px) {
  .nav-dropdown {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: auto;
    transform: none;
    width: auto;
    min-width: unset;
  }
  .nav-dropdown-wrap.open .nav-dropdown {
    transform: none;
  }
}


/* ══════════════════════════════════════════════
   DROPDOWN — iOS FIX
   ══════════════════════════════════════════════ */

/* Remove hover-based opening entirely — use JS .open class only */
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(-50%) translateY(-4px) !important;
}

/* Only JS-triggered .open shows the dropdown */
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: translateX(-50%) translateY(0) !important;
  display: block !important;
  visibility: visible !important;
}

/* iOS specific — fixed positioning to escape any overflow:hidden parents */
@supports (-webkit-touch-callout: none) {
  .nav-dropdown {
    position: fixed !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 220px !important;
    z-index: 9999 !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav-dropdown-wrap.open .nav-dropdown {
    transform: translateX(-50%) !important;
  }
}


/* ══════════════════════════════════════════════
   DROPDOWN — CLEAN REBUILD
   ══════════════════════════════════════════════ */

.nav-dropdown-wrap { position: static; display: inline-flex; align-items: center; }

.nav-dropdown {
  position: fixed;
  top: 0; left: 0;
  width: 200px;
  background: #0d1b2a;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid #2d6a2d;
  border-radius: 0 0 10px 10px;
  padding: 0.3rem 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: opacity 0.15s ease;
  transform: none !important;
  overflow: hidden;
}

.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1 !important;
  pointer-events: all !important;
  transform: none !important;
  display: block !important;
  visibility: visible !important;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.07); color: white; }

.nav-dd-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-dd-dot--new       { background: #16a34a; }
.nav-dd-dot--likenew   { background: #22c55e; }
.nav-dd-dot--excellent { background: #2d8f2d; }
.nav-dd-dot--good      { background: #d97706; }
.nav-dd-dot--average   { background: #ea580c; }


/* ══════════════════════════════════════════════
   DROPDOWN — FINAL CORRECT APPROACH
   ══════════════════════════════════════════════ */

/* Tab bar must allow overflow so dropdown shows */
.page-nav-tabs {
  position: relative !important;
  overflow: visible !important;
  z-index: 100 !important;
}

.page-nav-tabs-inner {
  position: relative !important;
  overflow: visible !important;
}

.nav-dropdown-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Dropdown anchored BELOW its parent button */
.nav-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 190px !important;
  background: #0d1b2a !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-top: 2px solid #2d6a2d !important;
  border-radius: 0 0 10px 10px !important;
  padding: 0.3rem 0 !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
  transform: none !important;
  transition: opacity 0.15s ease !important;
}

.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1 !important;
  pointer-events: all !important;
}

.nav-dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  padding: 0.45rem 1rem !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.1s, color 0.1s !important;
}
.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.07) !important;
  color: white !important;
}



/* ══ Condition dropdown — always anchors right so it stays on screen ══ */
.nav-dropdown-wrap--right .nav-dropdown {
  left: auto !important;
  right: 0 !important;
}

/* ══════════════════════════════════════════════
   MOBILE CAT BAR — pipes instead of ovals
   ══════════════════════════════════════════════ */

.mobile-cat-scroll {
  gap: 0 !important;
  padding: 0.5rem 1rem 0 !important;
  align-items: center !important;
}

.mobile-cat-pill {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.3rem 0.7rem !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: var(--text-sub) !important;
  position: relative !important;
  box-shadow: none !important;
}

.mobile-cat-pill:hover,
.mobile-cat-pill:active {
  background: none !important;
  border: none !important;
  color: var(--green) !important;
}

.mobile-cat-pill--active {
  background: none !important;
  border: none !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.mobile-cat-pill--gold {
  background: none !important;
  border: none !important;
  color: #8a6a1a !important;
}

/* Pipe separator between pills */
.mobile-cat-pill + .mobile-cat-pill::before {
  content: '|';
  position: absolute;
  left: 0;
  color: var(--border);
  font-weight: 300;
  font-size: 0.75rem;
}


/* ══════════════════════════════════════════════
   OBJECTION BUSTERS — HOMEPAGE
   ══════════════════════════════════════════════ */

.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.obj-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.obj-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(45,106,45,0.2);
}

.obj-q {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.obj-a {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .obj-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .obj-grid { grid-template-columns: 1fr; }
}


/* ══ Hero — light green both lines ══ */
.hero-d-h1 {
  color: #4caf50 !important;
}
.hero-d-h2 {
  color: #4caf50 !important;
  font-style: normal !important;
}

/* ══ HOMEPAGE FLIP CARDS ══ */
.hp-fc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.hp-fc { perspective: 900px; height: 180px; cursor: pointer; }
.hp-fc-inner { width:100%;height:100%;position:relative;transform-style:preserve-3d;transition:transform 0.45s ease; }
.hp-fc.flipped .hp-fc-inner { transform: rotateY(180deg); }
@media (hover: hover) and (pointer: fine) { .hp-fc:hover .hp-fc-inner { transform: rotateY(180deg); } }
.hp-fc-front,.hp-fc-back { position:absolute;inset:0;backface-visibility:hidden;-webkit-backface-visibility:hidden;border-radius:var(--radius-lg);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.2rem 1rem;text-align:center;gap:0.6rem; }
.hp-fc-front { background:white;border:1px solid var(--border); }
.hp-fc-front:hover { box-shadow:var(--shadow-md); }
.hp-fc-icon { font-size:1.8rem;flex-shrink:0; }
.hp-fc-q { font-size:0.78rem;font-weight:600;color:var(--text);line-height:1.4;font-family:'Josefin Sans',sans-serif; }
.hp-fc-back { background:var(--navy);border:1px solid rgba(201,168,76,0.3);transform:rotateY(180deg); }
.hp-fc-tag { font-family:'Josefin Sans',sans-serif;font-size:0.6rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:#c9a84c; }
.hp-fc-a { font-size:0.75rem;color:rgba(255,255,255,0.82);line-height:1.65;font-family:'Josefin Sans',sans-serif; }
@media (max-width:768px) { .hp-fc-grid { grid-template-columns:1fr; } .hp-fc { height:150px; } .hp-fc-inner { height:150px; } .hp-fc-front,.hp-fc-back { height:150px; } }
