/* ============================================
   EMPTY T-SHIRT — Design System
   Premium Blank Apparel | Australia
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-tertiary: #1a1a1a;
  --color-bg-card: #161616;
  --color-bg-card-hover: #1e1e1e;
  --color-bg-light: #f8f5f1;
  --color-bg-cream: #f0ebe3;

  --color-text-primary: #f5f0eb;
  --color-text-secondary: #a8a29e;
  --color-text-muted: #6b6560;
  --color-text-dark: #1a1410;
  --color-text-dark-secondary: #4a4540;

  --color-accent: #c4a87a;
  --color-accent-light: #d4be9a;
  --color-accent-dark: #a48a5e;
  --color-accent-glow: rgba(196, 168, 122, 0.15);

  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-light: rgba(0, 0, 0, 0.08);
  --color-border-accent: rgba(196, 168, 122, 0.3);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1510 50%, #0a0a0a 100%);
  --gradient-accent: linear-gradient(135deg, #c4a87a, #d4be9a);
  --gradient-dark-overlay: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 100%);
  --gradient-light-section: linear-gradient(180deg, #f8f5f1 0%, #f0ebe3 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1240px;
  --container-padding: clamp(20px, 4vw, 40px);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(196, 168, 122, 0.08);
  --shadow-light-card: 0 2px 16px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-base: 0.4s var(--ease-out-expo);
  --transition-slow: 0.7s var(--ease-out-expo);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg-primary);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--color-border);
}

.navbar.menu-active {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

.navbar.menu-active .nav-logo {
  z-index: 1001;
  position: relative;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.nav-logo-accent {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-accent) !important;
  color: var(--color-bg-primary) !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: transform var(--transition-base), box-shadow var(--transition-base) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 168, 122, 0.3);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.5) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark-overlay);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--color-border-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: var(--color-accent-glow);
  animation: fadeInDown 1s var(--ease-out-expo) both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  animation: fadeInUp 1s 0.2s var(--ease-out-expo) both;
}

.hero h1 span {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  animation: fadeInUp 1s 0.4s var(--ease-out-expo) both;
}

.hero-description {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 44px;
  animation: fadeInUp 1s 0.5s var(--ease-out-expo) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s var(--ease-out-expo) both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s 0.8s var(--ease-out-expo) both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 24px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-bg-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 168, 122, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
  transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Section Styles ---------- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.section-darker {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.section-light {
  background: var(--gradient-light-section);
  color: var(--color-text-dark);
}

.section-accent-bg {
  background: linear-gradient(135deg, #1a1510 0%, #0a0a0a 50%, #10150a 100%);
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.section-label-line {
  width: 32px;
  height: 1.5px;
  background: var(--color-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-title-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  max-width: 720px;
}

.section-description.centered {
  margin: 0 auto;
}

.section-light .section-description {
  color: var(--color-text-dark-secondary);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid.cols-1 {
  grid-template-columns: 1fr;
  gap: 16px;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

#card-retail,
#card-wholesale {
  padding: 44px 36px;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  color: var(--color-accent);
  font-size: 1.3rem;
}

.card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Light Section Cards */
.section-light .card {
  background: #ffffff;
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-light-card);
}

.section-light .card:hover {
  border-color: rgba(196, 168, 122, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-light .card h3 {
  color: var(--color-text-dark);
}

.section-light .card p {
  color: var(--color-text-dark-secondary);
}

/* ---------- Image Sections ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.split-image:hover img {
  transform: scale(1.04);
}

.split-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.5) 100%);
  z-index: 1;
}

.split-content {
  max-width: 520px;
}

/* ---------- Full-Width Banner ---------- */
.banner {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
}

/* ---------- Stat/Feature Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ---------- Feature List ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border: 1px solid var(--color-border-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 0.7rem;
  margin-top: 2px;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.feature-item strong {
  color: var(--color-text-primary);
}

.section-light .feature-item p {
  color: var(--color-text-dark-secondary);
}

.section-light .feature-item strong {
  color: var(--color-text-dark);
}

/* ---------- Tee Color Showcase ---------- */
.tee-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.tee-showcase-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  group: true;
}

.tee-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.tee-showcase-item:hover img {
  transform: scale(1.06);
}

.tee-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
}

.tee-showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.tee-showcase-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.tee-showcase-content p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ---------- Marquee ---------- */
.marquee-section {
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.5rem;
  color: var(--color-accent);
}

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

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, #1a1510 50%, var(--color-bg-primary) 100%);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 168, 122, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--color-text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-secondary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

/* ---------- Glass card variant ---------- */
.glass-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-glow);
}

/* ---------- Number badge for sections ---------- */
.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-border-accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-light .section-number {
  border-color: rgba(196, 168, 122, 0.4);
}

/* ---------- Divider ---------- */
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-accent);
  margin: 40px 0;
  border-radius: 2px;
}

.section-divider.centered {
  margin: 40px auto;
}

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

  .split-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tee-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .tee-showcase-item:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Prevent hero content overlapping fixed navbar at top and scroll text at bottom */
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 130px 20px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
  }

  .hero-content {
    margin: auto 0;
  }

  .hero-scroll-indicator {
    display: none; /* Hide scroll indicator on mobile to prevent overlay */
  }

  .hero-badge {
    padding: 6px 16px;
    font-size: 0.7rem;
    margin-bottom: 24px;
  }

  /* Logo text scaling for mobile safety (avoids pushing toggle off-screen) */
  .nav-logo-text {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.cols-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #card-retail,
  #card-wholesale {
    padding: 32px 24px;
  }

  .tee-showcase {
    grid-template-columns: 1fr;
  }

  .tee-showcase-item:last-child {
    max-width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Extra scaling for narrow viewports */
  .nav-logo-text {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 8px;
  cursor: pointer;
  list-style: none;
  transition: all var(--transition-base);
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  padding-left: 16px;
}

.faq-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  min-width: 28px;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.faq-item[open] .faq-number,
.faq-question:hover .faq-number {
  opacity: 1;
}

.faq-question-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color var(--transition-base);
}

.faq-question:hover .faq-question-text {
  color: var(--color-accent-dark);
}

/* Plus / Minus icon */
.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon span {
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease;
}

.faq-icon span:last-child {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon span:last-child {
  transform: rotate(0deg);
  opacity: 0;
}

.faq-item[open] .faq-icon span:first-child {
  transform: rotate(180deg);
}

/* Answer content */
.faq-answer {
  padding: 0 8px 28px 56px;
  animation: faqSlideDown 0.4s var(--ease-out-expo);
}

.faq-answer p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
  margin-bottom: 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ bottom CTA */
.faq-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border-light);
}

.faq-cta p {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  margin-bottom: 20px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-question {
    gap: 14px;
    padding: 22px 4px;
  }

  .faq-question-text {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding-left: 46px;
    padding-bottom: 22px;
  }

  .faq-answer p {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .faq-answer {
    padding-left: 8px;
  }

  .faq-number {
    display: none;
  }

  .faq-question {
    gap: 12px;
  }
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--color-bg-primary);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.08);
  }
}

/* ---------- Footer WhatsApp Link ---------- */
.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all var(--transition-base);
}

.footer-whatsapp-link:hover {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.06);
  transform: translateY(-2px);
}

.footer-whatsapp-link svg {
  transition: fill var(--transition-base);
}

.footer-whatsapp-link:hover svg {
  fill: #25D366;
}

/* ---------- WhatsApp CTA Button ---------- */
.btn-whatsapp {
  gap: 12px;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* Responsive floating button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-float-tooltip {
    display: none;
  }
}
