/* ================================================================
   SONIC ZEST – Global Design System (Light Mode)
   sz-global.css
   ================================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Courier+Prime:wght@400;700&display=swap');

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  /* Colours */
  --bg-deep:        #ffffff;
  --bg-mid:         #f8f9fa;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8f9fa;
  --bg-nav:         rgba(255, 255, 255, 0.98);
  --bg-footer:      #f8f9fa;

  --accent-purple:  #111827; /* Swapped to dark */
  --accent-purple2: #1f2937;
  --accent-teal:    #000000;
  --accent-teal2:   #111827;
  --accent-gold:    #f59e0b; /* Keep gold for stars */

  --text-primary:   #111827;
  --text-secondary: #4b5563;
  --text-muted:     #6b7280;
  --text-nav:       #374151;

  --border:         #e5e7eb;
  --border-accent:  #d1d5db;

  --gradient-hero:    #f4f6f8;
  --gradient-card:    linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  --gradient-cta:     #111827;
  --gradient-teal:    #ffffff;
  --gradient-hero-text: #111827;

  /* Shadows */
  --shadow-card:    0 4px 20px rgba(0,0,0,0.06);
  --shadow-nav:     0 2px 16px rgba(0,0,0,0.04);
  --shadow-btn:     0 4px 12px rgba(0,0,0,0.1);
  --shadow-teal:    0 4px 12px rgba(0,0,0,0.05);
  --shadow-product: 0 8px 30px rgba(0,0,0,0.15);

  /* Typography */
  --font-head:   'Outfit', 'Inter', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-mono:   'Courier Prime', monospace;

  /* Spacing */
  --nav-height:  70px;
  --section-pad: clamp(48px, 6vw, 96px);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--text-muted); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol {
  color: var(--text-secondary);
  padding-left: 1.5rem;
}
li { margin-bottom: 0.4rem; }

strong { color: var(--text-primary); font-weight: 600; }

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.sz-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.sz-section {
  padding: var(--section-pad) 0;
}

.sz-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sz-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sz-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .sz-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .sz-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sz-grid-2 { grid-template-columns: 1fr; }
  .sz-grid-3 { grid-template-columns: 1fr; }
  .sz-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sz-grid-4 { grid-template-columns: 1fr; }
}

.text-centre { text-align: center; }
.text-center  { text-align: center; }

/* ================================================================
   GLOBAL NAVIGATION
   ================================================================ */
#sz-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 9999;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
  transition: background 0.3s ease;
}

.sz-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  gap: 24px;
}

/* Logo */
.sz-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.sz-nav-logo:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
.sz-nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}
.sz-nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav centre – dropdown */
.sz-nav-centre {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.sz-nav-link {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-nav);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.sz-nav-link:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

/* Dropdown */
.sz-nav-dropdown {
  position: relative;
}
.sz-nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sz-nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.sz-nav-dropdown:hover .sz-nav-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}

.sz-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  padding: 8px;
  display: none;
  z-index: 100;
}
.sz-nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
.sz-nav-dropdown:hover .sz-nav-dropdown-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  animation: dropFade 0.15s ease;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.sz-nav-dropdown-item {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.sz-nav-dropdown-item:hover {
  background: rgba(0,0,0,0.04);
  color: var(--text-primary);
}

/* Nav right */
.sz-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.sz-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  margin-left: 8px;
}
.sz-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-nav);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.sz-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sz-hamburger.active span:nth-child(2) { opacity: 0; }
.sz-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.sz-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 9998;
  overflow-y: auto;
  padding: 24px clamp(16px, 4vw, 48px);
}
.sz-mobile-menu.open { display: block; }

.sz-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sz-mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-nav);
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.sz-mobile-menu a:hover {
  background: rgba(0,0,0,0.04);
  color: var(--text-primary);
}
.sz-mobile-menu-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px 16px 8px;
}
.sz-mobile-menu .btn-primary {
  margin: 20px 0 0;
  display: block;
  text-align: center;
}

@media (max-width: 900px) {
  .sz-nav-centre { display: none; }
  .sz-hamburger  { display: flex; }
}
@media (max-width: 480px) {
  .sz-nav-logo-text { display: none; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-teal,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: #000;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--bg-mid);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }

#hero-browse-btn {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#hero-browse-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  background: var(--accent-teal);
  color: #fff;
}

.btn-teal {
  background: #ffffff;
  color: #111827;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-btn);
}
.btn-teal:hover {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px) scale(1.1);
  color: #111827;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-secondary:hover {
  border-color: #9ca3af;
  background: #f9fafb;
  color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid transparent;
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.04);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.sz-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sz-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-product);
  border-color: #d1d5db;
}

.sz-product-card-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  background: #f3f4f6;
  transition: transform 0.35s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.sz-product-card:hover .sz-product-card-img {
  transform: scale(1.03);
}

.sz-product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.sz-product-card-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.sz-product-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.sz-product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sz-price {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sz-stars {
  font-size: 0.82rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.sz-product-card-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  border-left: 2px solid var(--border);
  padding-left: 10px;
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.sz-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.sz-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
}

.sz-section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.sz-section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.6;
}

/* ── Filter Pills ── */
.sz-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 48px;
}
.sz-filter-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sz-filter-pill:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.sz-filter-pill.active {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

/* ================================================================
   VIDEO EMBEDS
   ================================================================ */
.sz-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 0;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.sz-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sz-video-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ================================================================
   SOUNDCLOUD EMBED
   ================================================================ */
.sz-soundcloud-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.sz-soundcloud-wrap iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* ================================================================
   PRODUCT HERO (product pages)
   ================================================================ */
.sz-product-hero {
  padding: calc(var(--nav-height) + 48px) 0 64px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.sz-product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .sz-product-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sz-product-hero-img {
    margin: 0 auto;
    display: block;
  }
}

.sz-product-hero-img {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
  transition: transform 0.4s ease;
  background: #f3f4f6;
}
.sz-product-hero-img:hover {
  transform: scale(1.02);
}

.sz-product-hero-name {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.sz-product-hero-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.sz-product-hero-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sz-product-hero-price small {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.sz-product-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sz-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.sz-featured-badge img {
  height: 18px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}

/* ================================================================
   ACCORDION (specs)
   ================================================================ */
.sz-accordion {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.sz-accordion-item {
  border-bottom: 1px solid var(--border);
}
.sz-accordion-item:last-child { border-bottom: none; }

.sz-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--bg-card);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
  text-align: left;
  transition: background 0.15s;
}
.sz-accordion-trigger:hover { background: var(--bg-card-hover); }

.sz-accordion-icon {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s, border-color 0.25s;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
}
.sz-accordion-item.open .sz-accordion-icon {
  transform: rotate(45deg);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.sz-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}
.sz-accordion-item.open .sz-accordion-body {
  max-height: 600px;
}
.sz-accordion-body-inner {
  padding: 4px 22px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.sz-accordion-body-inner ul {
  margin-top: 8px;
}
.sz-accordion-body-inner li {
  margin-bottom: 6px;
}

/* ================================================================
   "YOU MAY ALSO LIKE" CARDS (product pages)
   ================================================================ */
.sz-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) {
  .sz-related-grid { grid-template-columns: 1fr; }
}

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

/* ================================================================
   HIGHLIGHT / CALLOUT BOX
   ================================================================ */
.sz-callout {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

/* ================================================================
   FOOTER
   ================================================================ */
#sz-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

@media (max-width: 900px) {
  .sz-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 540px) {
  .sz-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.sz-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sz-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 4px;
}
.sz-footer-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.sz-footer-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.sz-footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.sz-footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.sz-footer-col-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.sz-footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sz-footer-links li { margin: 0; }
.sz-footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.sz-footer-links a:hover { color: var(--text-primary); }

.sz-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sz-footer-bottom-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Mailchimp form in footer */
.sz-mc-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.sz-mc-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.sz-mc-form input[type="email"]::placeholder { color: var(--text-muted); }
.sz-mc-form input[type="email"]:focus { border-color: var(--text-primary); }
.sz-mc-form input[type="submit"] {
  padding: 10px 18px;
  background: var(--text-primary);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.sz-mc-form input[type="submit"]:hover {
  background: #000;
  transform: translateY(-1px);
}

.sz-contact-email {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-top: 4px;
}

/* ================================================================
   SCROLL-REVEAL ANIMATIONS
   ================================================================ */
.sz-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  min-width: 0;
}
.sz-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.sz-reveal-delay-1 { transition-delay: 0.1s; }
.sz-reveal-delay-2 { transition-delay: 0.2s; }
.sz-reveal-delay-3 { transition-delay: 0.3s; }
.sz-reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   NAVIGATION BODY OFFSET
   ================================================================ */
.sz-page-body {
  padding-top: var(--nav-height);
}

/* ================================================================
   BACKGROUND DECORATION BLOBS
   ================================================================ */
.sz-blob {
  display: none; /* Removed for clean aesthetic */
}

/* ================================================================
   UTILITY
   ================================================================ */
.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; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.d-flex { display: flex; }
.align-centre { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

/* ================================================================
   CHECKOUT / UTILITY PAGE STYLES
   ================================================================ */
.sz-utility-page {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 64px) 0 96px;
  background: var(--bg-deep);
}
.sz-utility-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.sz-utility-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
@media (max-width: 600px) {
  .sz-utility-box { padding: 24px 20px; }
}

/* EDD checkout form styling */
.edd_errors { margin-bottom: 16px; }
.edd_errors li {
  color: #dc2626;
  font-size: 0.9rem;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  list-style: none;
}

#edd_checkout_cart {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
#edd_checkout_cart th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
#edd_checkout_cart td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
#edd_checkout_cart .edd_cart_item_name { color: var(--text-primary); font-weight: 600; }
#edd_checkout_cart .edd_cart_item_price { color: var(--text-primary); font-weight: 700; }

#edd_checkout_form_wrap input[type="text"],
#edd_checkout_form_wrap input[type="email"],
#edd_checkout_form_wrap input[type="password"],
#edd_checkout_form_wrap select,
#edd_checkout_form_wrap textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
#edd_checkout_form_wrap input:focus,
#edd_checkout_form_wrap select:focus,
#edd_checkout_form_wrap textarea:focus {
  border-color: var(--text-primary);
}
#edd_checkout_form_wrap input[type="text"]::placeholder,
#edd_checkout_form_wrap input[type="email"]::placeholder {
  color: var(--text-muted);
}
#edd_checkout_form_wrap label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-family: var(--font-head);
}
#edd_checkout_form_wrap fieldset {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  background: #f8f9fa;
}
#edd_checkout_form_wrap legend {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0 12px;
}
#edd-purchase-button,
#edd_checkout_form_wrap input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: all 0.25s ease;
  width: 100%;
  margin-top: 12px;
}
#edd-purchase-button:hover,
#edd_checkout_form_wrap input[type="submit"]:hover {
  background: #000;
  transform: translateY(-2px);
}

.edd-cart-total {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
  margin-bottom: 24px;
}
.edd_login_register_wrap {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.edd-payment-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.paypal_commerce_gateway { cursor: pointer; }

/* ================================================================
   INSTALLATION PAGE
   ================================================================ */
.sz-install-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.sz-install-step:last-child { border-bottom: none; }
.sz-install-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.sz-install-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.sz-install-content p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ================================================================
   MEDIA QUERIES – General
   ================================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
  }
  .sz-product-hero {
    padding: calc(var(--nav-height) + 32px) 0 48px;
  }
}

/* ================================================================
   HIGH CONVERSION OPTIMIZATION
   ================================================================ */
@keyframes szPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(13, 148, 136, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.sz-product-hero-actions .btn-teal {
  animation: szPulse 2.5s infinite;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

@media (max-width: 600px) {
  .sz-product-hero-actions .btn-teal {
    max-width: 100%;
  }
}

.sz-trust-signals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.sz-trust-signals span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================================================================
   TESTIMONIAL CARDS
   ================================================================ */
.sz-testimonial-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin: 16px auto;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sz-testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.sz-testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.sz-testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.sz-testimonial-stars {
  color: var(--accent-teal);
  font-size: 1.2rem;
}

/* ================================================================
   SHOPPING CART DRAWER
   ================================================================ */
.sz-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sz-cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sz-cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-deep);
  z-index: 10001;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sz-cart-drawer.open {
  right: 0;
}

.sz-cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sz-cart-header h2 {
  font-size: 1.5rem;
  margin: 0;
}
.sz-cart-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}
.sz-cart-close:hover {
  color: var(--text-primary);
}

.sz-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sz-cart-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 40px;
}

.sz-cart-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sz-cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sz-cart-item-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sz-cart-item-name {
  font-weight: 600;
  color: var(--text-primary);
}
.sz-cart-item-price {
  font-weight: 700;
  color: var(--text-primary);
}
.sz-cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sz-cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}
.sz-cart-qty button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  padding: 0 4px;
}
.sz-cart-qty button:hover {
  color: var(--text-primary);
}
.sz-cart-qty-val {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.sz-cart-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}
.sz-cart-remove:hover {
  text-decoration: underline;
}

.sz-cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-mid);
}
.sz-cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

#sz-cart-count {
  background: var(--text-primary) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 22px !important;
  height: 22px !important;
  padding: 0 !important;
  font-size: 0.75rem !important;
  margin-left: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
