@font-face {
  font-family: 'KlicaFont';
  src: url('../assets/fonts/KlicaFont.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800;900&display=swap');
@import url('./tokens.css');

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, #151926 0%, #08090c 70%);
}

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-highlight);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.badge-lime {
  background: var(--accent-lime);
  color: var(--text-inverse);
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.4);
}

.badge-orange {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
}

.badge-cyan {
  background: var(--accent-cyan);
  color: var(--text-inverse);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.badge-purple {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 0 12px rgba(157, 78, 221, 0.4);
}

.badge-outline {
  border: 1px solid var(--border-highlight);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   TICKER MARQUEE
   ========================================================================== */
.top-ticker {
  background: #000;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  z-index: 50;
}

.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.ticker-item strong {
  color: var(--accent-lime);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: 0 0 6px var(--accent-lime);
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: calc(var(--header-height) + 6px);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color var(--transition-normal);
}

.site-header.scrolled {
  background: var(--bg-glass-heavy);
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-lime), #8eb800);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: var(--shadow-glow-lime);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-symbol {
  transform: rotate(-6deg) scale(1.05);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-lime);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* PNG Logo Image */
.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  filter: brightness(1);
}

.brand-logo:hover .logo-img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.logo-img--footer {
  height: 40px;
  opacity: 0.9;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  list-style: none;
  position: relative;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-lime);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* ── Studio Dropdown ─────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
}

.nav-dropdown-trigger svg {
  flex-shrink: 0;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: rgba(12, 14, 18, 0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 300;
}

.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-item svg {
  opacity: 0.5;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}

.nav-dropdown-item:hover {
  background: rgba(200, 255, 0, 0.07);
  color: var(--accent-lime);
  transform: translateX(2px);
}

.nav-dropdown-item:hover svg {
  opacity: 1;
}

/* Tiny arrow / caret above panel */
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  background: rgba(12, 14, 18, 0.96);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: none;
}


/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Locale (Language & Currency) Switcher */
.locale-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  gap: 3px;
  backdrop-filter: blur(14px);
  transition: all var(--transition-fast);
  user-select: none;
  margin-left: 4px;
}

.locale-switcher:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.locale-pill-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
  transition: all var(--transition-fast);
}

.locale-pill-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.locale-pill-btn.active {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.locale-divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  pointer-events: none;
}

.action-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: var(--border-subtle);
  border-color: var(--border-highlight);
  color: var(--accent-lime);
  transform: translateY(-1px);
}

.action-btn svg {
  width: 20px;
  height: 20px;
}

.btn-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--font-mono);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(200, 255, 0, 0.6);
  transition: transform var(--transition-bounce);
}

.cart-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  width: auto;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.cart-toggle-btn:hover {
  border-color: var(--accent-lime);
}

.cart-price-preview {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-lime);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: var(--space-4xl) 0 var(--space-3xl);
  overflow: hidden;
}

.hero-glow-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.08) 0%, transparent 70%);
  top: -150px;
  left: 20%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.hero-meta-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: 0 0 10px var(--accent-lime);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
}

.hero-title .highlight-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  display: inline-block;
  transition: -webkit-text-stroke var(--transition-normal);
}

.hero-title .highlight-text:hover {
  -webkit-text-stroke: 1px var(--accent-lime);
  text-shadow: 0 0 30px rgba(200, 255, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-top: var(--space-xs);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow-lime);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(200, 255, 0, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

/* Hero Showcase Card */
.hero-visual-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(200, 255, 0, 0.1);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}

.hero-visual-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(200, 255, 0, 0.2);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2752 / 1536;
  overflow: hidden;
  background: #000;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.8s var(--ease-smooth);
}

.hero-visual-card:hover .hero-image-wrapper img {
  transform: scale(1.02);
}

.hero-card-overlay {
  display: none;
}

.hero-card-info h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}

.hero-card-info p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-lime);
}

/* ==========================================================================
   FEATURE BAR / TRUST BADGES
   ========================================================================== */
.features-section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(14, 17, 24, 0.4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-lime-dim);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CATALOG SECTION
   ========================================================================== */
.catalog-section {
  padding: 24px 0 var(--space-4xl);
  position: relative;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-3xl);
  gap: var(--space-xs);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent-lime);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Custom KlicaFont title */
.catalog-title-soft {
  font-family: 'KlicaFont', var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Catalog Controls: Categories & Search Bar */
.catalog-controls {
  margin-bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.category-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.category-btn:hover {
  color: #fff;
  border-color: var(--border-highlight);
  background: var(--bg-tertiary);
}

.category-btn.active {
  background: var(--bg-tertiary);
  color: #fff;
  border-color: var(--accent-lime);
  font-weight: 700;
  box-shadow: 0 0 10px rgba(200, 255, 0, 0.2);
}

/* Filter Toolbar */
.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 420px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.search-input {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 42px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.88rem;
  transition: border-color var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-lime);
  box-shadow: 0 0 0 1px var(--accent-lime-dim);
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  display: none;
}

.search-clear-btn.visible {
  display: block;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.select-wrapper {
  position: relative;
}

.custom-select {
  height: 42px;
  padding: 0 36px 0 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast);
}

.custom-select:focus {
  border-color: var(--border-highlight);
  color: #fff;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  width: 14px;
  height: 14px;
}

.wishlist-filter-btn {
  height: 42px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.wishlist-filter-btn:hover {
  color: #fff;
  border-color: var(--border-highlight);
}

.wishlist-filter-btn.active {
  background: rgba(255, 71, 87, 0.15);
  border-color: #ff4757;
  color: #ff4757;
}

.catalog-counter {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PRODUCT GRID & CARD
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

/* Skeleton Loading State */
.skeleton-card {
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.06);
}

.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  background-size: 200% 100%;
  animation: skeletonPulse 1.6s ease-in-out infinite;
  min-height: 280px;
}

.skeleton-line {
  height: 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: skeletonPulse 1.6s ease-in-out infinite;
  margin-bottom: 8px;
}

.skeleton-tag {
  width: 35%;
  height: 10px;
}

.skeleton-title {
  width: 75%;
  height: 16px;
  margin-bottom: 12px;
}

.skeleton-price {
  width: 40%;
  height: 14px;
}

@keyframes skeletonPulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Product Media */
.card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000000;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.card-media img.card-img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.6s var(--ease-smooth);
}

.product-card:hover .card-media img {
  transform: scale(1.08);
}

.product-card:hover .card-media img.card-img-secondary {
  opacity: 1;
}

.card-dual-view-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 12, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  transition: all var(--transition-fast);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-card:hover .card-dual-view-badge {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.12);
}

/* ── Watermark Overlay ─────────────────────────────────── */
.wm-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.wm-overlay span {
  white-space: nowrap;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-weight: 700;
  letter-spacing: 0.04em;
  user-select: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  /* color, opacity, font-size set inline via JS */
}

/* Position variants */
.wm-overlay[data-pos="top-left"] { align-items: flex-start; justify-content: flex-start; padding: 10px 12px; }
.wm-overlay[data-pos="top-right"] { align-items: flex-start; justify-content: flex-end; padding: 10px 12px; }
.wm-overlay[data-pos="bottom-left"] { align-items: flex-end; justify-content: flex-start; padding: 10px 12px; }
.wm-overlay[data-pos="bottom-right"] { align-items: flex-end; justify-content: flex-end; padding: 10px 12px; }
.wm-overlay[data-pos="center"] { align-items: center; justify-content: center; }

/* Diagonal tiled: use a repeating SVG-like approach via CSS */
.wm-overlay[data-pos="diagonal"] {
  align-items: center;
  justify-content: center;
}
.wm-overlay[data-pos="diagonal"] span {
  transform: rotate(-35deg);
  width: 200%;
  text-align: center;
  opacity: inherit;
}


.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.card-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8, 9, 12, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}

.card-wishlist-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

.card-wishlist-btn.active {
  background: #ff4757;
  color: #fff;
  border-color: #ff4757;
  box-shadow: 0 0 12px rgba(255, 71, 87, 0.5);
}

.card-quick-actions {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition-fast);
  z-index: 3;
}

.product-card:hover .card-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-btn {
  flex: 1;
  height: 40px;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.quick-view-btn:hover {
  background: #fff;
  color: #000;
}

.quick-add-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-lime);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.quick-add-btn:hover {
  background: var(--accent-lime-hover);
  transform: scale(1.05);
}

/* Card Body */
.card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.card-category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent-lime);
  text-transform: uppercase;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.card-title:hover {
  color: var(--accent-lime);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stars-row {
  color: #ffb703;
  display: flex;
  gap: 2px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: var(--space-xs);
}

.current-price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.original-price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Size Chips on Card */
.card-sizes-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.size-pill {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

/* Empty Results */
.empty-catalog {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-subtle);
}

.empty-catalog h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.empty-catalog p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* ==========================================================================
   STICKERS SPOTLIGHT SECTION (NEW)
   ========================================================================== */
.stickers-spotlight-section {
  padding: var(--space-4xl) 0;
  position: relative;
  background: radial-gradient(circle at 80% 50%, rgba(0, 240, 255, 0.06) 0%, transparent 60%);
}

.stickers-card-banner {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(20, 25, 38, 0.8) 0%, rgba(10, 12, 18, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stickers-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.stickers-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.stickers-title span {
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stickers-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.stickers-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.sticker-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #fff;
}

.sticker-perk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.stickers-gallery-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.sticker-preview-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-highlight);
  background: #000;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-smooth);
}

.sticker-preview-thumb:hover {
  transform: translateY(-6px) scale(1.02);
}

.sticker-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticker-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* ==========================================================================
   MODALS: QUICK VIEW & CHECKOUT
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.open,
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-content,
.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  color: #fff;
  background: var(--border-subtle);
  transform: rotate(90deg);
}

/* Quick View Layout */
.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
}

.quickview-image-box {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-smooth);
}

.quickview-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s var(--ease-smooth), padding 0.3s var(--ease-smooth);
}

/* When viewing Transparent PNG (Halftone), isolate image with contain and padding over the transparency grid */
.quickview-image-box.checkerboard-bg img {
  object-fit: contain;
  padding: 16px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

/* High-Contrast Checkerboard Transparency Grid (Photoshop / Illustrator Standard) */
.checkerboard-bg,
.quickview-image-box.checkerboard-bg,
.admin-drop-zone.checkerboard-bg,
.admin-preview-box.checkerboard-bg {
  background-color: #262b3d !important;
  background-image: 
    linear-gradient(45deg, #151824 25%, transparent 25%), 
    linear-gradient(-45deg, #151824 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #151824 75%), 
    linear-gradient(-45deg, transparent 75%, #151824 75%) !important;
  background-size: 24px 24px !important;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px !important;
}

.transparency-indicator-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 255, 0, 0.4);
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-lime);
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s ease-out;
}

.quickview-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quickview-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.15;
  color: #fff;
  margin-top: 6px;
}

.quickview-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.quickview-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.quickview-specs li {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quickview-specs li::before {
  content: '▸';
  color: var(--accent-lime);
}

/* ==========================================================================
   DTF / DTG TECHNICAL SPECS INFOGRAPHIC CARD (High-End Print Studio Edition)
   ========================================================================== */
.dtf-specs-card {
  margin: var(--space-md) 0;
  padding: 16px 18px;
  background: linear-gradient(145deg, rgba(16, 19, 26, 0.95), rgba(10, 12, 16, 0.98));
  border: 1px solid rgba(255, 190, 0, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.dtf-specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb703, #c8ff00, transparent);
}

.dtf-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 14px 0;
}

.dtf-section-divider:first-child {
  margin-top: 0;
}

.dtf-section-divider::before,
.dtf-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 183, 3, 0.4), transparent);
}

.dtf-section-divider::after {
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.4));
}

.dtf-divider-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ffb703;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dtf-divider-title.quality-header {
  color: #c8ff00;
}

.dtf-specs-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dtf-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.dtf-spec-item:hover {
  border-color: rgba(255, 183, 3, 0.5);
  transform: translateY(-1px);
}

.dtf-spec-icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, rgba(255, 183, 3, 0.05) 70%);
  border: 1px solid rgba(255, 183, 3, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb703;
}

.dtf-spec-texts {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dtf-spec-texts strong {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.dtf-spec-texts span {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.dtf-quality-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding-top: 2px;
}

.dtf-quality-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dtf-quality-badge:hover {
  background: rgba(200, 255, 0, 0.05);
  border-color: rgba(200, 255, 0, 0.35);
  transform: translateY(-2px);
}

.dtf-badge-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ffb703;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.18), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: #ffb703;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.15);
}

.dtf-quality-badge:hover .dtf-badge-icon-circle {
  border-color: #c8ff00;
  color: #c8ff00;
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.3);
}

.dtf-badge-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 1.2;
}

.dtf-badge-sub {
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .dtf-specs-top-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .dtf-quality-badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

@media (max-width: 580px) {
  .dtf-quality-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.size-selector-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selector-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sizes-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.size-btn:hover {
  border-color: var(--border-highlight);
  color: #fff;
}

.size-btn.selected {
  border-color: var(--accent-lime);
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-weight: 700;
}

.quantity-add-row {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.quantity-stepper {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.qty-btn {
  width: 38px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.qty-btn:hover {
  color: var(--accent-lime);
}

.qty-display {
  width: 40px;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
}

.modal-add-cart-btn {
  flex: 1;
  height: 46px;
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.modal-add-cart-btn:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   CART SLIDE-OVER DRAWER
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-highlight);
  z-index: 260;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Free Shipping Banner */
.shipping-meter-box {
  padding: var(--space-md) var(--space-xl);
  background: rgba(200, 255, 0, 0.05);
  border-bottom: 1px solid var(--border-subtle);
}

.meter-text {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.meter-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.meter-progress {
  height: 100%;
  background: linear-gradient(90deg, #b0e600, var(--accent-lime));
  box-shadow: 0 0 10px var(--accent-lime);
  width: 0%;
  transition: width 0.4s var(--ease-smooth);
}

/* Cart Items List */
.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-thumb {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.cart-item-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-lime);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.remove-item-btn {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.remove-item-btn:hover {
  color: #ff4757;
}

.item-qty-stepper {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  height: 28px;
}

.item-qty-stepper button {
  width: 24px;
  height: 100%;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.item-qty-stepper span {
  width: 26px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Empty Cart State */
.empty-cart-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  gap: var(--space-md);
}

.empty-cart-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Drawer Footer */
.drawer-footer {
  padding: var(--space-xl);
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Coupon Row */
.coupon-box {
  display: flex;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  height: 38px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.coupon-btn {
  padding: 0 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.coupon-btn:hover {
  background: var(--accent-lime);
  color: var(--text-inverse);
}

.coupon-status-tag {
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: rgba(200, 255, 0, 0.1);
  color: var(--accent-lime);
  border: 1px solid rgba(200, 255, 0, 0.3);
}

/* Calculations Table */
.summary-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
  margin-top: 4px;
}

.checkout-btn {
  width: 100%;
  height: 50px;
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-glow-lime);
  transition: all var(--transition-fast);
}

.checkout-btn:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   CHECKOUT MODAL
   ========================================================================== */
.checkout-modal-content {
  max-width: 820px;
  padding: var(--space-2xl);
}

.checkout-steps-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: var(--space-lg);
}

.checkout-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.checkout-step-indicator.active {
  color: var(--accent-lime);
}

.checkout-step-indicator.done {
  color: #fff;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.checkout-step-indicator.active .step-number {
  background: var(--accent-lime);
  color: var(--text-inverse);
  border-color: var(--accent-lime);
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.col-span-2 {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  height: 44px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  color: #fff;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-lime);
}

/* Payment Methods Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.payment-method-card {
  padding: var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-method-card:hover {
  border-color: var(--border-highlight);
}

.payment-method-card.selected {
  border-color: var(--accent-lime);
  background: rgba(200, 255, 0, 0.08);
}

/* Credit Card Simulated Preview */
.credit-card-preview {
  background: linear-gradient(135deg, #1c2233 0%, #0d1017 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: #fff;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 190px;
}

.card-preview-chip {
  width: 40px;
  height: 28px;
  background: linear-gradient(135deg, #e0a96d, #b8860b);
  border-radius: 4px;
}

.card-preview-number {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: #f1f2f6;
}

.card-preview-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Confirmation View */
.checkout-success-view {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.success-check-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-lime);
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(200, 255, 0, 0.6);
  animation: popIn 0.5s var(--ease-bounce);
}

@keyframes popIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.order-id-badge {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-highlight);
  color: var(--accent-lime);
}

/* ==========================================================================
   INSTANT DIGITAL DOWNLOAD HUB (CHECKOUT SUCCESS)
   ========================================================================== */
.digital-download-hub {
  width: 100%;
  max-width: 620px;
  background: linear-gradient(180deg, rgba(26, 31, 46, 0.95) 0%, rgba(14, 16, 23, 0.98) 100%);
  border: 1px solid rgba(200, 255, 0, 0.35);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(200, 255, 0, 0.12);
  text-align: left;
}

.digital-hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.digital-hub-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-lime);
  letter-spacing: 1px;
}

.download-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200, 255, 0, 0.12);
  border: 1px solid var(--accent-lime);
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.download-all-btn:hover {
  background: var(--accent-lime);
  color: #000;
  box-shadow: 0 0 15px rgba(200, 255, 0, 0.4);
}

.digital-files-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.digital-file-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: all var(--transition-fast);
}

.digital-file-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 255, 0, 0.3);
}

.digital-file-thumb {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.digital-file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.digital-file-info {
  flex: 1;
  min-width: 0;
}

.digital-file-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.digital-file-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.digital-file-meta {
  display: flex;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.digital-file-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.digital-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.digital-cloud-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--accent-cyan);
  transition: all var(--transition-fast);
}

.digital-cloud-btn:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.digital-hub-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.physical-shipping-notice {
  width: 100%;
  max-width: 620px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: left;
  margin-top: 10px;
}

@media (max-width: 640px) {
  .digital-file-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .digital-file-actions {
    width: 100%;
    justify-content: stretch;
  }
  .digital-file-actions a,
  .digital-file-actions button {
    flex: 1;
    justify-content: center;
  }
}

/* ==========================================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: var(--space-xl);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  padding: 12px 18px;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastSlideUp 0.3s var(--ease-bounce);
}

.toast.toast-lime {
  border-left: 4px solid var(--accent-lime);
}

.toast.toast-info {
  border-left: 4px solid var(--accent-cyan);
}

.toast-icon {
  font-size: 1.2rem;
  color: var(--accent-lime);
}

.toast-body {
  display: flex;
  flex-direction: column;
}

.toast-title {
  font-weight: 700;
  font-size: 0.85rem;
}

.toast-msg {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@keyframes toastSlideUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   LOOKBOOK & BRAND NARRATIVE
   ========================================================================== */
.lookbook-section {
  padding: var(--space-4xl) 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.lookbook-banner {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #10141f 0%, #08090c 100%);
  border: 1px solid var(--border-subtle);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.lookbook-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: var(--space-md);
}

.lookbook-info p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-size: 1rem;
}

.lookbook-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.lookbook-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #fff;
}

.lookbook-item svg {
  color: var(--accent-lime);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #050608;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 320px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: var(--space-md);
}

.newsletter-input {
  flex: 1;
  height: 42px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-size: 0.85rem;
  color: #fff;
}

.newsletter-btn {
  padding: 0 18px;
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--accent-lime-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-xl);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   DTF ART LAB & INTERACTIVE 360° APPAREL SIMULATOR
   ========================================================================== */
.dtf-lab-section {
  padding: var(--space-4xl) 0;
  position: relative;
  background: radial-gradient(circle at 30% 20%, rgba(200, 255, 0, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
              var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.dtf-simulator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .dtf-simulator-grid {
    grid-template-columns: 1fr;
  }
}

/* Stage Card */
.dtf-stage-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(0, 0, 0, 0.8);
  position: relative;
}

.dtf-stage-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.dtf-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-lime);
}

.dtf-quick-views {
  display: flex;
  gap: 6px;
}

.dtf-tool-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dtf-tool-btn:hover {
  color: #fff;
  border-color: var(--border-highlight);
}

.dtf-tool-btn.active {
  background: var(--accent-lime-dim);
  border-color: var(--border-focus);
  color: var(--accent-lime);
}

/* 3D Viewport */
.tshirt-3d-viewport {
  height: 480px;
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, rgba(30, 36, 50, 0.5) 0%, rgba(10, 12, 16, 0.95) 75%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: grab;
  user-select: none;
  overflow: hidden;
}

.tshirt-3d-viewport:active {
  cursor: grabbing;
}

.tshirt-stage-ambient {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* The 3D T-Shirt Model Container */
.tshirt-3d-model {
  width: 340px;
  height: 420px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.08s linear;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
}

/* T-Shirt Front and Back Faces */
.tshirt-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background-color: #0c0e12;
  /* Streetwear Boxy Heavyweight Tee Silhouette */
  clip-path: polygon(
    28% 0%, 72% 0%,       /* Neckline base */
    78% 8%, 100% 20%,     /* Right shoulder & sleeve top */
    92% 38%, 81% 32%,     /* Right sleeve opening & armpit */
    83% 100%, 17% 100%,   /* Right hem to left hem */
    19% 32%, 8% 38%,      /* Left armpit & sleeve opening */
    0% 20%, 22% 8%        /* Left sleeve top & shoulder */
  );
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.tshirt-face--front {
  transform: translateZ(1px);
}

.tshirt-face--back {
  transform: rotateY(180deg) translateZ(1px);
}

/* Realistic Collar Details */
.tshirt-collar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 38px;
  border-bottom: 5px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 50px 50px;
  box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.back-collar {
  height: 18px;
  border-bottom-width: 4px;
}

/* Realistic dropped shoulder seam lines */
.tshirt-seam-left, .tshirt-seam-right {
  position: absolute;
  top: 10%;
  width: 2px;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.tshirt-seam-left { left: 24%; transform: rotate(-25deg); }
.tshirt-seam-right { right: 24%; transform: rotate(25deg); }

.tshirt-yoke-seam {
  position: absolute;
  top: 18%;
  left: 20%;
  right: 20%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* Dynamic Print Zones */
.tshirt-print-zone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
}

.tshirt-print-zone.placement-chest {
  top: 88px;
  width: 175px;
  height: 210px;
}

.tshirt-print-zone.placement-pocket {
  top: 96px;
  left: 36%;
  width: 72px;
  height: 85px;
}

.tshirt-print-zone.placement-back {
  top: 72px;
  width: 210px;
  height: 250px;
}

.tshirt-art-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.65));
  mix-blend-mode: screen;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Realistic Fabric Sheen / Weave Overlay */
.tshirt-fabric-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Drag Hint */
.tshirt-drag-hint {
  position: absolute;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 10, 14, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  pointer-events: none;
}

/* Stage Controls Toolbar */
.dtf-stage-controls {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.dtf-control-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dtf-control-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.dtf-color-swatches {
  display: flex;
  gap: 8px;
}

.dtf-color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dtf-color-dot:hover {
  transform: scale(1.15);
}

.dtf-color-dot.active {
  border-color: var(--accent-lime);
  box-shadow: 0 0 10px var(--accent-lime);
  transform: scale(1.15);
}

.dtf-active-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.dtf-placement-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dtf-place-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dtf-place-btn:hover {
  color: #fff;
  border-color: var(--border-highlight);
}

.dtf-place-btn.active {
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-weight: 700;
  border-color: var(--accent-lime);
}

/* Right Info Panel */
.dtf-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dtf-active-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 8px;
}

.dtf-price-strip {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.dtf-lead-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Heat Press Specifications Card */
.dtf-heatpress-card {
  background: rgba(14, 17, 24, 0.75);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.heatpress-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.heatpress-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.heatpress-spec-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
}

.heatpress-spec-item .spec-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.heatpress-spec-item strong {
  font-size: 0.85rem;
  color: #fff;
}

/* Art Library Selector */
.dtf-library-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dtf-library-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  color: #fff;
}

.dtf-art-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dtf-art-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dtf-art-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.dtf-art-card.active {
  background: rgba(200, 255, 0, 0.06);
  border-color: var(--accent-lime);
  box-shadow: 0 0 15px rgba(200, 255, 0, 0.2);
}

.dtf-card-thumb {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}

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

.dtf-card-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 2px;
}

.dtf-card-meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dtf-card-meta strong {
  font-size: 0.8rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dtf-card-meta span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-lime);
}

.dtf-license-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}


/* ==========================================================================
   ADMIN PIN VERIFICATION MODAL
   ========================================================================== */
.admin-pin-card {
  max-width: 440px;
  width: 90%;
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border: 1px solid var(--border-highlight);
  background: var(--bg-glass-heavy);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(200, 255, 0, 0.15);
  position: relative;
}

.admin-lock-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-lime-dim);
  border: 1px solid var(--border-focus);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.3);
}

.admin-pin-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: #fff;
}

.admin-pin-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.admin-pin-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.admin-pin-input {
  flex: 1;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--accent-lime);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.admin-pin-input:focus {
  border-color: var(--accent-lime);
  box-shadow: 0 0 16px rgba(200, 255, 0, 0.3);
}

.admin-pin-error {
  color: var(--accent-orange);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  margin-bottom: var(--space-sm);
}

.admin-pin-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ==========================================================================
   ADMIN STUDIO MODAL (PRODUCT CREATOR & INVENTORY)
   ========================================================================== */
.admin-studio-content {
  max-width: 1140px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  background: rgba(11, 14, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(200, 255, 0, 0.15);
  backdrop-filter: blur(20px);
}

.admin-studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.admin-studio-brand h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-top: 6px;
  color: #fff;
}

.admin-studio-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.admin-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-highlight);
}

.admin-tab-btn.active {
  background: var(--accent-lime-dim);
  border-color: var(--border-focus);
  color: var(--accent-lime);
  box-shadow: 0 0 15px rgba(200, 255, 0, 0.2);
}

.admin-tab-pane {
  display: none;
}

.admin-tab-pane.active {
  display: block;
}

/* Form Layout */
.admin-form-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 900px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}

.admin-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.admin-input, .admin-select, .admin-textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.admin-input:focus, .admin-select:focus, .admin-textarea:focus {
  border-color: var(--accent-lime);
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.25);
}

.admin-textarea {
  resize: vertical;
  line-height: 1.5;
}

.admin-fields-row {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.admin-field-group {
  margin-bottom: var(--space-md);
  flex: 1;
}

.admin-field-group.flex-2 {
  flex: 2;
}

.admin-field-group.flex-1 {
  flex: 1;
}

/* File Upload & Drop Zone */
.admin-drop-zone {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  background: rgba(14, 17, 24, 0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-drop-zone:hover, .admin-drop-zone.dragover {
  border-color: var(--accent-lime);
  background: rgba(200, 255, 0, 0.04);
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.15);
}

.admin-file-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.admin-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.admin-upload-icon {
  color: var(--accent-lime);
  margin-bottom: 4px;
}

.admin-drop-content strong {
  font-size: 0.95rem;
  color: #fff;
}

.admin-drop-content span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.admin-file-specs {
  font-size: 0.7rem !important;
  color: var(--text-muted) !important;
}

.admin-preview-box {
  position: relative;
  width: 100%;
  max-height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.admin-preview-box img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.admin-remove-img-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.admin-remove-img-btn:hover {
  background: var(--accent-orange);
}

.admin-or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: var(--space-md) 0;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-family: var(--font-mono);
}

.admin-or-divider::before, .admin-or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-or-divider span {
  padding: 0 10px;
}

/* Chip Checkboxes for Sizes */
.admin-chips-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-chip {
  cursor: pointer;
}

.admin-chip input {
  display: none;
}

.admin-chip span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.admin-chip input:checked + span {
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-weight: 700;
  border-color: var(--accent-lime);
  box-shadow: 0 0 10px rgba(200, 255, 0, 0.4);
}

.admin-color-picker {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  padding: 0;
}

.admin-color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.admin-color-picker::-webkit-color-swatch {
  border: none;
  border-radius: calc(var(--radius-sm) - 1px);
}

/* Inventory Tab */
.admin-inventory-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-lg);
}

.admin-inv-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.admin-inventory-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(14, 17, 24, 0.4);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.admin-piece-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  background: #000;
  border: 1px solid var(--border-subtle);
}

.admin-edit-btn {
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.3);
  color: var(--accent-lime);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
}

.admin-edit-btn:hover {
  background: var(--accent-lime);
  color: var(--text-inverse);
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.4);
}

.admin-delete-btn {
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.3);
  color: var(--accent-orange);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-delete-btn:hover {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
}

.admin-edit-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid var(--accent-lime);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: #fff;
  font-size: 0.85rem;
}

.admin-edit-alert code {
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 2px 6px;
  background: rgba(0,0,0,0.4);
  border-radius: 4px;
}

/* DTF Dual Upload Mode */
.dtf-dual-upload-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgba(200, 255, 0, 0.05);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: var(--radius-sm);
}

.dtf-dual-upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dtf-upload-slot {
  display: flex;
  flex-direction: column;
}

.admin-drop-zone.dtf-mini-zone {
  min-height: 160px;
}

.admin-drop-zone.dtf-mini-zone .admin-drop-content {
  gap: 6px;
}

/* DTF Quick View Switcher & Checkerboard Pattern */
.dtf-view-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  background: var(--bg-tertiary);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  width: fit-content;
}

.dtf-toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dtf-toggle-pill:hover {
  color: #fff;
}

.dtf-toggle-pill.active {
  background: var(--accent-lime);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(200, 255, 0, 0.3);
}

/* Garment Dual View (Front & Back) Switcher in QuickView */
.garment-view-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  background: var(--bg-tertiary);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  width: fit-content;
}

.garment-toggle-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.garment-toggle-pill:hover {
  color: #fff;
}

.garment-toggle-pill.active {
  background: var(--accent-lime);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(200, 255, 0, 0.3);
}

.garment-toggle-pill.pill-front.active {
  background: var(--accent-cyan);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(0, 229, 255, 0.3);
}

.quickview-image-box.checkerboard-bg {
  background-color: #12141c !important;
  background-image: 
    linear-gradient(45deg, #1c202e 25%, transparent 25%), 
    linear-gradient(-45deg, #1c202e 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #1c202e 75%), 
    linear-gradient(-45deg, transparent 75%, #1c202e 75%) !important;
  background-size: 20px 20px !important;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px !important;
}

.quickview-image-box.checkerboard-bg img {
  object-fit: contain !important;
  padding: 24px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

.dtf-slot-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-lime);
  color: var(--text-inverse);
  font-size: 0.65rem;
  font-weight: 900;
  margin-right: 6px;
  vertical-align: middle;
}

/* Custom Size Adder Row in Admin */
.admin-custom-size-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.admin-custom-size-row input {
  height: 38px;
  font-size: 0.85rem;
}

/* DTF Specific Infographic Settings Box in Admin */
.admin-dtf-specs-box {
  background: rgba(255, 183, 3, 0.04);
  border: 1px solid rgba(255, 183, 3, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.admin-dtf-specs-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffb703;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.2);
}

.admin-quick-presets {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.preset-pill {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-pill:hover {
  border-color: #ffb703;
  color: #fff;
}

.preset-pill.active {
  background: rgba(255, 183, 3, 0.2);
  border-color: #ffb703;
  color: #ffb703;
  font-weight: 700;
}

/* Hats & Caps Specific Configuration Box in Admin */
.admin-hats-specs-box {
  background: rgba(224, 169, 109, 0.05);
  border: 1px solid rgba(224, 169, 109, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.admin-hats-specs-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e0a96d;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(224, 169, 109, 0.2);
}

.preset-pill-hat, .preset-pill-patch {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-pill-hat:hover, .preset-pill-patch:hover {
  border-color: #e0a96d;
  color: #fff;
}

.preset-pill-hat.active {
  background: rgba(224, 169, 109, 0.2);
  border-color: #e0a96d;
  color: #e0a96d;
  font-weight: 700;
}

.preset-pill-patch.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Hats Showcase Infographic in Quick View */
.hats-showcase-box {
  margin: 10px 0 14px;
  background: linear-gradient(135deg, rgba(28, 22, 16, 0.85) 0%, rgba(14, 16, 23, 0.9) 100%);
  border: 1px solid rgba(224, 169, 109, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.hats-showcase-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e0a96d;
  margin-bottom: 8px;
}

.hats-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hat-tech-tag {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #d8dee9;
}

.hat-tech-tag strong {
  color: #e0a96d;
}

/* Digital PNG Asset Notice in Quick View */
.dtf-digital-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-sm);
  color: #d1f4ff;
  font-size: 0.8rem;
  line-height: 1.45;
  margin-top: 4px;
}

.dtf-digital-notice svg {
  flex-shrink: 0;
  color: var(--accent-cyan);
  margin-top: 2px;
}

.dtf-digital-notice strong {
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   DTF / DTG TECHNICAL SPECS INFOGRAPHIC (QUICK VIEW & DETAILS)
   ========================================================================== */
.dtf-specs-card {
  margin: 12px 0 16px;
  background: linear-gradient(135deg, rgba(20, 24, 33, 0.95) 0%, rgba(10, 12, 18, 0.95) 100%);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.dtf-specs-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.dtf-specs-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.4), transparent);
}

.dtf-specs-title {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ffb703;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 183, 3, 0.4);
}

.dtf-specs-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dtf-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dtf-feature-item:hover {
  border-color: rgba(255, 183, 3, 0.4);
  background: rgba(255, 183, 3, 0.05);
  transform: translateY(-2px);
}

.dtf-feature-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.3) 0%, rgba(255, 140, 0, 0.1) 70%, transparent 100%);
  border: 1px solid rgba(255, 183, 3, 0.5);
  color: #ffb703;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.2);
}

.dtf-feature-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dtf-feature-meta strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dtf-feature-meta span {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.dtf-quality-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dtf-quality-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(200, 255, 0, 0.06);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: var(--radius-xs);
  font-size: 0.7rem;
  font-weight: 600;
  color: #e0f2fe;
}

.dtf-quality-tag svg {
  color: var(--accent-lime);
  flex-shrink: 0;
}

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




/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-subtitle {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stickers-card-banner {
    grid-template-columns: 1fr;
  }
  .lookbook-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .nav-menu {
    display: none;
  }
  .container {
    padding: 0 var(--space-md);
  }
  .filter-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .toolbar-actions {
    justify-content: space-between;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-md);
  }
  .stickers-perks-grid {
    grid-template-columns: 1fr;
  }
  .quickview-grid {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.col-span-2 {
    grid-column: span 1;
  }
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ==========================================================================
   WHATSAPP ORDER & BULK QUOTE MODAL SYSTEM
   ========================================================================== */
/* ── Custom Quote — Ghost Style ──────────────────────────── */
.btn-quote-header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-quote-header svg {
  width: 11px;
  height: 11px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.btn-quote-header:hover {
  background: rgba(200, 255, 0, 0.08);
  border-color: var(--accent-lime);
  color: var(--accent-lime);
  box-shadow: 0 0 12px rgba(200, 255, 0, 0.2);
  transform: translateY(-1px);
}

.btn-quote-header:hover svg {
  opacity: 1;
}

.whatsapp-order-btn {
  width: 100%;
  margin-top: 10px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.12);
  border: 1.5px solid #25d366;
  border-radius: var(--radius-sm);
  color: #25d366;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.whatsapp-order-btn:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

.email-order-btn {
  width: 100%;
  margin-top: 8px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 229, 255, 0.1);
  border: 1.5px solid var(--accent-cyan);
  border-radius: var(--radius-sm);
  color: var(--accent-cyan);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.email-order-btn:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.45);
  transform: translateY(-1px);
}

.quote-modal-card {
  max-width: 620px;
  width: 92%;
  padding: 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
  max-height: 90vh;
  overflow-y: auto;
}

.quote-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.quote-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(200, 255, 0, 0.12);
  border: 1px solid var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lime);
  flex-shrink: 0;
}

.quote-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 4px 0;
}

.quote-modal-header p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.btn-whatsapp-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  background: #25d366;
  border: none;
  border-radius: var(--radius-sm);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-whatsapp-quote:hover {
  background: #20ba59;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
}

/* ==========================================================================
   MODAL: VIP SUPPORT & CLIENT CONCIERGE
   ========================================================================== */
.support-modal-card {
  max-width: 820px;
  max-height: 90vh;
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 229, 255, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.support-modal-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.05) 0%, transparent 100%);
}

.support-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(198, 255, 0, 0.1);
  border: 1px solid rgba(198, 255, 0, 0.3);
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.support-header-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0 0 4px 0;
}

.support-header-info p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Nav Tabs */
.support-nav-tabs {
  display: flex;
  gap: 6px;
  padding: 12px 28px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.support-nav-tabs::-webkit-scrollbar {
  display: none;
}

.support-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.support-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
}

.support-tab-btn.active {
  color: var(--accent-lime);
  background: rgba(198, 255, 0, 0.08);
  border-color: rgba(198, 255, 0, 0.3);
  box-shadow: 0 0 12px rgba(198, 255, 0, 0.15);
}

/* Tab Panes */
.support-tab-content {
  padding: 24px 28px 28px;
  overflow-y: auto;
  max-height: calc(90vh - 160px);
}

.support-pane {
  display: none;
}

.support-pane.active {
  display: block;
  animation: fadeInModal 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Channel Cards Grid */
.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.support-channel-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.support-channel-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-highlight);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.support-channel-card.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.3);
}

.support-channel-card.whatsapp-card:hover {
  border-color: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.support-channel-card.email-card {
  border-color: rgba(0, 229, 255, 0.3);
}

.support-channel-card.email-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.channel-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.channel-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon-badge.wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.channel-icon-badge.mail {
  background: rgba(0, 229, 255, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.channel-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.channel-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.channel-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 18px;
}

/* Info Banner in Support */
.support-info-banner {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.support-info-stat strong {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.support-info-stat span {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

/* Size Guide Elements */
.size-guide-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.size-category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-cat-btn {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-cat-btn:hover {
  color: #fff;
  border-color: var(--border-highlight);
}

.size-cat-btn.active {
  background: var(--accent-cyan);
  color: #000;
  border-color: var(--accent-cyan);
  font-weight: 700;
}

.size-unit-toggle {
  display: inline-flex;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.unit-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 4px 10px;
  font-size: 0.74rem;
  font-family: var(--font-mono);
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.unit-btn.active {
  background: var(--accent-lime);
  color: #000;
}

.size-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.82rem;
}

.size-table th {
  background: var(--bg-primary);
  color: var(--accent-lime);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.size-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.size-table tr:last-child td {
  border-bottom: none;
}

.size-table tr:hover td {
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
}

.size-table td strong {
  color: #fff;
  font-family: var(--font-mono);
}

.fit-note-card {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fit-note-card svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-note-card p {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.45;
}

.fit-note-card strong {
  color: #fff;
}

/* Order Tracking */
.tracking-search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tracking-input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.tracking-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.tracking-result-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.tracking-timeline {
  display: flex;
  justify-content: space-between;
  margin: 24px 0 16px;
  position: relative;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--border-subtle);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
}

.step-node {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 6px;
  transition: all var(--transition-fast);
}

.timeline-step.completed .step-node {
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  color: #000;
}

.timeline-step.active .step-node {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.step-label {
  font-size: 0.68rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  line-height: 1.25;
}

.timeline-step.completed .step-label,
.timeline-step.active .step-label {
  color: #fff;
  font-weight: 700;
}

/* Policies & Care Cards */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.policy-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.policy-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lime);
}

.policy-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.policy-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Care Grid */
.care-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.care-item-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}

.care-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.care-title {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.care-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Compact Support Action Buttons */
.support-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.support-action-btn.wa-btn {
  background: #25d366;
  color: #000;
  border: 1px solid #25d366;
  width: 100%;
}

.support-action-btn.wa-btn:hover {
  background: #20ba59;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.support-action-btn.email-btn {
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.35);
  flex: 1;
}

.support-action-btn.email-btn:hover {
  background: rgba(0, 229, 255, 0.16);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
  transform: translateY(-1px);
}

.support-copy-btn {
  height: 38px;
  width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.support-copy-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: var(--border-highlight);
  transform: translateY(-1px);
}

.support-action-btn.tracking-btn {
  background: var(--accent-lime);
  color: #000;
  border: 1px solid var(--accent-lime);
  height: 42px;
  padding: 0 18px;
}

.support-action-btn.tracking-btn:hover {
  background: var(--accent-lime-hover);
  box-shadow: 0 0 16px rgba(198, 255, 0, 0.4);
  transform: translateY(-1px);
}

/* ==========================================================================
   FLOATING WHATSAPP SUPPORT CONCIERGE
   ========================================================================== */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 280;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-family: var(--font-sans);
}

.whatsapp-floating-tooltip {
  background: rgba(10, 12, 18, 0.94);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 9999px;
  padding: 5px 12px;
  font-size: 0.74rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  animation: floatTooltipFade 0.4s ease forwards;
}

.tooltip-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
  display: inline-block;
  animation: pulseGreenDot 2s infinite ease-in-out;
}

.floating-whatsapp-btn {
  background: linear-gradient(135deg, #1b3823 0%, #0d1b11 100%);
  border: 1px solid rgba(37, 211, 102, 0.6);
  border-radius: 9999px;
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 16px rgba(37, 211, 102, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65), 0 0 25px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #224d2e 0%, #112618 100%);
}

.floating-whatsapp-btn:active {
  transform: translateY(0) scale(0.98);
}

.wa-icon-pulse-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.wa-live-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-lime);
  border: 1.5px solid #000;
  box-shadow: 0 0 8px var(--accent-lime);
}

.wa-btn-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5f7fa;
  white-space: nowrap;
}

@keyframes pulseGreenDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

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

@media (max-width: 640px) {
  .floating-whatsapp-wrap {
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-floating-tooltip {
    display: none;
  }
  .wa-btn-label {
    display: none;
  }
  .floating-whatsapp-btn {
    padding: 12px;
    border-radius: 50%;
  }
}



