/* ==========================================================================
   Gem City Sports — Theme Stylesheet
   Author: The Free Website Guys
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------
   1. ROOT TOKENS (single source of truth — mirrors HSL tokens from source)
   -------------------------------------------------------------------- */
:root {
  --background: #fbfaf8;
  --foreground: #0f1929;
  --card: #ffffff;
  --card-foreground: #0f1929;
  --primary: #f0ac0f;
  --primary-foreground: #0f1929;
  --secondary: #f2f4f8;
  --secondary-foreground: #152237;
  --muted: #eceff3;
  --muted-foreground: #535d6e;
  --accent: #f9f0dc;
  --accent-foreground: #0f1929;
  --destructive: #ef4343;
  --destructive-foreground: #ffffff;
  --border: #dbdfe6;
  --input: #dbdfe6;
  --ring: #0f1929;

  --radius: 0.5rem;
  --card-radius: 0.5rem;

  --font-display: 'Archivo Black', 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-soft: 0 4px 20px -4px rgba(15, 25, 41, 0.08);
  --shadow-elevated: 0 12px 40px -8px rgba(15, 25, 41, 0.18);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Brand-specific tokens */
  --gc-navy: #0f1929;
  --gc-navy-deep: #090f1b;
  --gc-gold: #f0ac0f;
  --gc-cream: #fbfaf8;

  --color-primary: var(--primary);
  --color-button-text: var(--primary-foreground);
  --color-surface: var(--secondary);
  --color-border: var(--border);

  --btn-radius: 0.375rem;
  --btn-height: 3rem;
  --btn-padding: 0 2.5rem;
  --btn-font-size: 0.7rem;
  --btn-font-weight: 500;
  --btn-letter-spacing: 0.2em;
  --btn-text-transform: uppercase;
  --btn-icon-padding: 0.6rem;

  --header-height: 80px;
  --logo-height: 44px;
  --checkout-gap: 1.5rem;
}

/* --------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.pd-main-img):not(.pd-thumb-img):not(.gallery-img):not(.parallax-bg-img):not(.contact-bg-img):not(.site-logo-img):not(.footer-logo-link img):not(.team-logo-item img):not(.stats-bg-video) {
  max-width: 100%;
  height: auto;
}
.cover-img, .hero-bg-img, .product-card-img, .pd-main-img, .pd-thumb-img, .gallery-img, .parallax-bg-img, .contact-bg-img {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: inherit;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

p { margin: 0; }
dl, dt, dd { margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

[hidden], .is-hidden { display: none !important; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------- */
.container-wide {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide, .container-narrow { padding: 0 2rem; }
}

.text-display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; }
.text-body { font-family: var(--font-body); font-weight: 300; }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.card-hover { transition: all 0.7s var(--transition-smooth); }
.card-hover:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }

.image-zoom { transition: transform 0.7s ease-out; }
.image-zoom:hover { transform: scale(1.05); }

.btn-primary,
a.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: var(--primary);
  color: var(--primary-foreground);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
  border: none;
  border-radius: var(--btn-radius);
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.btn-primary:hover, a.btn-primary:hover { background-color: var(--primary); opacity: 0.9; }

.btn-outline,
a.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--foreground);
  background: transparent;
  color: var(--foreground);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: var(--btn-radius);
}
.btn-outline:hover, a.btn-outline:hover { background: var(--foreground); color: var(--background); }

.sold-out-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
  background-color: var(--foreground);
  color: var(--background);
  z-index: 3;
}
.new-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em;
  background-color: var(--primary);
  color: var(--primary-foreground);
  z-index: 3;
}

.category-chip {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  border-radius: 0;
}
.category-chip-active { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.category-chip-inactive:hover { border-color: var(--foreground); }

.gc-band-navy { background-color: var(--gc-navy); color: var(--gc-cream); }
.gc-band-navy-deep { background-color: var(--gc-navy-deep); color: var(--gc-cream); }
.text-gc-gold { color: var(--gc-gold); }
.bg-gc-gold { background-color: var(--gc-gold); }
.text-gc-navy { color: var(--gc-navy); }
.bg-gc-navy { background-color: var(--gc-navy); }
.bg-gc-navy-deep { background-color: var(--gc-navy-deep); }
.text-gc-cream { color: var(--gc-cream); }

/* --------------------------------------------------------------------
   4. ANIMATIONS
   -------------------------------------------------------------------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.25); } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.animate-fade-in { opacity: 0; animation: fadeIn 0.8s var(--transition-smooth) forwards; }
.animate-slide-up { opacity: 0; animation: slideUp 0.8s var(--transition-smooth) forwards; }
.animate-slide-down { animation: slideDown 0.6s var(--transition-smooth) forwards; }

.animate-hero-zoom {
  animation: heroZoom 18s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

.marquee-track { animation: marqueeScroll 40s linear infinite; will-change: transform; }
.marquee-track:hover { animation-play-state: paused; }

/* Scroll reveal (in-view) */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.reveal-item.reveal-fade { transform: none; }
.reveal-item.reveal-fade.is-visible { transform: none; }

/* Customizer preview fallback — never hide content in the editor */
body.is-customizer .reveal-item,
.no-js .reveal-item {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in, .animate-slide-up, .animate-slide-down, .animate-hero-zoom, .marquee-track, .reveal-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: rgba(251, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  transition: all 0.3s ease;
}
@supports (backdrop-filter: blur(0)) or (-webkit-backdrop-filter: blur(0)) {
  .site-header { background-color: rgba(251, 250, 248, 0.8); }
}
.site-header.is-scrolled { box-shadow: 0 4px 20px -12px rgba(15, 25, 41, 0.35); }

/* Admin bar: sticky header sits below WP toolbar */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 4rem;
  transition: height 0.3s ease;
}
@media (min-width: 1024px) { .site-header .nav-inner { height: 5rem; } }
.site-header.is-scrolled .nav-inner { height: 3rem; }
@media (min-width: 1024px) { .site-header.is-scrolled .nav-inner { height: 3.5rem; } }

.header-left { display: flex; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .header-left { gap: 2rem; } }

.mobile-menu-toggle {
  padding: 0.5rem;
  background: none; border: none;
  display: inline-flex;
  transition: opacity 0.2s ease;
}
.mobile-menu-toggle:hover { opacity: 0.6; }
@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }

.site-logo-link { display: flex; align-items: center; }
/* Logo height from Customizer (--logo-height); scrolled scales down proportionally */
.site-logo-img {
  height: var(--logo-height, 44px) !important;
  width: auto !important;
  max-height: var(--logo-height, 44px);
  display: block;
  transition: height 0.3s ease, max-height 0.3s ease;
}
.site-header.is-scrolled .site-logo-img {
  height: calc(var(--logo-height, 44px) * 0.7) !important;
  max-height: calc(var(--logo-height, 44px) * 0.7);
}
.site-logo-text {
  line-height: var(--logo-height, 44px);
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-right { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
@media (min-width: 1024px) { .header-right { gap: 2rem; } }

.theme-nav-list {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .theme-nav-list { display: flex; } }
@media (min-width: 1024px) { .theme-nav-list { gap: 2rem; } }
.theme-nav-list li { display: inline-flex; }
.theme-nav-list a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.theme-nav-list a:hover { opacity: 0.6; }

.header-cart-btn {
  position: relative;
  padding: 0.5rem;
  background: none; border: none;
  display: inline-flex;
  transition: opacity 0.2s ease;
}
.header-cart-btn:hover { opacity: 0.6; }
.header-cart-btn svg { width: 1rem; height: 1rem; }
.theme-cart-count {
  position: absolute; top: -2px; right: -2px;
  width: 1rem; height: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
}
.theme-cart-count:empty { display: none; }

.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-top: 1px solid transparent;
  background: var(--background);
  color: var(--foreground);
  transition:
    max-height 0.45s var(--transition-smooth),
    opacity 0.35s var(--transition-smooth),
    visibility 0.35s var(--transition-smooth),
    border-color 0.35s ease;
}
.mobile-menu.is-open {
  max-height: min(80vh, 520px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-top-color: var(--border);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu-inner {
  padding-block: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-inner a {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.85rem 0;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.35s var(--transition-smooth),
    transform 0.4s var(--transition-smooth),
    color 0.2s ease;
  transition-delay: 0s;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}
.mobile-menu-inner a:last-child { border-bottom: none; }
.mobile-menu.is-open .mobile-menu-inner a {
  opacity: 0.9;
  transform: translateY(0);
  transition-delay: calc(0.06s + (var(--nav-i, 0) * 0.05s));
}
.mobile-menu-inner a:hover { opacity: 1; }
body.mobile-nav-open { overflow: hidden; }

/* --------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background-color: var(--gc-navy-deep);
  color: var(--gc-cream);
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,15,27,0.7), rgba(9,15,27,0.5), rgba(9,15,27,1));
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 6rem 1.5rem;
  max-width: 64rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gc-gold);
  display: block;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero-eyebrow { font-size: 0.875rem; } }
.hero-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-title .accent { color: var(--gc-gold); }
.hero-subtitle {
  margin-top: 2rem;
  max-width: 36rem;
  margin-left: auto; margin-right: auto;
  font-size: 0.875rem;
  color: rgba(251,250,248,0.8);
  font-weight: 300;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1rem; } }
.hero-subtitle strong { font-weight: 500; }
.hero-cta-row {
  display: flex; flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; } }
.hero-cta-row .btn-primary,
.hero-cta-row .btn-hero-outline {
  border-radius: var(--btn-radius);
  padding: 0 2.5rem;
  height: 3rem;
  text-transform: uppercase;
}
.btn-hero-primary, .btn-hero-outline { text-transform: uppercase; }
.btn-hero-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gc-cream);
  color: var(--gc-cream);
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  transition: all 0.2s ease;
}
.btn-hero-outline:hover { background: var(--gc-cream); color: var(--gc-navy-deep); }

/* --------------------------------------------------------------------
   7. MARQUEE
   -------------------------------------------------------------------- */
.gc-marquee {
  position: relative;
  overflow: hidden;
  background-color: var(--gc-gold);
  color: var(--gc-navy);
  border-top: 1px solid rgba(15,25,41,0.1);
  border-bottom: 1px solid rgba(15,25,41,0.1);
}
.marquee-track { display: flex; width: max-content; align-items: center; padding: 1rem 0; }
.marquee-item { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item span.phrase {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0 2rem;
  white-space: nowrap;
}
@media (min-width: 768px) { .marquee-item span.phrase { font-size: 1rem; } }
.marquee-item span.star { font-size: 1.125rem; line-height: 1; opacity: 0.7; user-select: none; }

/* --------------------------------------------------------------------
   8. TEAMS SECTION
   -------------------------------------------------------------------- */
.teams-section { padding: 5rem 0; scroll-margin-top: 6rem; background-color: var(--secondary); }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gc-gold);
  display: block;
  margin-bottom: 1rem;
}
.teams-section .section-heading,
.gallery-section .section-heading,
.faq-section .section-heading,
.schedule-section .section-heading,
.stats-section .section-heading,
.shop-heading {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .teams-section .section-heading, .gallery-section .section-heading, .faq-section .section-heading, .schedule-section .section-heading, .stats-section .section-heading, .shop-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .teams-section .section-heading, .gallery-section .section-heading, .faq-section .section-heading, .schedule-section .section-heading, .stats-section .section-heading, .shop-heading { font-size: 3rem; } }

.teams-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .teams-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--gc-navy-deep);
  color: var(--gc-cream);
  display: flex;
  flex-direction: column;
}
.team-card-image {
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
@media (min-width: 640px) { .team-card-image { padding: 2rem; } }
.team-card-image img {
  max-height: 100%; max-width: 100%;
  object-fit: contain;
  transition: transform 0.7s ease;
}
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-body {
  padding: 1.25rem;
  background: var(--gc-navy-deep);
  border-top: 1px solid rgba(240,172,15,0.25);
  flex: 1;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .team-card-body { padding: 1.5rem; } }
@media (min-width: 1024px) { .team-card-body { padding: 2rem; } }
.team-card-accent { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gc-gold); }
.team-card-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; margin-top: 0.5rem; margin-bottom: 0.5rem; color: var(--gc-cream); text-transform: uppercase; }
@media (min-width: 768px) { .team-card-name { font-size: 1.875rem; } }
.team-card-league { font-size: 0.875rem; font-weight: 300; color: rgba(251,250,248,0.95); margin-bottom: 1rem; }
@media (min-width: 768px) { .team-card-league { color: rgba(251,250,248,0.8); } }
.team-card-blurb { font-size: 0.875rem; font-weight: 300; color: rgba(251,250,248,0.9); max-width: 28rem; }
@media (min-width: 768px) { .team-card-blurb { color: rgba(251,250,248,0.7); } }
.team-card-link {
  display: inline-block; margin-top: auto; padding-top: 1.25rem;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gc-gold);
  align-self: flex-start;
}
.team-card-link span { border-bottom: 1px solid var(--gc-gold); padding-bottom: 0.25rem; }

/* --------------------------------------------------------------------
   9. SCHEDULE SECTION
   -------------------------------------------------------------------- */
.schedule-section { padding: 5rem 0; scroll-margin-top: 6rem; }
.section-intro { text-align: center; margin-bottom: 3rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-intro p { color: var(--muted-foreground); font-weight: 300; margin-top: 1rem; }

.schedule-list { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.schedule-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
}
@media (min-width: 768px) {
  .schedule-row { grid-template-columns: auto 1fr auto; gap: 2rem; padding: 1.25rem 2rem; }
}
.schedule-row:not(:first-child) { border-top: 1px solid var(--border); }
.schedule-row.row-even { background-color: var(--card); }
.schedule-row.row-odd { background-color: color-mix(in srgb, var(--secondary) 40%, transparent); }

.schedule-date-block { display: flex; align-items: center; gap: 1rem; min-width: 200px; }
.schedule-date-icon {
  width: 3.5rem; height: 3.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--gc-navy); color: var(--gc-cream); border-radius: var(--radius);
}
.schedule-date-icon svg { width: 1rem; height: 1rem; color: var(--gc-gold); margin-bottom: 0.125rem; }
.schedule-date-icon span { font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.schedule-date-text p:first-child { font-size: 0.875rem; font-weight: 500; }
.schedule-date-text p:last-child { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 300; }

.schedule-meta-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gc-gold); margin-bottom: 0.25rem; }
.schedule-opponent { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
@media (min-width: 768px) { .schedule-opponent { font-size: 1.125rem; } }
.schedule-venue { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 300; margin-top: 0.25rem; display: flex; align-items: center; gap: 0.375rem; }
.schedule-venue svg { width: 0.75rem; height: 0.75rem; }

.schedule-action { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .schedule-action { justify-content: flex-end; } }
.schedule-action .btn-primary { padding: 0 1.5rem; height: 2.5rem; font-size: 11px; }
.schedule-away-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); }

/* --------------------------------------------------------------------
   10. PARALLAX DIVIDER
   -------------------------------------------------------------------- */
.parallax-divider { position: relative; width: 100%; overflow: hidden; height: 85vh; }
@media (min-width: 768px) { .parallax-divider { height: 100vh; } }
/* Oversized layer so translateY ±80px + scale(1.1) never leave empty edges */
.parallax-divider-inner {
  position: absolute;
  top: -12%;
  right: 0;
  bottom: -12%;
  left: 0;
  will-change: transform;
}
.parallax-divider-inner img.parallax-bg-img,
.parallax-divider-inner .parallax-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.parallax-text-wrap { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.parallax-text { text-align: center; color: #fff; max-width: 42rem; }
.parallax-eyebrow { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8; display: block; margin-bottom: 1rem; }
.parallax-heading { font-family: var(--font-display); font-size: 1.875rem; letter-spacing: 0.1em; text-transform: uppercase; }
@media (min-width: 768px) { .parallax-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .parallax-heading { font-size: 3.75rem; } }

/* --------------------------------------------------------------------
   11. ABOUT SECTION
   -------------------------------------------------------------------- */
.about-section { position: relative; padding-block: 7rem; scroll-margin-top: 6rem; overflow: hidden; }
@media (min-width: 768px) { .about-section { padding-block: 9rem; } }
.about-decor-dots {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: radial-gradient(circle at 20% 20%, var(--gc-navy) 1px, transparent 1px), radial-gradient(circle at 80% 80%, var(--gc-navy) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-decor-glow {
  position: absolute; top: -8rem; right: -8rem;
  width: 28rem; height: 28rem; border-radius: 999px; filter: blur(64px); opacity: 0.2; pointer-events: none;
  background: radial-gradient(circle, var(--gc-gold) 0%, transparent 70%);
}
.about-header-row {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  margin-bottom: 5rem; align-items: end; position: relative;
}
@media (min-width: 1024px) { .about-header-row { grid-template-columns: 5fr 7fr; gap: 4rem; margin-bottom: 6rem; } }
.about-eyebrow-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.about-eyebrow-line { height: 1px; width: 2.5rem; background: var(--gc-gold); }
.about-eyebrow-text { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gc-gold); font-weight: 500; }
@media (min-width: 768px) { .about-eyebrow-text { font-size: 0.75rem; } }
.about-section .section-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--gc-navy);
}
@media (min-width: 768px) { .about-section .section-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .about-section .section-heading { font-size: 4.5rem; } }
.about-copy-col { }
@media (min-width: 1024px) { .about-copy-col { padding-left: 2rem; border-left: 1px solid var(--border); } }
.about-copy-col p { font-size: 1rem; color: var(--muted-foreground); font-weight: 300; line-height: 1.7; }
@media (min-width: 768px) { .about-copy-col p { font-size: 1.125rem; } }
.about-copy-col strong { color: var(--gc-navy); font-weight: 500; }
.about-stats-row { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 28rem; }
.about-stat-num { font-family: var(--font-display); font-size: 1.875rem; color: var(--gc-navy); line-height: 1; }
@media (min-width: 768px) { .about-stat-num { font-size: 2.25rem; } }
.about-stat-label { margin-top: 0.5rem; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-foreground); }

.about-pillars {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--border); border-radius: 0.75rem; overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(15,25,41,0.25);
}
@media (min-width: 768px) { .about-pillars { grid-template-columns: repeat(3, 1fr); } }
.about-pillar {
  position: relative;
  background: var(--card);
  padding: 2rem;
  transition: background-color 0.5s ease;
}
@media (min-width: 768px) { .about-pillar { padding: 2.5rem; } }
.about-pillar:hover { background: var(--gc-navy); }
.about-pillar-bar { position: absolute; top: 0; left: 0; height: 4px; width: 3rem; background: var(--gc-gold); transition: width 0.5s ease; }
.about-pillar:hover .about-pillar-bar { width: 100%; }
.about-pillar-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2.5rem; }
.about-pillar-num { font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.3em; color: var(--muted-foreground); transition: color 0.3s ease; }
.about-pillar:hover .about-pillar-num { color: var(--gc-gold); }
.about-pillar-icon { width: 1.75rem; height: 1.75rem; color: var(--gc-navy); transition: color 0.3s ease; }
.about-pillar:hover .about-pillar-icon { color: var(--gc-gold); }
.about-pillar-title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.02em; margin-bottom: 1rem; color: var(--gc-navy); transition: color 0.3s ease; text-transform: uppercase; }
@media (min-width: 768px) { .about-pillar-title { font-size: 1.6rem; } }
.about-pillar:hover .about-pillar-title { color: var(--gc-cream); }
.about-pillar-copy { font-size: 0.875rem; color: var(--muted-foreground); font-weight: 300; line-height: 1.7; transition: color 0.3s ease; }
@media (min-width: 768px) { .about-pillar-copy { font-size: 1rem; } }
.about-pillar:hover .about-pillar-copy { color: rgba(251,250,248,0.8); }

.about-signature { margin-top: 4rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .about-signature { flex-direction: row; } }
.about-signature-line { height: 1px; width: 3rem; background: var(--border); display: none; }
@media (min-width: 768px) { .about-signature-line { display: block; } }
.about-signature p { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted-foreground); }

/* --------------------------------------------------------------------
   12. TEAM LOGO BAND
   -------------------------------------------------------------------- */
.team-logo-band { padding: 3rem 0; }
.team-logo-band .container-wide { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3rem; }
@media (min-width: 768px) { .team-logo-band .container-wide { flex-direction: row; } }
.team-logo-item { text-align: center; }
.team-logo-item img { height: 8rem; width: auto; margin: 0 auto 0.75rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 0.5rem; }
@media (min-width: 768px) { .team-logo-item img { height: 10rem; } }
.team-logo-item p { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gc-gold); }

/* --------------------------------------------------------------------
   13. STATS SECTION
   -------------------------------------------------------------------- */
.stats-section { position: relative; padding: 5rem 0; scroll-margin-top: 6rem; overflow: hidden; background-color: var(--gc-navy-deep); }
.stats-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/*
  Video reads through more clearly: higher opacity so less navy bleeds
  through the <video> element; overlays are a light wash, not a blue veil.
*/
.stats-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
  pointer-events: none;
  border: 0;
}
.stats-overlay-1 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    hsl(218, 50%, 7%, 0.45) 0%,
    hsl(218, 50%, 7%, 0.2) 50%,
    hsl(218, 50%, 7%, 0.5) 100%
  );
  pointer-events: none;
}
.stats-overlay-2 {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: hsl(218, 45%, 11%, 0.15);
  pointer-events: none;
}
.stats-content { position: relative; z-index: 2; }
.stats-section .section-intro p { color: rgba(251,250,248,0.7); }
.stats-section .section-heading { color: var(--gc-cream); }
.stats-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.stats-table-wrap {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15,25,41,0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px -30px rgba(15,25,41,0.8);
}
.stats-table-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.stats-table-head span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gc-gold); display: block; margin-bottom: 0.25rem; }
.stats-table-head h3 { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.05em; color: var(--gc-cream); text-transform: uppercase; }
@media (min-width: 768px) { .stats-table-head h3 { font-size: 1.5rem; } }
.stats-table { width: 100%; font-size: 0.875rem; table-layout: fixed; border-collapse: collapse; }
.stats-table thead tr { text-align: left; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251,250,248,0.6); }
.stats-table th { padding: 0.75rem 0.75rem; font-weight: 500; }
.stats-table th:first-child { padding-left: 1.5rem; width: 44%; }
.stats-table th:last-child { padding-right: 1.5rem; }
.stats-table th.num { text-align: right; width: 14%; }
.stats-table tbody { color: var(--gc-cream); }
.stats-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.stats-table td { padding: 1rem 0.75rem; font-weight: 500; }
.stats-table td:first-child { padding-left: 1.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stats-table td:last-child { padding-right: 1.5rem; }
.stats-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.stats-table .player-num { color: var(--gc-gold); margin-right: 0.375rem; }
.stats-table td.player-pos,
.stats-table th.pos { text-align: left; color: rgba(251,250,248,0.6); font-weight: 300; }
.stats-table th.pos { color: rgba(251,250,248,0.6); font-weight: 500; }

/* --------------------------------------------------------------------
   14. GALLERY SECTION
   -------------------------------------------------------------------- */
.gallery-section { padding: 5rem 0; scroll-margin-top: 6rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 0.75rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; } }
.gallery-tile { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.gallery-tile.span-large { grid-column: span 1; grid-row: span 1; }
@media (min-width: 768px) { .gallery-tile.span-large { grid-column: span 2; grid-row: span 2; } }
.gallery-tile.bg-secondary { background: var(--secondary); }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-tile:hover .gallery-img { transform: scale(1.05); }
.gallery-footnote { text-align: center; font-size: 0.75rem; color: var(--muted-foreground); font-weight: 300; margin-top: 2rem; }
.gallery-footnote a { color: var(--foreground); text-decoration: underline; }

/* --------------------------------------------------------------------
   15. FAQ SECTION
   -------------------------------------------------------------------- */
.faq-section { padding: 5rem 0; scroll-margin-top: 6rem; background-color: var(--secondary); }
.faq-accordion { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); padding: 0 1rem; }
@media (min-width: 768px) { .faq-accordion { padding: 0 2rem; } }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; background: none; border: none; text-align: left;
  padding: 1.25rem 0;
  font-size: 0.875rem; letter-spacing: 0.02em; font-weight: 500; text-transform: uppercase;
  color: var(--foreground);
}
@media (min-width: 768px) { .faq-trigger { font-size: 1rem; } }
.faq-trigger:hover { text-decoration: underline; }
.faq-trigger svg { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.is-open .faq-trigger svg { transform: rotate(180deg); }
.faq-content { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-item.is-open .faq-content { max-height: 40rem; }
.faq-content-inner { padding: 0 0 1.25rem; font-size: 0.875rem; color: var(--muted-foreground); font-weight: 300; line-height: 1.7; }

/* --------------------------------------------------------------------
   16. CONTACT SECTION
   -------------------------------------------------------------------- */
.contact-section { position: relative; background-color: var(--secondary); scroll-margin-top: 6rem; overflow: hidden; }
/* Lovable: absolute inset-x-0 top-0 h-[480px] z-0 */
.contact-bg-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 480px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.contact-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* from-gc-navy-deep/80 via-gc-navy-deep/50 to-secondary */
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(218, 50%, 7%, 0.8) 0%,
    hsl(218, 50%, 7%, 0.5) 50%,
    var(--secondary) 100%
  );
}
/* Lovable: relative z-10 container-wide pt-24 pb-20 */
.contact-inner { position: relative; z-index: 10; padding-block: 6rem 5rem; }
.contact-header { text-align: center; margin-bottom: 4rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.contact-header .section-eyebrow { }
.contact-title { font-family: var(--font-display); font-size: 2.25rem; letter-spacing: 0.05em; margin-bottom: 1.5rem; color: var(--gc-cream); text-transform: uppercase; }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
.contact-header p { color: rgba(251,250,248,0.8); font-weight: 300; line-height: 1.7; }

.contact-success { text-align: center; padding: 4rem 1.5rem; }
.contact-success-icon { width: 4rem; height: 4rem; border: 1px solid var(--foreground); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; border-radius: var(--radius); }
.contact-success h3 { font-family: var(--font-display); font-size: 1.875rem; letter-spacing: 0.05em; margin-bottom: 1rem; text-transform: uppercase; }
.contact-success p { color: var(--muted-foreground); font-weight: 300; max-width: 28rem; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }

.contact-form-card { padding: 2rem; border: 1px solid var(--border); background: var(--card); border-radius: var(--radius); }
@media (min-width: 1024px) { .contact-form-card { padding: 2.5rem; } }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; margin-bottom: 2rem; text-transform: uppercase; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 1.5rem; }
.form-field label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.5rem; display: block; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--btn-radius);
  padding: 0.9rem 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: var(--font-body);
  color: var(--foreground);
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--foreground); }
.form-field textarea { resize: none; }
.contact-form-card .btn-primary { width: 100%; padding: 0.9rem 2.5rem; height: auto; }

.front-office-card { padding: 2rem; border: 1px solid var(--border); background: var(--card); border-radius: var(--radius); }
@media (min-width: 1024px) { .front-office-card { padding: 2.5rem; } }
.front-office-card h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; margin-bottom: 2rem; text-transform: uppercase; }
.contact-info-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-icon { padding: 0.75rem; border: 1px solid var(--border); border-radius: var(--btn-radius); flex-shrink: 0; }
.contact-info-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-info-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.contact-info-value { font-size: 0.875rem; font-weight: 300; word-break: break-word; }
.contact-info-value:hover { opacity: 0.7; }

.front-office-hours { margin-top: 3rem; }
.front-office-hours h4 { font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.05em; margin-bottom: 1.5rem; text-transform: uppercase; }
.front-office-hours p { font-size: 0.875rem; font-weight: 300; color: var(--muted-foreground); margin-bottom: 0.75rem; }

.response-time-box { margin-top: 3rem; padding: 2rem; background: var(--background); border-radius: var(--radius); }
.response-time-box h4 { font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; text-transform: uppercase; }
.response-time-box p { font-size: 0.875rem; font-weight: 300; color: var(--muted-foreground); }

.map-section { position: relative; width: 100%; }
.map-wrap { position: relative; width: 100%; height: 420px; overflow: hidden; }
@media (min-width: 768px) { .map-wrap { height: 520px; } }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(20%); }
.map-fade { pointer-events: none; position: absolute; top: 0; left: 0; right: 0; height: 6rem; background: linear-gradient(to bottom, var(--secondary), transparent); }

/* --------------------------------------------------------------------
   17. SHOP SECTION
   -------------------------------------------------------------------- */
.shop-section { padding: 5rem 0; scroll-margin-top: 6rem; }
.shop-header { text-align: center; margin-bottom: 4rem; }
/* Lovable ShopSection eyebrow uses muted-foreground, not gold */
.shop-header .section-eyebrow { color: var(--muted-foreground); }
.shop-header p { color: var(--muted-foreground); font-weight: 300; max-width: 32rem; margin: 1.5rem auto 0; }
.shop-filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 4rem; }
.shop-empty { text-align: center; padding: 5rem 0; color: var(--muted-foreground); font-weight: 300; }
.shop-loadmore-wrap { display: flex; justify-content: center; margin-top: 3.5rem; }
.shop-loadmore-wrap .btn-outline { padding: 0 2.5rem; height: 3rem; }

.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--muted);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
}
.theme-product-card__image-link { display: block; width: 100%; height: 100%; }
.product-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.theme-product-card:hover .product-card-img { transform: scale(1.05); }
.theme-product-card__image-wrapper.is-soldout .product-card-img { opacity: 0.5; }

.theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__quick-hover {
  position: absolute; inset-inline: 0; bottom: 0;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.theme-product-card:hover .theme-product-card__quick-hover { transform: translateY(0); }
.theme-product-card__quick-hover span {
  flex: 1; background: var(--foreground); color: var(--background);
  padding: 0.625rem 0; text-align: center; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}

.theme-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.theme-product-card__title {
  font-size: 0.75rem; letter-spacing: 0.05em; font-weight: 500; text-transform: uppercase;
  transition: opacity 0.2s ease;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.theme-product-card:hover .theme-product-card__title { opacity: 0.6; }
.theme-product-card__price { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 300; }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.375rem; }
.theme-product-card__cats { font-size: 11px; color: var(--muted-foreground); margin-top: 0.25rem; }
.theme-product-card__cats a { text-decoration: underline; }

/* Card compact add-to-cart button (icon variant) — none used in this design (link-only cards) */

/* --------------------------------------------------------------------
   18. SINGLE PRODUCT PAGE
   -------------------------------------------------------------------- */
.single-product-main { padding: 3rem 0 5rem; background-color: var(--background); }
.pd-back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  transition: color 0.2s ease;
}
.pd-back-link:hover { color: var(--foreground); }
.pd-back-link svg { width: 0.875rem; height: 0.875rem; }

.theme-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  min-width: 0;
}
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1.6fr 1fr; gap: 4rem; } }

.theme-product-gallery { min-width: 0; max-width: 100%; }
.pd-main-image {
  background: var(--background);
  border: 1px solid color-mix(in srgb, var(--border) 40%, transparent);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .pd-main-image { aspect-ratio: 4 / 5; padding: 4rem; } }
.pd-main-img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.theme-product-thumbnails { display: none; }
.pd-thumb-btn {
  width: 4.5rem; height: 4.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.25rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.pd-thumb-btn.is-active { border-color: var(--foreground); }
.pd-thumb-img { width: 100%; height: 100%; object-fit: cover; }

.theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { position: sticky; top: 8rem; align-self: flex-start; } }
.pd-title-block { margin-bottom: 0; }
.pd-cats { display: none; }
.product-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1.25;
}
@media (min-width: 768px) { .product-title { font-size: 1.875rem; } }
.pd-price { font-size: 1.125rem; font-weight: 300; margin-top: 0.75rem; }
.pd-price del { opacity: 0.5; margin-right: 0.5rem; }
.pd-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

.pd-attr-block { margin-bottom: 1.5rem; }
.pd-attr-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.75rem; display: block; }
.pd-size-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pd-size-btn {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; letter-spacing: 0.02em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  border-radius: 0;
  transition: all 0.15s ease;
}
.pd-size-btn:hover { border-color: var(--foreground); }
.pd-size-btn.is-active { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.pd-size-guide-link { font-size: 11px; text-decoration: underline; color: var(--muted-foreground); margin-top: 0.75rem; display: inline-block; }
.pd-size-guide-link:hover { color: var(--foreground); }

.theme-attr-select-hidden { display: none !important; }

.pd-custom-box { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; background: color-mix(in srgb, var(--secondary) 40%, transparent); margin-bottom: 1.5rem; }
.pd-custom-box label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 0.5rem; display: block; }
.pd-custom-box p.hint { font-size: 0.75rem; font-weight: 300; color: var(--muted-foreground); margin-bottom: 0.75rem; line-height: 1.6; }
.pd-custom-box textarea {
  width: 100%; font-size: 0.875rem; font-weight: 300; resize: none;
  background: var(--background); border: 1px solid var(--border); border-radius: var(--btn-radius); padding: 0.75rem 1rem;
}
.pd-custom-meta { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-foreground); }

.theme-add-to-cart-area {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.theme-quantity-wrapper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--btn-radius);
  flex-shrink: 0;
}
.theme-qty-minus, .theme-qty-plus {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--foreground);
  transition: opacity 0.2s ease;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { opacity: 0.6; }
.theme-qty-input {
  width: 2.5rem; text-align: center; border: none; background: transparent;
  font-size: 0.875rem; -moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Lovable ProductDetail ATC: bg-foreground text-background uppercase */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_add_to_cart_button {
  background-color: var(--foreground) !important;
  color: var(--background) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  height: 3rem !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  flex: 1 1 auto;
  min-width: 0;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.9 !important;
  background-color: var(--foreground) !important;
  color: var(--background) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--foreground) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

.pd-buyitnow-btn { width: 100%; margin-top: 0; margin-bottom: 1.5rem; flex: none !important; }
.pd-description { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 80%, transparent); font-weight: 300; padding-top: 0.5rem; margin-bottom: 1.5rem; line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.pd-details { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.pd-details h3 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 1rem; }
.pd-details ul { display: flex; flex-direction: column; gap: 0.5rem; }
.pd-details li { font-size: 0.875rem; font-weight: 300; color: var(--muted-foreground); display: flex; align-items: flex-start; gap: 0.5rem; }
.pd-details li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--muted-foreground); margin-top: 0.5rem; flex-shrink: 0; }

.related-products-section { margin-top: 6rem; }
.related-products-section h2 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; text-align: center; margin-bottom: 3rem; text-transform: uppercase; }
@media (min-width: 768px) { .related-products-section h2 { font-size: 1.875rem; } }

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations { margin-bottom: 1rem; }

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

/* --------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------- */
.site-footer { }
.footer-newsletter { padding-block: 4rem 5rem; text-align: center; }
@media (min-width: 1024px) { .footer-newsletter { padding-block: 5rem; } }
.footer-newsletter .section-eyebrow { }
.footer-newsletter h2 { font-family: var(--font-display); font-size: 1.875rem; letter-spacing: 0.05em; margin-bottom: 1.5rem; text-transform: uppercase; }
@media (min-width: 768px) { .footer-newsletter h2 { font-size: 2.25rem; } }
.footer-newsletter p { color: rgba(251,250,248,0.7); font-weight: 300; margin-bottom: 2.5rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1; padding: 1rem 1.5rem; background: transparent;
  border: 1px solid rgba(251,250,248,0.3); color: var(--gc-cream);
  font-size: 0.875rem; letter-spacing: 0.02em; border-radius: var(--btn-radius);
}
.newsletter-form input::placeholder { color: rgba(251,250,248,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gc-cream); }
.newsletter-form button {
  background: var(--primary); color: var(--primary-foreground);
  padding: 1rem 2rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  border-radius: var(--btn-radius); border: none; transition: opacity 0.2s ease;
}
.newsletter-form button:hover { opacity: 0.9; }

.footer-main { background-color: var(--secondary); border-top: 1px solid var(--border); }
.footer-main-inner { padding-block: 4rem 2rem; }
@media (min-width: 1024px) { .footer-main-inner { padding-block: 5rem 2.5rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem 4rem; } }
.footer-brand-col { }
@media (min-width: 768px) { .footer-brand-col { grid-column: span 2; } }
.footer-logo-link { display: inline-block; background: var(--gc-navy-deep); padding: 0.75rem; border-radius: var(--btn-radius); }
.footer-logo-link img { height: 6rem; width: auto; }
@media (min-width: 768px) { .footer-logo-link img { height: 7rem; } }
.footer-brand-col p { margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); max-width: 24rem; line-height: 1.7; font-weight: 300; }
.footer-social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.footer-social-row a { padding: 0.5rem; border: 1px solid var(--border); border-radius: var(--btn-radius); display: inline-flex; transition: border-color 0.2s ease; }
.footer-social-row a:hover { border-color: var(--foreground); }
.footer-social-row svg { width: 1rem; height: 1rem; }

.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-col a, .footer-col button { font-size: 0.875rem; color: var(--muted-foreground); font-weight: 300; transition: color 0.2s ease; background: none; border: none; text-align: left; padding: 0; }
.footer-col a:hover, .footer-col button:hover { color: var(--foreground); }

.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom p, .footer-bottom span { font-size: 0.75rem; color: var(--muted-foreground); letter-spacing: 0.02em; font-weight: 300; }
.footer-bottom a { text-decoration: underline; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--foreground); }

/* Footer legal dialogs */
.theme-dialog-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.5);
  display: none; opacity: 0; transition: opacity 0.2s ease;
}
.theme-dialog-overlay.is-open { display: block; opacity: 1; }
.theme-dialog {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%);
  z-index: 101; width: calc(100% - 2rem); max-width: 32rem; max-height: 80vh;
  background: var(--background); border-radius: var(--radius); box-shadow: var(--shadow-elevated);
  display: none; flex-direction: column;
  opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
}
.theme-dialog.is-open { display: flex; opacity: 1; transform: translate(-50%, -50%); }
.theme-dialog-header { padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.theme-dialog-title { font-family: var(--font-display); letter-spacing: 0.15em; text-transform: uppercase; font-size: 1rem; }
.theme-dialog-close { background: none; border: none; padding: 0.25rem; }
.theme-dialog-body { padding: 1.5rem; overflow-y: auto; font-size: 0.875rem; color: var(--muted-foreground); font-weight: 300; line-height: 1.7; }
.theme-dialog-body h4 { color: var(--foreground); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin: 1.25rem 0 0.5rem; font-family: var(--font-body); }
.theme-dialog-body p { margin-bottom: 1rem; }
.theme-dialog-body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.theme-dialog-body table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; font-size: 0.8125rem; }
.theme-dialog-body th, .theme-dialog-body td { text-align: left; padding: 0.5rem; border-bottom: 1px solid var(--border); }
.theme-dialog-body strong { color: var(--foreground); }

/* --------------------------------------------------------------------
   20. SIDE CART DRAWER
   -------------------------------------------------------------------- */
#theme-cart-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem;
  background: var(--background); z-index: 91; box-shadow: var(--shadow-elevated);
  transform: translateX(100%); transition: transform 0.3s var(--transition-smooth);
  display: flex; flex-direction: column;
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.cart-drawer-header h2 { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.cart-drawer-close { background: none; border: none; padding: 0.5rem; transition: opacity 0.2s ease; }
.cart-drawer-close:hover { opacity: 0.6; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-drawer-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; }
.cart-drawer-empty svg { width: 3rem; height: 3rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.cart-drawer-empty p { color: var(--muted-foreground); font-weight: 300; margin-bottom: 1.5rem; }

.cart-drawer-items { display: flex; flex-direction: column; gap: 1.5rem; }
.cart-drawer-item { display: flex; gap: 1rem; }
.cart-drawer-item-img { width: 6rem; height: 8rem; background: var(--secondary); flex-shrink: 0; overflow: hidden; display: block; }
.cart-drawer-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-drawer-item-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.cart-drawer-item-title { font-size: 0.875rem; font-weight: 300; letter-spacing: 0.02em; transition: opacity 0.2s ease; overflow-wrap: break-word; }
.cart-drawer-item-title:hover { opacity: 0.7; }
.cart-drawer-item-meta { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.cart-drawer-item-price { font-size: 0.875rem; font-weight: 300; margin-top: 0.5rem; }
.cart-drawer-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.5rem; }
.cart-drawer-qty { display: flex; align-items: center; border: 1px solid var(--border); }
.cart-drawer-qty button { padding: 0.5rem; background: none; border: none; transition: background-color 0.2s ease; }
.cart-drawer-qty button:hover { background: var(--secondary); }
.cart-drawer-qty span { width: 2rem; text-align: center; font-size: 0.75rem; }
.cart-drawer-remove { font-size: 0.75rem; color: var(--muted-foreground); text-decoration: underline; background: none; border: none; transition: color 0.2s ease; }
.cart-drawer-remove:hover { color: var(--foreground); }

.cart-drawer-footer { padding: 1.5rem; border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-drawer-subtotal-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.cart-drawer-subtotal-row span:first-child { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); }
.cart-drawer-subtotal-row span:last-child { font-size: 1.125rem; font-weight: 300; }
.cart-drawer-footer .shipping-note { font-size: 0.75rem; color: var(--muted-foreground); font-weight: 300; margin-bottom: 1.5rem; }
.cart-drawer-footer .btn-primary { width: 100%; padding: 1rem 0; height: auto; }

/* --------------------------------------------------------------------
   21. WOOCOMMERCE GENERAL OVERRIDES
   -------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error, .woocommerce-message, .woocommerce-info {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: var(--card);
  color: var(--foreground);
  list-style: none;
}
.woocommerce-error { border-color: var(--destructive); color: var(--destructive); }

/* --------------------------------------------------------------------
   22. CHECKOUT (WooCommerce Blocks)
   -------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
body.woocommerce-checkout .page-title-wrap {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.page-title-wrap { padding-block: 0 2rem; }
.page-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .page-title { font-size: 2.5rem; } }

/* Parents must not constrain checkout width */
body.woocommerce-checkout #page-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout article,
.entry-content:has(.wp-block-woocommerce-checkout),
.entry-content:has(.wc-block-checkout) {
  max-width: none;
  width: 100%;
}

body.woocommerce-checkout .entry-content,
.entry-content:has(.wp-block-woocommerce-checkout),
.entry-content:has(.wc-block-checkout) {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .entry-content,
  .entry-content:has(.wp-block-woocommerce-checkout),
  .entry-content:has(.wc-block-checkout) {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Checkout block container — desired width, centered */
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout.wp-block-woocommerce-checkout,
.entry-content .wp-block-woocommerce-checkout,
.entry-content .wc-block-checkout.wp-block-woocommerce-checkout {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

/* Notices (plural) — same width/alignment as checkout content */
body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-checkout .wc-block-components-notices,
.entry-content .wp-block-woocommerce-checkout .wc-block-components-notices {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

/* 2-column layout on the real sidebar-layout container */
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout,
  body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
  .entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout,
  .entry-content .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
  .entry-content .wp-block-woocommerce-checkout .wc-block-checkout-sidebar-layout {
    display: grid !important;
    grid-template-columns: 1fr minmax(360px, 400px);
    gap: var(--checkout-gap, 1.5rem);
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout > *,
  body.woocommerce-checkout .wc-block-checkout-sidebar-layout > *,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout > *,
  .entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout > *,
  .entry-content .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout > *,
  .entry-content .wp-block-woocommerce-checkout .wc-block-checkout-sidebar-layout > * {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
  body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
  .entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
  .entry-content .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
  .entry-content .wp-block-woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices {
    grid-column: 1 / -1;
    order: 1;
  }

  body.woocommerce-checkout .wc-block-checkout__main,
  body.woocommerce-checkout .wc-block-components-main,
  .entry-content .wc-block-checkout .wc-block-checkout__main,
  .entry-content .wc-block-checkout .wc-block-components-main,
  .entry-content .wp-block-woocommerce-checkout .wc-block-checkout__main,
  .entry-content .wp-block-woocommerce-checkout .wc-block-components-main {
    order: 2;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  body.woocommerce-checkout .wc-block-checkout__sidebar,
  body.woocommerce-checkout .wc-block-components-sidebar,
  .entry-content .wc-block-checkout .wc-block-checkout__sidebar,
  .entry-content .wc-block-checkout .wc-block-components-sidebar,
  .entry-content .wp-block-woocommerce-checkout .wc-block-checkout__sidebar,
  .entry-content .wp-block-woocommerce-checkout .wc-block-components-sidebar {
    order: 3;
    width: 100%;
    min-width: 360px;
    max-width: 100%;
    box-sizing: border-box;
  }
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
  width: 100%;
  box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__main {
  min-width: 0;
  width: 100%;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  width: 100%;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important;
  max-width: none !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--secondary);
  border-radius: 0;
  padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea,
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  background-color: var(--background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
  outline: none;
  border-color: var(--foreground);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--primary) !important;
  color: var(--primary-foreground) !important;
  border-radius: var(--btn-radius) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 500;
}
body.woocommerce-checkout .wc-block-components-notice-banner {
  border-radius: var(--radius);
  font-family: var(--font-body);
}
body.woocommerce-checkout h2,
body.woocommerce-checkout h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.woocommerce-checkout .page-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .page-title { font-size: 2.25rem; }
}
body.woocommerce-checkout .wc-block-components-checkout-step__heading,
body.woocommerce-checkout .wc-block-components-title {
  font-family: var(--font-display) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------
   23. THANK YOU PAGE
   -------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details {
  font-family: var(--font-body);
}
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0 1rem 0;
  font-size: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
  display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; margin-bottom: 2rem;
  background: var(--secondary); border-radius: var(--radius);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-top: 0.25rem; text-transform: none; letter-spacing: 0; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
  body.theme-thankyou-page .woocommerce-customer-details {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
  }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }

/* --------------------------------------------------------------------
   24. 404
   -------------------------------------------------------------------- */
.error-404-main { padding: 3rem 0 5rem; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.error-404-main .inner { text-align: center; padding: 0 1.5rem; }
.error-404-eyebrow { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-foreground); display: block; margin-bottom: 1.5rem; }
.error-404-main h1 { font-family: var(--font-display); font-size: 3rem; letter-spacing: 0.05em; margin-bottom: 1.5rem; text-transform: uppercase; }
@media (min-width: 768px) { .error-404-main h1 { font-size: 4.5rem; } }
.error-404-main p { color: var(--muted-foreground); font-weight: 300; max-width: 28rem; margin: 0 auto 2.5rem; }

/* --------------------------------------------------------------------
   25. HOME HERO / HEADER OFFSET RULES
   -------------------------------------------------------------------- */
body.theme-no-hero .site-main { padding-top: 0; }
body:not(.theme-no-hero) .site-main { padding-top: 0; }
body.woocommerce-checkout.theme-no-hero .site-main,
body.woocommerce-cart.theme-no-hero .site-main,
body.woocommerce-account.theme-no-hero .site-main {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  body.woocommerce-checkout.theme-no-hero .site-main {
    padding-top: 4rem;
  }
}

.page-shell { padding-block: 4rem; }
.thankyou-shell { padding-block: 3rem 5rem; }
.thankyou-hero { text-align: center; padding: 2rem 1.5rem 3rem; max-width: 36rem; margin: 0 auto; }
.thankyou-check {
  width: 4rem; height: 4rem; border: 1px solid var(--foreground);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}
.thankyou-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .thankyou-title { font-size: 2.25rem; } }
.thankyou-copy { color: var(--muted-foreground); font-weight: 300; margin-bottom: 2rem; }
.thankyou-continue { padding: 0 2.5rem; height: 3rem; display: inline-flex; }
.thankyou-order-details { margin-top: 2rem; }

/* --------------------------------------------------------------------
   26. PRICE RANGE (not used — no filter present in source; reserved)
   -------------------------------------------------------------------- */
