/* ================================================================
   EASEZORB SHARED CSS FRAMEWORK
   Spill Management Solutions - Product Catalog & Pages

   Light theme (#FFFFFF + #FFCE00 gold)

   Fonts: Bricolage Grotesque | Outfit | JetBrains Mono
   ================================================================ */

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

/* ========================================
   2. CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  /* Backgrounds */
  --bg-base: #FFFFFF;
  --bg-surface: #F7F7F5;
  --bg-card: #FFFFFF;
  --bg-elevated: #F0F0EE;
  --bg-hover: #E8E8E6;

  /* Gold palette */
  --gold: #FFCE00;
  --gold-light: #FFE04D;
  --gold-dark: #C9A200;
  --gold-glow: rgba(255, 206, 0, 0.08);
  --gold-glow-strong: rgba(255, 206, 0, 0.18);

  /* Text */
  --text-white: #1A1A1A;
  --text-gray: #666666;
  --text-dim: #999999;

  /* Semantic colors */
  --green: #34D399;
  --red: #EF4444;
  --blue: #60A5FA;

  /* Borders */
  --border: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.1);
  --border-gold: rgba(255, 206, 0, 0.3);

  /* Header */
  --header-bg: rgba(255, 255, 255, 0.9);
  --header-shadow: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Layout */
  --max-w: 1280px;
  --section-pad: clamp(60px, 8vw, 100px);

  /* Shadows */
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Noise overlay opacity */
  --noise-opacity: 0.015;
}


/* ========================================
   4. BASE STYLES
   ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise overlay for texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}

input, select, textarea {
  font-family: var(--font-body);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   5. SCROLL / REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ========================================
   6. HAZARD STRIPE DECORATION
   ======================================== */
.hazard-stripe {
  height: 4px;
  background: repeating-linear-gradient(
    -45deg,
    var(--gold) 0px, var(--gold) 8px,
    var(--bg-base) 8px, var(--bg-base) 16px
  );
  width: 100%;
}

/* ========================================
   6b. CATEGORIES BAR (below header)
   ======================================== */
.categories-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin-top: 0;
}

.categories-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.categories-bar-inner::-webkit-scrollbar {
  display: none;
}

.cat-dropdown {
  position: relative;
}

.cat-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
}

.cat-dropdown-toggle:hover {
  background: var(--bg-hover);
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.cat-dropdown-toggle svg {
  transition: transform 0.2s;
}

.cat-dropdown:hover .cat-dropdown-toggle svg {
  transform: rotate(180deg);
}

.cat-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow-hover);
  z-index: 100;
  padding: 6px 0;
}

.cat-dropdown:hover .cat-dropdown-menu {
  display: block;
}

.cat-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-gray);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.cat-dropdown-menu a:hover {
  background: var(--gold-glow);
  color: var(--text-white);
}

@media (max-width: 768px) {
  .categories-bar-inner {
    padding: 0 16px;
    gap: 0;
  }
  .cat-dropdown-toggle {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

/* ========================================
   7. STICKY HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px var(--header-shadow);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo img {
  height: 32px;
  width: auto;
}

/* Logo display */
.header-logo .logo-black { display: block; }
.header-logo .logo-white { display: none; }

.header-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text-white);
}

.header-nav a.active {
  color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-gray);
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--text-white);
}

.header-phone svg {
  flex-shrink: 0;
}

.header-cta {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px var(--gold-glow-strong);
  transform: translateY(-1px);
}

/* ========================================
   7b. HEADER CATEGORY DROPDOWNS
   ======================================== */
.header-categories {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-cat-dropdown {
  position: relative;
}

.header-cat-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
  white-space: nowrap;
  transition: color 0.2s;
}

.header-cat-toggle:hover {
  color: var(--text-white);
}

.header-cat-toggle svg {
  transition: transform 0.2s;
}

.header-cat-dropdown:hover .header-cat-toggle svg {
  transform: rotate(180deg);
}

.header-cat-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow-hover);
  z-index: 200;
  padding: 6px 0;
}

.header-cat-dropdown:hover .header-cat-menu {
  display: block;
}

.header-cat-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  color: var(--text-gray);
  transition: background 0.15s, color 0.15s;
}

.header-cat-menu a:hover {
  background: var(--gold-glow);
  color: var(--text-white);
}

/* ========================================
   7c. HEADER SEARCH BAR
   ======================================== */
.header-search {
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.header-search input {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--text-white);
  width: 180px;
  outline: none;
}

.header-search input::placeholder {
  color: var(--text-dim);
}

.header-search button {
  background: none;
  border: none;
  padding: 8px 12px 8px 0;
  cursor: pointer;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.header-search button:hover {
  color: var(--gold);
}

/* Mobile search toggle - visible only on mobile */
.header-search-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.header-search-toggle:hover {
  color: var(--gold);
}

/* ========================================
   8. MOBILE HAMBURGER MENU
   ======================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-line + .hamburger-line {
  margin-top: 5px;
}

/* Hamburger open state -> X */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-base);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

.mobile-menu .mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-gray);
}

.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 16px;
  min-height: 48px;
}

/* Mobile Search */
.mobile-search {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.mobile-search input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: var(--text-white);
  outline: none;
}

.mobile-search input::placeholder {
  color: var(--text-dim);
}

.mobile-search button {
  background: none;
  border: none;
  padding: 14px 16px;
  cursor: pointer;
  color: var(--text-dim);
  display: flex;
  align-items: center;
}

/* Mobile Menu Divider & Label */
.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.mobile-menu-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 12px 0 4px;
}

/* Mobile Category Groups */
.mobile-cat-group {
  border-bottom: 1px solid var(--border);
}

.mobile-cat-parent {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white) !important;
}

.mobile-cat-children {
  padding: 0 0 12px 16px;
}

.mobile-cat-children a {
  display: block;
  padding: 8px 0 !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  color: var(--text-gray) !important;
  border-bottom: none !important;
}


/* ========================================
   10. ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 64px;
}

.announcement-bar strong {
  font-weight: 800;
}

/* ========================================
   11. PRODUCT PAGE HERO
   ======================================== */
.hero {
  padding: 48px 0 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--gold-glow) 0%, transparent 60%),
    var(--bg-base);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Image Gallery */
.gallery {
  display: flex;
  gap: 12px;
  position: sticky;
  top: 88px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, opacity 0.25s;
  opacity: 0.5;
  background: var(--bg-card);
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

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

.gallery-main {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 1;
  border: 1px solid var(--border);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ========================================
   12. PRODUCT INFO
   ======================================== */
.product-info {
  padding-top: 8px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-breadcrumb a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: var(--gold);
}

.product-breadcrumb span {
  color: var(--gold);
}

.product-breadcrumb svg {
  flex-shrink: 0;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.product-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  font-weight: 400;
  margin-bottom: 20px;
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.rating-text {
  font-size: 0.88rem;
  color: var(--text-gray);
}

.rating-text strong {
  color: var(--text-white);
  font-weight: 600;
}

.rating-link {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  border-bottom: 1px dashed var(--gold-dark);
  transition: opacity 0.2s;
}

.rating-link:hover {
  opacity: 0.8;
}

/* ========================================
   13. PRICE BLOCK
   ======================================== */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.price-original {
  font-size: 1.2rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 400;
}

.price-save {
  background: rgba(52, 211, 153, 0.12);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* ========================================
   14. STOCK INDICATOR
   ======================================== */
.stock-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.stock-indicator span {
  color: var(--green);
  font-weight: 600;
}

.stock-indicator .stock-note {
  color: var(--text-dim);
  font-weight: 400;
}

/* ========================================
   15. DIVIDER
   ======================================== */
.info-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

/* ========================================
   16. PURCHASE ROW (Quantity + CTA)
   ======================================== */
.purchase-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.qty-btn {
  width: 44px;
  height: 48px;
  background: transparent;
  color: var(--text-gray);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  min-height: 48px;
}

.qty-btn:hover {
  background: var(--bg-hover);
  color: var(--text-white);
}

.qty-input {
  width: 48px;
  height: 48px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

/* Primary CTA button */
.btn-primary {
  flex: 1;
  height: 52px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 32px var(--gold-glow-strong), 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

/* Secondary button */
.btn-secondary {
  flex: 1;
  height: 52px;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  min-height: 48px;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

/* ========================================
   17. TRUST ROW / BADGES
   ======================================== */
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ========================================
   18. SECTION UTILITY STYLES
   ======================================== */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   19. BENEFITS BAR
   ======================================== */
.benefits-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-top: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-item:hover {
  background: var(--bg-elevated);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.benefit-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}

.benefit-text p {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.4;
}

/* ========================================
   20. DESCRIPTION SECTION
   ======================================== */
.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.desc-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.desc-content p {
  color: var(--text-gray);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.desc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.desc-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.desc-features li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.desc-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desc-visual-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.desc-visual-img img {
  padding: 24px;
}

.desc-visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold-glow-strong), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ========================================
   21. KIT CONTENTS
   ======================================== */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kit-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.kit-card:hover::before {
  transform: scaleX(1);
}

.kit-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.kit-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.kit-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.kit-card .kit-qty {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.kit-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ========================================
   22. SPECS TABLE
   ======================================== */
.specs-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.specs-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row:hover {
  background: var(--bg-elevated);
}

.specs-label {
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.specs-value {
  padding: 16px 24px;
  font-size: 0.92rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
}

/* ========================================
   22b. CATEGORY SLIDER
   ======================================== */
.cat-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 0 16px;
  -webkit-overflow-scrolling: touch;
}

.cat-slider-track::-webkit-scrollbar {
  display: none;
}

.cat-slider-item {
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.cat-slider-item:hover {
  transform: translateY(-4px);
}

.cat-slider-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cat-slider-item:hover .cat-slider-img {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow-strong);
}

.cat-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-slider-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  display: block;
  line-height: 1.3;
}

.cat-slider-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: all 0.2s;
  z-index: 2;
}

.cat-slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

@media (max-width: 768px) {
  .cat-slider-btn {
    display: none;
  }
  .cat-slider-item {
    width: 110px;
  }
  .cat-slider-img {
    width: 90px;
    height: 90px;
  }
  .cat-slider-name {
    font-size: 0.78rem;
  }
}

/* ========================================
   23. APPLICATIONS GRID
   ======================================== */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.app-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.app-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.app-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.app-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.app-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ========================================
   24. STATS BAR (with counter animation)
   ======================================== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Counter animation (JS adds .counting class) */
.stat-number {
  display: inline-block;
  transition: opacity 0.3s;
}

/* ========================================
   25. REVIEWS
   ======================================== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.reviews-big-score {
  text-align: center;
  flex-shrink: 0;
}

.reviews-big-score .score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.reviews-big-score .out-of {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.reviews-bars {
  flex: 1;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.review-bar-row span:first-child {
  font-size: 0.78rem;
  color: var(--text-dim);
  width: 40px;
  text-align: right;
  font-family: var(--font-mono);
}

.review-bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg-elevated);
  border-radius: 100px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-bar-row span:last-child {
  font-size: 0.75rem;
  color: var(--text-dim);
  width: 24px;
  font-family: var(--font-mono);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: var(--border-gold);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.review-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.review-stars {
  display: flex;
  gap: 1px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
}

.review-verified svg {
  width: 12px;
  height: 12px;
}

/* ========================================
   26. FAQ ACCORDION
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  min-height: 48px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--text-gray);
}

.faq-item.open .faq-icon svg {
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ========================================
   27. RELATED PRODUCTS
   ======================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.related-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.related-card-img {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.related-card-img img {
  max-height: 200px;
  object-fit: contain;
}

.related-card-body {
  padding: 20px;
}

.related-card-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.related-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.related-card-price .current {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

.related-card-price .original {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

/* ========================================
   28. FINAL CTA BANNER
   ======================================== */
.final-cta {
  padding: var(--section-pad) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, var(--gold-glow-strong) 0%, transparent 60%),
    var(--bg-base);
  position: relative;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 40px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================================
   28b. TRUST BAR (above footer)
   ======================================== */
.trust-bar-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-bar-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-bar-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.trust-bar-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.trust-bar-item span {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.footer-contact-info a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-contact-info .footer-address {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.footer-legal-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal-info small {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   29. FOOTER
   ======================================== */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

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

.footer-brand .header-logo {
  display: inline-block;
  margin-bottom: 8px;
}

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

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-payment {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: none;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* ========================================
   30. SHOP / CATALOG HERO
   ======================================== */
.shop-hero {
  padding: 48px 0 56px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 20%, var(--gold-glow) 0%, transparent 50%),
    var(--bg-base);
  margin-top: 64px;
}

.shop-hero .section-label {
  margin-bottom: 16px;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.shop-hero-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.shop-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.shop-hero-stat {
  text-align: center;
}

.shop-hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.shop-hero-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ========================================
   31. CATEGORY FILTER TABS
   ======================================== */
.filter-section {
  padding: 0 0 40px;
  background: var(--bg-base);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-tab:hover {
  border-color: var(--border-gold);
  color: var(--text-white);
  background: var(--bg-elevated);
}

.filter-tab.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}

.filter-tab .count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  margin-left: 8px;
  opacity: 0.6;
}

.filter-tab.active .count {
  opacity: 0.8;
}

/* ========================================
   32. PRODUCT CARDS (Shop Grid)
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 40px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.product-card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Category badge on card */
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}

.product-card-badge.badge-blue {
  background: rgba(96, 165, 250, 0.15);
  color: var(--blue);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.product-card-badge.badge-gold {
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.product-card-badge.badge-green {
  background: rgba(52, 211, 153, 0.12);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.product-card-badge.badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Sale badge */
.product-card-sale {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  z-index: 1;
}

/* Card body */
.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.product-card-subtitle {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.4;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.product-card-price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.product-card-price-original {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 400;
}

.product-card-action {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.25s;
}

.product-card:hover .product-card-action {
  gap: 8px;
}

.product-card-action svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.product-card:hover .product-card-action svg {
  transform: translateX(2px);
}

/* Card Add to Cart button */
.card-add-to-cart {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--gold);
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  margin-top: 10px;
  z-index: 5;
}

.card-add-to-cart:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 206, 0, 0.3);
}

.card-add-to-cart:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.about-content strong {
  color: var(--text-white);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--gold);
  color: #000;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(255, 206, 0, 0.3);
  text-align: center;
  z-index: 2;
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-badge {
    bottom: 16px;
    left: 16px;
    padding: 14px 20px;
  }
  .about-badge-num {
    font-size: 1.4rem;
  }
}

.about-vismis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vismis-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.vismis-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-top: 16px;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3,
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}

.contact-subtitle {
  color: var(--text-gray);
  margin-bottom: 28px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.contact-card a {
  color: var(--text-gray);
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-white);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form .form-row input::placeholder,
.contact-form .form-row textarea::placeholder {
  color: var(--text-dim);
}

.contact-form .form-row textarea {
  resize: vertical;
}

.contact-map iframe {
  border: 1px solid var(--border);
}

.contact-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-md);
  color: var(--green);
  margin-bottom: 20px;
}

.contact-success p { margin: 0; font-size: 0.9rem; }

.contact-error {
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  color: var(--red);
  margin-bottom: 20px;
}

.contact-error p { margin: 0; font-size: 0.9rem; }

@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-vismis {
    grid-template-columns: 1fr;
  }
  .vismis-card {
    padding: 24px;
  }
  .contact-map iframe {
    height: 300px !important;
  }
}

/* Search form inline */
.search-form-inline {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.search-form-inline input[type="text"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-white);
  outline: none;
}

.search-form-inline input[type="text"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Empty state for filtered results */
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}

.products-empty h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.products-empty p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ========================================
   33. GENERIC BUTTON UTILITIES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 48px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  min-height: 36px;
}

.btn-md {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ========================================
   34. FORM ELEMENTS
   ======================================== */
.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-height: 48px;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder {
  color: var(--text-dim);
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group {
  margin-bottom: 20px;
}

/* ========================================
   35. SEARCH BAR (for shop)
   ======================================== */
.search-bar {
  position: relative;
  max-width: 480px;
  margin: 0 auto 32px;
}

.search-bar input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-height: 48px;
}

.search-bar input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.search-bar input::placeholder {
  color: var(--text-dim);
}

.search-bar svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  pointer-events: none;
}

/* ========================================
   36. PAGINATION (for shop)
   ======================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
  min-height: 44px;
}

.pagination-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-white);
}

.pagination-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ========================================
   37. BREADCRUMB (generic)
   ======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  padding: 16px 0;
}

.breadcrumb a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .separator {
  color: var(--text-dim);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--gold);
}

/* ========================================
   38. NOTIFICATION / TOAST
   ======================================== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-white);
  z-index: 2000;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ========================================
   39. SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--gold-glow-strong);
  cursor: pointer;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow-strong);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   40. LOADING / SKELETON
   ======================================== */
.skeleton {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--bg-hover) 50%,
    transparent 100%
  );
  animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ========================================
   41. VISUALLY HIDDEN (accessibility)
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   42. UTILITY CLASSES
   ======================================== */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-gray { color: var(--text-gray); }
.text-dim { color: var(--text-dim); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid { display: grid; }

.w-full { width: 100%; }
.max-w-container { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

/* ========================================
   43. RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .benefit-item:nth-child(2) {
    border-right: none;
  }

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

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

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .shop-hero-stats {
    gap: 32px;
  }
}

/* ========================================
   44. RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  /* Header */
  .header-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .header-categories {
    display: none;
  }

  .header-search {
    display: none;
  }

  .header-search-toggle {
    display: flex;
  }

  .header-cta {
    padding: 10px 18px;
    font-size: 0.75rem;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 24px 0 0;
  }

  .gallery {
    flex-direction: column-reverse;
  }

  .gallery-thumbs {
    flex-direction: row;
  }

  .gallery-thumb {
    width: 56px;
    height: 56px;
  }

  /* Benefits */
  .benefits-bar {
    padding: 10px 0;
    margin-top: 48px;
  }

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

  .benefit-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .benefit-item:last-child {
    border-bottom: none;
  }

  /* Kit */
  .kit-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .reviews-summary {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

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

  /* Related */
  .related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-links {
    justify-content: center;
  }

  /* Purchase */
  .purchase-row {
    flex-direction: column;
  }

  .purchase-row .qty-selector {
    width: 100%;
    justify-content: center;
  }

  .purchase-row .btn-primary {
    flex: none;
    width: 100%;
    min-height: 56px;
    font-size: 1rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn-secondary {
    flex: none;
    width: 100%;
    min-height: 52px;
  }

  /* Price */
  .price-block {
    flex-wrap: wrap;
  }

  /* Specs */
  .specs-row {
    grid-template-columns: 140px 1fr;
  }

  /* Products grid */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Shop hero */
  .shop-hero {
    padding: 32px 0 40px;
  }

  .shop-hero-stats {
    gap: 24px;
  }

  /* Filter tabs scroll on mobile */
  .filter-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0 24px 4px;
    margin: 0 -24px;
  }

  /* Section padding */
  .section-header {
    margin-bottom: 36px;
  }

  /* CTA */
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .final-cta-buttons .btn-large {
    width: 100%;
    max-width: 320px;
  }

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

  /* Apps */
  .apps-grid {
    grid-template-columns: 1fr;
  }

  /* Toast */
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/* ========================================
   45. RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .product-title {
    font-size: 1.8rem;
  }

  .price-current {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .gallery-thumb {
    width: 48px;
    height: 48px;
  }

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

  .specs-label {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
  }

  .specs-value {
    padding: 12px 16px;
  }

  .review-card {
    padding: 20px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.88rem;
  }

  .faq-answer-inner {
    padding: 0 18px 16px;
    font-size: 0.85rem;
  }

  .shop-hero-title {
    font-size: 2rem;
  }

  .products-grid {
    gap: 12px;
  }

  .product-card-body {
    padding: 16px;
  }

  .product-card-name {
    font-size: 0.95rem;
  }

  /* Even smaller filter tabs */
  .filter-tab {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

/* ========================================
   46. PRINT STYLES
   ======================================== */
@media print {
  body::before {
    display: none;
  }

  .site-header,
  .announcement-bar,
  .hamburger,
  .mobile-menu,
  .scroll-top,
  .toast {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 24px 0;
  }
}

/* ========================================
   47. REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   48. HIGH CONTRAST SUPPORT
   ======================================== */
@media (forced-colors: active) {
  .btn-primary,
  .btn-gold,
  .header-cta,
  .filter-tab.active {
    border: 2px solid ButtonText;
  }
}

/* ========================================
   49. FOCUS STATES (Accessibility)
   ======================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================================
   50. CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

/* ========================================
   BUY NOW BUTTON
   ======================================== */
.btn-buy-now {
  width: 100%;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--gold);
  color: #1A1A1A;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}

.btn-buy-now:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-buy-now:active {
  transform: translateY(0);
}

.spinner-sm {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   MINI CART POPUP
   ======================================== */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.mini-cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mini-cart-popup {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
}

.mini-cart-popup.active {
  right: 0;
}

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mini-cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #16a34a;
}

.mini-cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-gray);
  padding: 4px 8px;
  line-height: 1;
}

.mini-cart-close:hover {
  color: var(--text-white);
}

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.mini-cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.mini-cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.mini-cart-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
}

.mini-cart-item-meta {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.mini-cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-gray);
}

.mini-cart-summary strong {
  font-size: 1.05rem;
  color: var(--text-white);
}

.mini-cart-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.mini-cart-footer .btn-primary,
.mini-cart-footer .btn-secondary {
  padding: 12px 16px;
  font-size: 0.9rem;
  text-decoration: none;
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bg-hover);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--bg-elevated) var(--bg-base);
}
