/* ==========================================================
   SNZ Electro — Pixel-Perfect Theme CSS
   Based on exact mockup design tokens
   ========================================================== */

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

:root {
  --brand-blue: #fb7a24;
  --brand-blue-hover: #e56a1a;
  --brand-navy: #144472;
  --brand-sale: #D94444;
  --bg: #FAFAF9;
  --fg: #144472;
  --surface: #FFFFFF;
  --surface-muted: #F6F5F1;
  --border: #E8E6E1;
  --muted-fg: #7C7A8A;
  --radius: 0.75rem;
  --radius-xl: 1.5rem;
  --font-heading: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* --- Utility --- */
.snz-container { max-width: 80rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .snz-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
.snz-heading { font-family: var(--font-heading); font-weight: 800; color: var(--brand-navy); letter-spacing: -0.025em; }
.snz-overline { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-blue); }

/* --- Link arrow --- */
.snz-link-underline { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-navy); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; transition: color 0.15s; }
.snz-link-underline:hover { color: var(--brand-blue); }
.snz-link-underline svg { width: 1rem; height: 1rem; }

/* --- Hero link arrow --- */
.snz-link-arrow { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 700; color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; transition: opacity 0.15s; }
.snz-link-arrow:hover { opacity: 0.8; }
.snz-link-arrow svg { width: 0.875rem; height: 0.875rem; }

/* --- Hero eyebrow (small card) --- */
.snz-hero-eyebrow { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); }

/* --- Top Bar --- */
.snz-topbar { display: none; border-bottom: 1px solid var(--border); background: var(--surface); font-size: 0.75rem; color: var(--muted-fg); }
@media (min-width: 768px) { .snz-topbar { display: block; } }
.snz-topbar .snz-container { display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.snz-topbar-left { display: flex; align-items: center; gap: 1.25rem; }
.snz-topbar-right { display: flex; align-items: center; gap: 1rem; }
.snz-topbar svg { width: 0.875rem; height: 0.875rem; color: var(--brand-blue); flex-shrink: 0; }
.snz-topbar-item { display: inline-flex; align-items: center; gap: 0.375rem; white-space: nowrap; }
.snz-hover-blue { transition: color 0.15s; }
.snz-hover-blue:hover { color: var(--brand-blue); }
.snz-topbar-divider { width: 1px; height: 0.75rem; background: var(--border); flex-shrink: 0; }
.snz-lang-pill { display: inline-flex; align-items: center; gap: 0.25rem; border: 1px solid var(--border); border-radius: 9999px; background: var(--surface-muted); padding: 0.125rem 0.5rem; font-size: 0.6875rem; font-weight: 600; }
.snz-lang-pill button { border: none; background: transparent; padding: 0; font-size: inherit; font-weight: inherit; font-family: inherit; color: var(--muted-fg); }
.snz-lang-pill button.active { color: var(--fg); }
.snz-lang-pill button:hover { color: var(--brand-blue); }
.snz-lang-pill span { color: var(--border); font-size: 0.625rem; }

/* --- Announcement Bar --- */
.snz-announcement { background: var(--brand-navy); padding: 0.5rem 0; text-align: center; }
.snz-announcement span { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }

/* --- Header --- */
.snz-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.snz-header .snz-container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding-top: 1rem; padding-bottom: 1rem; }
@media (min-width: 640px) { .snz-header .snz-container { gap: 2rem; } }
.snz-logo { display: inline-flex; align-items: center; white-space: nowrap; }
.snz-logo img { height: 56px; width: auto; }

/* Search */
.snz-search { position: relative; width: 100%; display: none; }
@media (min-width: 768px) { .snz-search { display: block; } }
.snz-search input { width: 100%; border-radius: 9999px; border: 1px solid var(--border); background: var(--surface-muted); padding: 0.625rem 1rem 0.625rem 2.75rem; font-size: 0.875rem; outline: none; transition: all 0.15s; font-family: var(--font-body); }
.snz-search input:focus { border-color: var(--brand-blue); background: var(--surface); box-shadow: 0 0 0 2px rgba(79,95,192,0.2); }
.snz-search > svg { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--muted-fg); pointer-events: none; }

/* Header actions */
.snz-header-actions { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
@media (min-width: 640px) { .snz-header-actions { gap: 0.75rem; } }
.snz-header-action { display: none; flex-direction: column; align-items: center; gap: 0.125rem; color: var(--fg); font-size: 0.625rem; padding: 0.5rem 0.75rem; border-radius: 9999px; transition: background 0.15s; background: none; border: none; font-family: var(--font-body); font-weight: 600; }
@media (min-width: 640px) { .snz-header-action { display: inline-flex; flex-direction: row; gap: 0.5rem; } }
.snz-header-action:hover { background: var(--surface-muted); }
.snz-header-action svg { width: 1rem; height: 1rem; }
.snz-header-action-text { display: none; }
@media (min-width: 1024px) { .snz-header-action-text { display: inline; } }
.snz-header-action-store { display: none !important; }
@media (min-width: 1024px) { .snz-header-action-store { display: inline-flex !important; } }

/* Cart button */
.snz-cart-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand-navy); color: #fff; border: none; border-radius: 9999px; padding: 0.5rem 1rem; font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: background 0.15s; text-decoration: none; }
.snz-cart-btn:hover { background: var(--brand-blue); color: #fff; }
.snz-cart-btn svg { width: 1rem; height: 1rem; }
.snz-cart-count { background: rgba(255,255,255,0.15); font-size: 0.75rem; font-weight: 700; border-radius: 9999px; padding: 0.125rem 0.375rem; }

/* --- Category Nav --- */
.snz-catnav { border-top: 1px solid var(--border); background: var(--surface); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; white-space: nowrap; }
.snz-catnav::-webkit-scrollbar { display: none; }
.snz-catnav .snz-container { display: flex; gap: 1.5rem; padding-top: 0.75rem; padding-bottom: 0.75rem; }
.snz-catnav a { font-size: 0.8125rem; font-weight: 600; color: var(--muted-fg); transition: color 0.15s; padding: 0; }
.snz-catnav a:hover, .snz-catnav a.current { color: var(--brand-blue); }
.snz-catnav a.sale { color: var(--brand-sale); }

/* --- Hero Section --- */
.snz-hero { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .snz-hero { padding-left: 1.5rem; padding-right: 1.5rem; } }
.snz-hero-grid { display: grid; gap: 1rem; align-items: start; }
@media (min-width: 1024px) { .snz-hero-grid { grid-template-columns: 1.6fr 1fr; } }

/* Main hero card */
.snz-hero-main { display: grid; border-radius: var(--radius-xl); overflow: hidden; background: var(--brand-navy); }
@media (min-width: 1024px) { .snz-hero-main { grid-template-columns: 1fr 1fr; } }
.snz-hero-main-text { padding: 1.5rem 2rem; display: flex; flex-direction: column; justify-content: center; color: #fff; }
@media (min-width: 640px) { .snz-hero-main-text { padding: 2rem 2.5rem; } }
.snz-hero-sale-badge { display: inline-flex; align-items: center; background: var(--brand-sale); color: #fff; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.375rem 1rem; border-radius: 9999px; margin-bottom: 1.25rem; width: fit-content; }
.snz-hero-main-text h1 { font-family: var(--font-heading); font-weight: 800; font-size: 2.25rem; line-height: 1.05; color: #fff; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .snz-hero-main-text h1 { font-size: 3rem; } }
.snz-hero-main-text h1 span { color: var(--brand-blue); }
.snz-hero-main-text p { max-width: 28rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.75rem; }
@media (min-width: 640px) { .snz-hero-main-text p { font-size: 1rem; } }
.snz-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.snz-hero-main-img { position: relative; overflow: hidden; }
.snz-hero-main-img img { width: 100%; height: 240px; object-fit: cover; display: block; }
@media (min-width: 640px) { .snz-hero-main-img img { height: 320px; } }
@media (min-width: 1024px) { .snz-hero-main-img img { height: 100%; min-height: 340px; } }

/* Small hero cards */
.snz-hero-small-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; }
.snz-hero-card { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: var(--surface-muted); min-height: 120px; }
.snz-hero-card img { width: 100%; height: 100%; min-height: 120px; object-fit: cover; transition: transform 0.7s; }
@media (min-width: 640px) { .snz-hero-card img { min-height: 160px; } }
.snz-hero-card:hover img { transform: scale(1.05); }
.snz-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.snz-hero-content { color: #fff; }

/* --- Buttons --- */
.snz-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; border-radius: 0.5rem; padding: 0.75rem 1.5rem; border: none; cursor: pointer; transition: all 0.15s; text-align: center; justify-content: center; }
.snz-btn-primary { background: var(--brand-navy); color: #fff; }
.snz-btn-primary:hover { background: var(--brand-blue); }
.snz-btn-blue { background: var(--brand-blue); color: #fff; }
.snz-btn-blue:hover { background: var(--brand-blue-hover); }
.snz-btn-white { background: #fff; color: var(--brand-navy); border-radius: 0.75rem; padding: 0.875rem 1.75rem; }
.snz-btn-white:hover { transform: scale(1.02); }
.snz-btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: 0.75rem; padding: 0.875rem 1.75rem; }
.snz-btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.snz-btn-sm { font-size: 0.75rem; padding: 0.5rem 1rem; }

/* --- Trust Bar --- */
.snz-trust { margin-top: 3rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(to bottom, var(--surface-muted), var(--surface)); padding: 1.5rem 0; }
.snz-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .snz-trust-grid { grid-template-columns: repeat(4, 1fr); } }
.snz-trust-item { display: flex; align-items: center; gap: 1rem; }
.snz-trust-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: rgba(79,95,192,0.1); display: grid; place-items: center; flex-shrink: 0; color: var(--brand-blue); }
.snz-trust-icon svg { width: 1.25rem; height: 1.25rem; }
.snz-trust-text h4 { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--brand-navy); }
.snz-trust-text p { font-size: 0.75rem; color: var(--muted-fg); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* --- Section Headers --- */
.snz-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; gap: 1rem; }
.snz-section-header h2 { font-size: 1.875rem; }
@media (min-width: 640px) { .snz-section-header h2 { font-size: 2.25rem; } }
.snz-section-header .snz-link-underline { flex-shrink: 0; display: none; }
@media (min-width: 640px) { .snz-section-header .snz-link-underline { display: inline-flex; } }
.snz-section-header-block { margin-bottom: 2.5rem; max-width: 40rem; }
.snz-section-header-block h2 { font-size: 1.875rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .snz-section-header-block h2 { font-size: 2.25rem; } }
.snz-section-subtitle { margin-top: 0.5rem; color: var(--muted-fg); max-width: 32rem; font-size: 0.9375rem; }

/* --- Categories Grid --- */
.snz-categories { padding: 4rem 0; }
.snz-categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .snz-categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .snz-categories-grid { grid-template-columns: repeat(6, 1fr); } }
.snz-cat-card { text-align: center; }
.snz-cat-card-img { aspect-ratio: 1; overflow: hidden; border-radius: 1rem; background: var(--surface); box-shadow: inset 0 0 0 1px var(--border); margin-bottom: 0.75rem; transition: all 0.2s; }
.snz-cat-card:hover .snz-cat-card-img { box-shadow: inset 0 0 0 1px rgba(79,95,192,0.3), 0 20px 25px -5px rgba(0,0,0,0.1); }
.snz-cat-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: transform 0.5s; }
.snz-cat-card:hover .snz-cat-card-img img { transform: scale(1.05); }
.snz-cat-card h3 { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--brand-navy); }

/* --- Product Card --- */
.snz-products-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .snz-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .snz-products-grid { grid-template-columns: repeat(4, 1fr); } }
.snz-product-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 1rem; background: var(--surface); box-shadow: 0 1px 3px rgba(0,0,0,0.05); box-shadow: inset 0 0 0 1px var(--border); padding: 1rem; transition: all 0.2s; }
.snz-product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.snz-product-card-badge { position: absolute; top: 1rem; left: 1rem; z-index: 10; background: var(--brand-sale); color: #fff; font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
.snz-product-card-link { display: flex; flex: 1; flex-direction: column; text-decoration: none; }
.snz-product-card-img { aspect-ratio: 1; overflow: hidden; margin-bottom: 1.25rem; border-radius: 0.75rem; background: var(--surface-muted); }
.snz-product-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; transition: transform 0.3s; }
.snz-product-card:hover .snz-product-card-img img { transform: scale(1.05); }
.snz-product-card-brand { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); margin-bottom: 0.25rem; }
.snz-product-card-title { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; color: var(--fg); line-height: 1.4; min-height: 2.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.15s; }
.snz-product-card:hover .snz-product-card-title { color: var(--brand-blue); }
.snz-product-card-stars { display: flex; align-items: center; gap: 0.375rem; margin-top: 0.5rem; }
.snz-stars { display: flex; gap: 0; }
.snz-stars svg { width: 0.875rem; height: 0.875rem; color: #F59E0B; }
.snz-stars-rating { font-size: 0.75rem; font-weight: 600; color: var(--fg); }
.snz-stars-count { font-size: 0.75rem; color: var(--muted-fg); }
.snz-product-card-price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.75rem; }
.snz-price-current { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--brand-navy); }
.snz-price-old { font-size: 0.875rem; color: var(--muted-fg); text-decoration: line-through; }
.snz-product-card-btn { margin-top: 1rem; width: 100%; }

/* --- Collections --- */
.snz-collections { background: var(--surface-muted); padding: 5rem 0; }
.snz-collections-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .snz-collections-grid { grid-template-columns: repeat(3, 1fr); } }
.snz-collection-card { display: flex; flex-direction: column; border-radius: 1.5rem; overflow: hidden; background: var(--surface); box-shadow: 0 1px 2px rgba(0,0,0,0.05); box-shadow: inset 0 0 0 1px var(--border); transition: all 0.2s; }
.snz-collection-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.snz-collection-card-img-wrap { aspect-ratio: 4/5; overflow: hidden; }
.snz-collection-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.snz-collection-card:hover .snz-collection-card-img-wrap img { transform: scale(1.05); }
.snz-collection-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.snz-collection-card-badge { display: inline-block; border-radius: 9999px; background: rgba(251,122,36,0.1); color: var(--brand-blue); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.75rem; margin-bottom: 0.75rem; width: fit-content; }
.snz-collection-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--brand-navy); margin-bottom: 0.5rem; }
.snz-collection-card p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1rem; flex: 1; }

/* --- Lifestyle Hero --- */
.snz-lifestyle { position: relative; overflow: hidden; }
.snz-lifestyle-inner { position: relative; min-height: 26.25rem; }
@media (min-width: 640px) { .snz-lifestyle-inner { min-height: 32.5rem; } }
.snz-lifestyle-inner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.snz-lifestyle-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4), transparent); }
.snz-lifestyle-content { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 26.25rem; max-width: 80rem; margin: 0 auto; padding: 4rem 1rem 4rem 1.5rem; color: #fff; }
@media (min-width: 640px) { .snz-lifestyle-content { padding-left: 1.5rem; padding-right: 1.5rem; min-height: 32.5rem; } }
.snz-lifestyle-content h2 { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: #fff; line-height: 1.2; margin-top: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .snz-lifestyle-content h2 { font-size: 3rem; } }
.snz-lifestyle-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 32rem; font-size: 1rem; }

/* --- Inspiration --- */
.snz-inspiration { padding: 5rem 0; }
.snz-inspiration-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .snz-inspiration-grid { grid-template-columns: repeat(3, 1fr); } }
.snz-inspiration-card { display: block; text-decoration: none; }
.snz-inspiration-card-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 1rem; background: var(--surface-muted); }
.snz-inspiration-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.snz-inspiration-card:hover .snz-inspiration-card-img img { transform: scale(1.05); }
.snz-inspiration-card-body { padding-top: 1.25rem; }
.snz-inspiration-card-tag { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-blue); margin-bottom: 0.5rem; }
.snz-inspiration-card h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 800; color: var(--fg); margin-bottom: 0.5rem; transition: color 0.15s; }
.snz-inspiration-card:hover h3 { color: var(--brand-blue); }

/* --- Financing Section --- */
.snz-financing { padding-bottom: 5rem; }
.snz-financing-box { background: rgba(79,95,192,0.05); border-radius: var(--radius-xl); padding: 2rem; box-shadow: inset 0 0 0 1px rgba(79,95,192,0.15); }
@media (min-width: 640px) { .snz-financing-box { padding: 3rem; } }
@media (min-width: 1024px) { .snz-financing-box { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; } }
.snz-financing-badge { display: inline-flex; align-items: center; background: var(--brand-blue); color: #fff; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.375rem 1rem; border-radius: 9999px; }
.snz-financing-box h2 { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--brand-navy); line-height: 1.2; margin-top: 1.25rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .snz-financing-box h2 { font-size: 2.25rem; } }
.snz-financing-box p { color: var(--muted-fg); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.snz-financing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.snz-financing-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.snz-financing-stat { background: var(--surface); border-radius: 1rem; padding: 1.5rem; box-shadow: inset 0 0 0 1px var(--border); text-align: center; }
.snz-financing-stat h3 { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--brand-navy); }
@media (min-width: 640px) { .snz-financing-stat h3 { font-size: 2.25rem; } }
.snz-financing-stat p { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-fg); margin-bottom: 0; }

/* --- Brands Bar --- */
.snz-brands { border-top: 1px solid var(--border); padding: 3rem 0; }
.snz-brands-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem 2rem; opacity: 0.6; }
.snz-brands-row span { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 900; color: var(--brand-navy); letter-spacing: -0.025em; }
@media (min-width: 640px) { .snz-brands-row span { font-size: 1.25rem; } }

/* --- Footer --- */
.snz-footer { background: var(--brand-navy); color: #fff; padding: 4rem 0 2rem; }
.snz-footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .snz-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; } }
.snz-footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 1.5rem; max-width: 18rem; }
.snz-footer h4 { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; margin-bottom: 1.25rem; }
.snz-footer ul li { margin-bottom: 0.75rem; }
.snz-footer ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.snz-footer ul li a:hover { color: #fff; }
.snz-footer-newsletter-form { display: flex; gap: 0.5rem; }
.snz-footer-newsletter-form input { flex: 1; border-radius: 0.5rem; border: none; background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; color: #fff; font-size: 0.875rem; outline: none; font-family: var(--font-body); }
.snz-footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.snz-footer-newsletter-form input:focus { box-shadow: 0 0 0 2px var(--brand-blue); }
.snz-footer-newsletter-btn { flex-shrink: 0; border-radius: 0.5rem; border: none; background: var(--brand-blue); color: #fff; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 700; cursor: pointer; transition: background 0.15s; font-family: var(--font-body); }
.snz-footer-newsletter-btn:hover { background: var(--brand-blue-hover); }
.snz-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ==========================================================
   WooCommerce Overrides
   ========================================================== */

.woocommerce { padding: 2rem 0; }
.woocommerce-notices-wrapper { margin-bottom: 1.5rem; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; list-style: none !important; padding: 0 !important; margin: 0 !important; }
@media (min-width: 640px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(4, 1fr) !important; } }
.woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; position: relative; overflow: hidden; border-radius: 1rem; background: var(--surface); box-shadow: inset 0 0 0 1px var(--border); transition: all 0.2s; padding: 1rem !important; }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.woocommerce ul.products li.product a img { margin: 0 0 1.25rem 0 !important; border-radius: 0.75rem; width: 100% !important; aspect-ratio: 1; object-fit: contain; background: var(--surface-muted); padding: 0.75rem; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-heading) !important; font-weight: 600 !important; font-size: 0.875rem !important; color: var(--fg) !important; padding: 0 !important; line-height: 1.4; min-height: 2.5rem; }
.woocommerce ul.products li.product .price { font-family: var(--font-heading) !important; font-weight: 800 !important; color: var(--brand-navy) !important; padding: 0 !important; font-size: 1.25rem !important; margin-top: 0.75rem !important; display: block !important; }
.woocommerce ul.products li.product .price del { color: var(--muted-fg) !important; font-weight: 400 !important; font-size: 0.875rem !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; color: var(--brand-sale) !important; }
.woocommerce ul.products li.product .button { background: var(--brand-navy) !important; color: #fff !important; border-radius: 0.5rem !important; font-family: var(--font-heading) !important; font-weight: 700 !important; font-size: 0.875rem !important; margin: 1rem 0 0 0 !important; padding: 0.75rem 1.5rem !important; transition: all 0.15s !important; display: block !important; text-align: center !important; width: 100% !important; }
.woocommerce ul.products li.product .button:hover { background: var(--brand-blue) !important; }

/* Sale badge */
.woocommerce span.onsale { background: var(--brand-sale) !important; border-radius: 0.25rem !important; min-width: auto !important; min-height: auto !important; padding: 0.25rem 0.5rem !important; font-size: 0.625rem !important; font-weight: 700 !important; line-height: 1.4 !important; top: 1rem !important; left: 1rem !important; right: auto !important; }
.woocommerce span.onsale::before { content: none; }

/* Single Product */
.woocommerce div.product .product_title { font-family: var(--font-heading) !important; font-weight: 800 !important; font-size: 2rem !important; color: var(--brand-navy) !important; letter-spacing: -0.025em; }
.woocommerce div.product p.price { font-family: var(--font-heading) !important; font-weight: 800 !important; font-size: 1.5rem !important; color: var(--brand-navy) !important; }
.woocommerce div.product p.price del { color: var(--muted-fg) !important; font-size: 1rem !important; }
.woocommerce div.product p.price ins { text-decoration: none !important; color: var(--brand-sale) !important; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--muted-fg); font-size: 0.9375rem; line-height: 1.7; }
.woocommerce div.product form.cart .button { background: var(--brand-navy) !important; color: #fff !important; border-radius: 0.5rem !important; font-family: var(--font-heading) !important; font-weight: 700 !important; padding: 0.75rem 2rem !important; transition: all 0.15s !important; }
.woocommerce div.product form.cart .button:hover { background: var(--brand-blue) !important; }

/* Breadcrumb */
.woocommerce-breadcrumb { font-size: 0.75rem; color: var(--muted-fg) !important; margin-bottom: 1rem !important; }
.woocommerce-breadcrumb a { color: var(--muted-fg); }
.woocommerce-breadcrumb a:hover { color: var(--brand-blue); }

/* Shop Header */
.woocommerce-products-header__title { font-family: var(--font-heading) !important; font-weight: 800 !important; font-size: 2rem !important; color: var(--brand-navy) !important; }
.woocommerce-result-count { font-size: 0.875rem; color: var(--muted-fg); }
.woocommerce-ordering select { border: 1px solid var(--border); border-radius: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.875rem; }

/* Buttons */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { background: var(--brand-navy) !important; color: #fff !important; border-radius: 0.5rem !important; font-family: var(--font-heading) !important; font-weight: 700 !important; transition: all 0.15s !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce #respond input#submit:hover { background: var(--brand-blue) !important; color: #fff !important; }

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0 !important; border-bottom: 1px solid var(--border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border-radius: 0 !important; background: transparent !important; border: none !important; padding: 0.75rem 1.25rem !important; margin: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom: 2px solid var(--brand-blue) !important; }

/* Page / Post */
.snz-page-content, .snz-post-content { max-width: 48rem; margin: 0 auto; padding: 3rem 0; }
.snz-page-content h1, .snz-post-content h1 { font-family: var(--font-heading); font-weight: 800; font-size: 2.25rem; color: var(--brand-navy); margin-bottom: 1.5rem; }
.snz-page-content p, .snz-post-content p { margin-bottom: 1rem; color: var(--muted-fg); line-height: 1.8; }

/* ==========================================================
   Product Page — Pixel-Perfect
   ========================================================== */

/* Product Header */
.snz-product-header { border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.snz-product-header-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--muted-fg); transition: color 0.15s; }
.snz-product-header-back:hover { color: var(--brand-blue); }

/* Breadcrumb */
.snz-product-breadcrumb { padding-top: 1rem; padding-bottom: 1rem; }
.snz-product-breadcrumb .snz-container { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-fg); }
.snz-product-breadcrumb a { transition: color 0.15s; }
.snz-product-breadcrumb a:hover { color: var(--brand-blue); }
.snz-product-breadcrumb .current { font-weight: 600; color: var(--fg); }

/* Product Main */
.snz-product-main { padding-bottom: 4rem; }

/* Product Grid */
.snz-pd-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .snz-pd-grid { grid-template-columns: 1.15fr 1fr; } }

/* Gallery */
.snz-pd-main-img { aspect-ratio: 1; overflow: hidden; border-radius: 1.5rem; background: var(--surface); box-shadow: inset 0 0 0 1px var(--border); }
.snz-pd-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 2rem; }
.snz-pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 1rem; }
.snz-pd-thumb { aspect-ratio: 1; overflow: hidden; border-radius: 0.75rem; background: var(--surface); box-shadow: inset 0 0 0 1px var(--border); border: 2px solid transparent; cursor: pointer; transition: border-color 0.15s; padding: 0; }
.snz-pd-thumb:hover { border-color: rgba(251,122,36,0.4); }
.snz-pd-thumb.active { border-color: var(--brand-blue); }
.snz-pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }

/* Product Info */
.snz-pd-info { display: flex; flex-direction: column; }
.snz-pd-brand { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-blue); }
.snz-pd-title { margin-top: 0.5rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.875rem; line-height: 1.2; color: var(--fg); }
@media (min-width: 640px) { .snz-pd-title { font-size: 2.25rem; } }

/* Meta (rating + SKU) */
.snz-pd-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1rem; }
.snz-pd-rating { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; }
.snz-pd-stars { display: flex; gap: 0; }
.snz-pd-rating-num { font-weight: 600; }
.snz-pd-rating-count { color: var(--muted-fg); }
.snz-pd-sku { font-size: 0.75rem; color: var(--muted-fg); }

/* Pricing */
.snz-pd-pricing { display: flex; align-items: baseline; gap: 0.75rem; margin-top: 1.5rem; }
.snz-pd-price-current { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--brand-navy); }
@media (min-width: 640px) { .snz-pd-price-current { font-size: 2.5rem; } }
.snz-pd-price-old { font-size: 1.125rem; color: var(--muted-fg); text-decoration: line-through; }
.snz-pd-sale-badge { border-radius: 0.25rem; background: var(--brand-sale); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.5rem; }
.snz-pd-installment { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }

/* Stock */
.snz-pd-stock { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; border-radius: 0.75rem; background: var(--surface-muted); padding: 1rem; box-shadow: inset 0 0 0 1px var(--border); }
.snz-pd-stock-dot { width: 0.625rem; height: 0.625rem; border-radius: 9999px; background: #10B981; flex-shrink: 0; }
.snz-pd-stock-text { font-size: 0.875rem; font-weight: 700; color: var(--fg); }
.snz-pd-stock-sub { font-size: 0.75rem; color: var(--muted-fg); }

/* Cart form */
.snz-pd-cart { margin-top: 1.5rem; }
.snz-pd-qty-wrap { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; }
.snz-pd-qty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--surface); }
.snz-pd-qty button { padding: 0.5rem 0.75rem; font-size: 1.125rem; font-weight: 700; color: var(--muted-fg); background: none; border: none; transition: color 0.15s; }
.snz-pd-qty button:hover { color: var(--brand-blue); }
.snz-pd-qty-input { width: 2rem; text-align: center; font-size: 0.875rem; font-weight: 700; border: none; background: transparent; outline: none; font-family: var(--font-body); -moz-appearance: textfield; }
.snz-pd-qty-input::-webkit-outer-spin-button, .snz-pd-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.snz-pd-addtocart { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 0.5rem; background: var(--brand-navy); color: #fff; padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 700; border: none; cursor: pointer; transition: background 0.15s; font-family: var(--font-heading); }
.snz-pd-addtocart:hover { background: var(--brand-blue); }

/* Wishlist */
.snz-pd-wishlist { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.75rem; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--surface); padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: background 0.15s; font-family: var(--font-body); color: var(--fg); }
.snz-pd-wishlist:hover { background: var(--surface-muted); }

/* Features */
.snz-pd-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; list-style: none; padding: 0; }
.snz-pd-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.snz-pd-features svg { flex-shrink: 0; color: var(--brand-blue); }

/* Related Products */
.snz-pd-related { margin-top: 5rem; }
.snz-pd-related-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--fg); }
@media (min-width: 640px) { .snz-pd-related-title { font-size: 1.875rem; } }
.snz-pd-related-grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .snz-pd-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .snz-pd-related-grid { grid-template-columns: repeat(3, 1fr); } }
.snz-pd-related-card { display: block; border-radius: 1rem; background: var(--surface); padding: 1rem; box-shadow: inset 0 0 0 1px var(--border); text-decoration: none; transition: all 0.2s; }
.snz-pd-related-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.snz-pd-related-img { aspect-ratio: 1; overflow: hidden; border-radius: 0.75rem; background: var(--surface-muted); }
.snz-pd-related-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; transition: transform 0.3s; }
.snz-pd-related-card:hover .snz-pd-related-img img { transform: scale(1.05); }
.snz-pd-related-brand { margin-top: 0.75rem; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-fg); }
.snz-pd-related-name { margin-top: 0.25rem; font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; color: var(--fg); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.snz-pd-related-card:hover .snz-pd-related-name { color: var(--brand-blue); }
.snz-pd-related-price { margin-top: 0.5rem; font-family: var(--font-heading); font-weight: 800; color: var(--brand-navy); font-size: 1.125rem; }

/* Product Footer */
.snz-product-footer { border-top: 1px solid rgba(255,255,255,0.1); background: var(--brand-navy); padding: 2rem 0; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* 404 */
.snz-404 { text-align: center; padding: 6rem 0; }
.snz-404 h1 { font-family: var(--font-heading); font-weight: 800; font-size: 6rem; color: var(--brand-navy); line-height: 1; margin-bottom: 1rem; }
.snz-404 p { font-size: 1.125rem; color: var(--muted-fg); margin-bottom: 2rem; }

/* ==========================================================
   Category Pages
   ========================================================== */

/* Category Header (simplified) */
.snz-cat-header { border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 40; }
.snz-cat-header .snz-container { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; }
.snz-cat-header-nav { display: none; gap: 1.5rem; }
@media (min-width: 768px) { .snz-cat-header-nav { display: flex; } }
.snz-cat-header-nav a { font-size: 0.875rem; font-weight: 600; color: var(--muted-fg); transition: color 0.15s; }
.snz-cat-header-nav a:hover { color: var(--brand-blue); }
.snz-cat-header-nav a.active { color: var(--brand-navy); }

/* Breadcrumb */
.snz-cat-breadcrumb { padding-top: 1.5rem; }
.snz-breadcrumb { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--muted-fg); }
.snz-breadcrumb a { transition: color 0.15s; }
.snz-breadcrumb a:hover { color: var(--brand-blue); }
.snz-breadcrumb svg { width: 0.75rem; height: 0.75rem; }
.snz-breadcrumb .current { font-weight: 600; color: var(--fg); }

/* Category Hero */
.snz-cat-hero { padding: 2.5rem 0; }
.snz-cat-hero-grid { display: grid; gap: 2rem; overflow: hidden; border-radius: var(--radius-xl); background: var(--surface-muted); }
@media (min-width: 1024px) { .snz-cat-hero-grid { grid-template-columns: 1.2fr 1fr; } }
.snz-cat-hero-text { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 640px) { .snz-cat-hero-text { padding: 3rem; } }
.snz-cat-hero-text h1 { font-family: var(--font-heading); font-weight: 800; font-size: 2.25rem; color: var(--brand-navy); letter-spacing: -0.025em; margin-top: 0.75rem; line-height: 1.15; }
@media (min-width: 640px) { .snz-cat-hero-text h1 { font-size: 3rem; } }
.snz-cat-hero-desc { margin-top: 1rem; color: var(--muted-fg); max-width: 32rem; }
.snz-cat-features { margin-top: 1.5rem; list-style: none; padding: 0; }
.snz-cat-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.5rem; }
.snz-cat-feature-dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--brand-blue); flex-shrink: 0; margin-top: 0.375rem; }
.snz-cat-hero-img { min-height: 16rem; }
@media (min-width: 1024px) { .snz-cat-hero-img { min-height: 24rem; } }
.snz-cat-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Stats Bar */
.snz-cat-stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 1rem 0; }
.snz-cat-stats-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem; }
.snz-cat-stat-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 600; color: var(--muted-fg); }
@media (min-width: 640px) { .snz-cat-stat-item { font-size: 0.875rem; } }
.snz-cat-stat-item svg { width: 1rem; height: 1rem; color: var(--brand-blue); }

/* Products Section */
.snz-cat-products { padding: 3.5rem 0; }
.snz-cat-products-header { margin-bottom: 2rem; }
.snz-cat-products-header h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--brand-navy); }
@media (min-width: 640px) { .snz-cat-products-header h2 { font-size: 1.875rem; } }
.snz-cat-products-header p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-fg); }
.snz-no-products { text-align: center; padding: 4rem 0; color: var(--muted-fg); font-size: 1rem; }

/* Responsive adjustments */
@media (max-width: 639px) {
  .snz-hero-main-text h1 { font-size: 1.75rem; }
  .snz-hero-main-img { min-height: 8rem; position: relative; }
  .snz-hero-main-img img { position: absolute; }
  .snz-lifestyle-content h2 { font-size: 1.75rem; }
  .snz-financing-box { padding: 1.5rem; }
  .snz-section-header h2 { font-size: 1.5rem; }
  .snz-financing-stat h3 { font-size: 1.5rem; }
}
