/** Shopify CDN: Minification failed

Line 6550:13 Expected identifier but found whitespace
Line 6550:22 Unexpected ";"
Line 6743:13 Expected identifier but found whitespace
Line 6743:22 Unexpected ";"
Line 6854:19 Unexpected "-"
Line 7783:5 Unexpected "="

**/
/* ==========================================================================
   Nord Labs Gaming - Main Stylesheet
   Blueprint Design System - Ported from Hydrogen Storefront
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES / DESIGN TOKENS
   ========================================================================== */

:root {
  /* === Core Colors === */
  --color-primary: 26, 102, 192;         /* #1A66C0 - Primary Blue */
  --color-secondary: 233, 123, 44;       /* #E97B2C - Orange Accent */
  --color-success: 5, 150, 105;          /* #059669 - Success Green */
  --color-error: 220, 38, 38;            /* #DC2626 - Error Red */
  --color-warning: 217, 119, 6;          /* #D97706 - Warning Amber */
  
  /* === Named Colors (for direct use) === */
  --accent: #1A66C0;
  --accent2: #E97B2C;
  --accent-light: #E8F1FA;
  
  /* === Background Colors === */
  --color-background: 250, 250, 250;     /* #FAFAFA - Paper White */
  --paper-white: #FAFAFA;
  --paper-cream: #F5F3EF;
  --dark-bg: #0d1117;
  --dark-bg-deep: #0a0a0f;
  --navy-deep: #0f172a;
  --navy-medium: #1e293b;
  
  /* === Text Colors (Light Theme) === */
  --color-text: 17, 24, 39;              /* #111827 - Ink Black */
  --ink-black: #111827;
  --pencil-dark: #374151;
  --pencil-gray: #6B7280;
  --pencil-light: #9CA3AF;
  
  /* === Text Colors (Dark Theme) === */
  --text-on-dark: #ffffff;
  --text-on-dark-secondary: rgba(255, 255, 255, 0.7);
  --text-on-dark-muted: rgba(255, 255, 255, 0.5);
  
  /* === Blueprint Lines === */
  --blueprint-line: rgba(26, 102, 192, 0.15);
  --blueprint-dark: rgba(26, 102, 192, 0.3);
  
  /* === Layout === */
  --header-height: 78px;
  --container-max: 1200px;
  --container-padding: 1.5rem;
  
  /* === Typography === */
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
  
  /* === Transitions === */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-smooth: 300ms ease;
  --transition-drawer: 350ms cubic-bezier(0.32, 0.72, 0, 1);
}


/* ==========================================================================
   PAGE STRUCTURE
   ========================================================================== */

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper > main {
  flex: 1;
}


/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
  background: linear-gradient(90deg, var(--accent) 0%, #2563eb 50%, var(--accent) 100%);
  background-size: 200% 100%;
  animation: announcementGradient 8s ease infinite;
  color: white;
  padding: 0.625rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent);
  animation: announcementShine 4s ease-in-out infinite;
}

@keyframes announcementGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes announcementShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.announcement-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.announcement-text strong {
  font-weight: 700;
  color: #ffffff;
}

.announcement-text p {
  margin: 0;
  color: #ffffff;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

@media (min-width: 768px) {
  .announcement-bar {
    padding: 0.5rem 1rem;
  }
  
  .announcement-text {
    font-size: 1.125rem;
  }
  
  .announcement-bar-inner {
    gap: 0.75rem;
  }
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

/* Hide header on scroll (mobile only) */
@media (max-width: 768px) {
  .site-header-wrapper.header-hidden {
    transform: translateY(-100%);
  }
  
  .site-header-wrapper.header-cart-open {
    transform: translateY(-100%);
  }
}

.header {
  background: #0d1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: var(--header-height);
  position: relative;
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
}

/* Blueprint grid texture */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Blue and orange glow effects */
.header::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 100% at 15% 50%, rgba(26, 102, 192, 0.12), transparent 60%),
    radial-gradient(ellipse 25% 100% at 85% 50%, rgba(233, 123, 44, 0.08), transparent 60%);
  pointer-events: none;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.header-menu-btn {
  display: none;
  color: white;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.header-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.header-menu-btn svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.header-logo img,
.header-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo-text .logo-main {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-logo-text .logo-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav-link {
  position: relative;
  padding: 0.625rem 1rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94A3B8;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* Animated underline effect */
.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #60A5FA;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.header-nav-link:hover {
  color: #F1F5F9;
  background: rgba(255, 255, 255, 0.1);
}

.header-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-nav-link.active {
  color: #60A5FA;
  background: rgba(96, 165, 250, 0.15);
  font-weight: 700;
}

.header-nav-link.active::after {
  transform: scaleX(1);
}

.header-cart-btn {
  position: relative;
  color: white;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.header-cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.header-cart-btn svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.header-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
}

/* Mobile Header */
@media (max-width: 768px) {
  .header-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav {
    display: none;
  }
}


/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mobile-nav-overlay.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--dark-bg);
  transform: translateX(-100%);
  transition: transform var(--transition-drawer);
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-title {
  color: white;
  font-weight: 600;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-nav-close {
  color: white;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-close svg {
  width: 16px;
  height: 16px;
  stroke: white;
}

.mobile-nav-links {
  padding: 1rem 0;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-link {
  display: block;
  padding: 1.25rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--dark-bg);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Blueprint grid background */
.footer::before,
.footer-grid-bg {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-container,
.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-container,
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  font-family: var(--font-body-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
  margin-top: 1rem;
}

.newsletter-label {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent, #1A66C0);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-field {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 1.4rem;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(26, 102, 192, 0.3);
  border-right: none;
  transition: all 0.2s ease;
}

.newsletter-input::placeholder {
  color: var(--pencil-gray, #6B7280);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent, #1A66C0);
}

.newsletter-submit {
  padding: 0.875rem 1.25rem;
  background: var(--accent, #1A66C0);
  border: 1px solid var(--accent, #1A66C0);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-submit:hover {
  background: #145098;
  border-color: #145098;
}

.newsletter-submit svg {
  width: 20px;
  height: 20px;
}

.newsletter-success {
  font-size: 1.3rem;
  color: #10B981;
  margin: 0;
}

.footer-tagline {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-description {
  font-size: 1.4rem;
  color: var(--pencil-gray);
  line-height: 1.6;
  max-width: 400px;
}

/* Footer Menu */
.footer-menu-title {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 102, 192, 0.2);
  margin-bottom: 1rem;
}

.footer-menu-ref {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  color: var(--accent);
  background: rgba(26, 102, 192, 0.15);
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.1em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.footer-link {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.3rem;
  color: var(--pencil-gray);
  padding: 0.375rem 0;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(26, 102, 192, 0.15);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  color: var(--pencil-gray);
}

.footer-doc-id {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  color: rgba(26, 102, 192, 0.6);
  letter-spacing: 0.1em;
}


/* ==========================================================================
   CART DRAWER
   ========================================================================== */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0ms 350ms;
}

.cart-drawer-overlay.open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0ms 0ms;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.cart-drawer-overlay.open .cart-drawer-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--paper-white);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-drawer);
  display: flex;
  flex-direction: column;
}

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

/* Cart Drawer Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.cart-drawer-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cart-drawer-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.cart-drawer-header-icon {
  width: 32px;
  height: 32px;
  background: rgba(26, 102, 192, 0.2);
  border: 1px solid rgba(26, 102, 192, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-header-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.cart-drawer-title {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  z-index: 1;
}

.cart-drawer-close svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.6);
  transition: stroke var(--transition-base);
}

.cart-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.cart-drawer-close:hover svg {
  stroke: rgba(255, 255, 255, 0.9);
}

/* Cart Drawer Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* Free Shipping Progress Bar */
.cart-shipping-bar {
  padding: 1rem 1.25rem;
  background: transparent;
  margin-bottom: 1rem;
}

.cart-shipping-bar-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: var(--pencil-dark);
  margin-bottom: 0.625rem;
}

.cart-shipping-bar-text strong {
  color: var(--accent);
}

.cart-shipping-bar-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.cart-shipping-bar--complete .cart-shipping-bar-text strong {
  color: rgb(var(--color-success));
}

.cart-shipping-bar--complete .cart-shipping-bar-icon {
  stroke: rgb(var(--color-success));
}

.cart-shipping-bar-track {
  height: 6px;
  background: rgba(26, 102, 192, 0.15);
  overflow: hidden;
}

.cart-shipping-bar--complete .cart-shipping-bar-track {
  background: rgba(5, 150, 105, 0.15);
}

.cart-shipping-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #2563eb);
  transition: width 400ms ease;
}

.cart-shipping-bar--complete .cart-shipping-bar-fill {
  background: linear-gradient(90deg, #059669, #10B981);
}

/* Cart Line Items */
.cart-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-line-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

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

.cart-line-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f8f9fa;
}

.cart-line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.cart-line-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.375rem;
}

.cart-line-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-black);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-line-title:hover {
  color: var(--accent);
}

.cart-line-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cart-line-option {
  font-size: 1.2rem;
  color: var(--pencil-gray);
}

.cart-line-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

/* Cart Empty State */
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  flex: 1;
}

.cart-drawer-empty-icon {
  margin-bottom: 1.5rem;
}

.cart-drawer-empty-icon svg {
  width: 80px;
  height: 80px;
  stroke: var(--pencil-light);
  stroke-width: 1;
}

.cart-drawer-empty-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 0.5rem;
}

.cart-drawer-empty-text {
  font-size: 1.5rem;
  color: var(--pencil-gray);
  margin-bottom: 1.5rem;
  max-width: 280px;
  line-height: 1.5;
}

.cart-drawer-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1.5rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.cart-drawer-empty-btn:hover {
  background: #145098;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 102, 192, 0.35);
}

.cart-drawer-empty-btn svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

/* Cart Footer / Summary */
.cart-drawer-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  background: white;
  position: sticky;
  bottom: 0;
}

.cart-drawer-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
  /* ============================================
     CART FONT SIZE CONTROLS
     ============================================ */
  --cart-font-sm: 1rem;      /* "Shipping & taxes calculated at checkout", "Secure Checkout", "Free Shipping" */
  --cart-font-md: 1.25rem;   /* "Subtotal", "You're Saving", warranty description "2 extra years of protection" */
  --cart-font-lg: 1.375rem;  /* "Extended Warranty", warranty price "+$2.99" */
  --cart-font-xl: 1.5rem;    /* "Total", "CHECKOUT • $99.00" button */
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: 700;
}

.cart-drawer-note {
  font-size: 1.2rem;
  color: var(--pencil-gray);
}

.cart-drawer-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--accent);
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.cart-drawer-checkout-btn:hover {
  background: #145098;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 102, 192, 0.35);
}

/* Checkout button shine animation */
.cart-drawer-checkout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: checkoutShine 3s infinite;
}

@keyframes checkoutShine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

/* Cart Security Badges */
.cart-drawer-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--blueprint-line);
}

.cart-drawer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1.1rem;
  color: var(--pencil-gray);
}

.cart-drawer-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--pencil-gray);
}

/* Cart Items Section (Hydrogen style) */
.cart-items-section {
  padding: 0 1.25rem;
}

.cart-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-line {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: opacity 200ms ease;
}

.cart-line:last-child {
  border-bottom: none;
}

.cart-line--loading {
  opacity: 0.5;
  pointer-events: none;
}

.cart-line-image {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f8f9fa;
}

.cart-line-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.cart-line-image-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: #9ca3af;
}

.cart-line-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 0.125rem;
}

.cart-line-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.375rem;
}

.cart-line-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-line-title:hover {
  color: #1A66C0;
}

.cart-line-remove {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 200ms ease;
  padding: 0;
}

.cart-line-remove:hover {
  opacity: 1;
}

.cart-line-remove svg {
  width: 16px;
  height: 16px;
  stroke: #111827;
}

.cart-line-options {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.cart-line-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-line-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.125rem;
}

.cart-line-prices-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.cart-line-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.cart-line-compare-price {
  font-size: 0.8125rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.cart-line-savings {
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
}

/* Quantity Controls */
.cart-quantity {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  background: white;
}

.cart-quantity-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 200ms ease;
  padding: 0;
}

.cart-quantity-btn svg {
  width: 12px;
  height: 12px;
  stroke: #374151;
}

.cart-quantity-btn:hover:not(:disabled) {
  background: #f3f4f6;
}

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

.cart-quantity-value {
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

/* Warranty Protection Toggle */
.cart-protection {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.cart-protection:hover {
  border-color: #1A66C0;
}

.cart-protection--active {
  background: rgba(5, 150, 105, 0.05);
  border-color: #059669;
}

.cart-protection--loading {
  opacity: 0.5;
  pointer-events: none;
}

.cart-protection-image {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
}

.cart-protection--active .cart-protection-image {
  background: rgba(5, 150, 105, 0.1);
  border-color: #059669;
}

.cart-protection-image svg {
  width: 20px;
  height: 20px;
  stroke: #1A66C0;
}

.cart-protection--active .cart-protection-image svg {
  stroke: #059669;
}

.cart-protection-content {
  flex: 1;
  min-width: 0;
}

.cart-protection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-protection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111827;
}

.cart-protection-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #059669;
}

.cart-protection-desc {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0.125rem 0 0;
}

.cart-protection-toggle {
  flex-shrink: 0;
}

.cart-protection-toggle-track {
  width: 40px;
  height: 22px;
  background: #d1d5db;
  border-radius: 11px;
  position: relative;
  transition: background 200ms ease;
}

.cart-protection-toggle-track--active {
  background: #059669;
}

.cart-protection-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 200ms ease;
}

.cart-protection-toggle-track--active .cart-protection-toggle-thumb {
  transform: translateX(18px);
}

/* Discounts Row */
.cart-discounts-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
}

.cart-discounts-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
}

.cart-discounts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}

.cart-discounts-badge svg {
  width: 12px;
  height: 12px;
  stroke: #059669;
}

.cart-discounts-amount {
  font-size: 1rem;
  font-weight: 600;
  color: #059669;
}

/* Checkout Button */
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 2.25rem 1.5rem;
  background: #1A66C0;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cart-checkout-btn:hover {
  background: #145098;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 102, 192, 0.35);
}

.cart-checkout-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: checkoutShine 3s infinite;
}

.cart-checkout-btn-dot {
  opacity: 0.7;
}

.cart-checkout-btn-total {
  font-weight: 700;
}

/* Security Badges */
.cart-summary-security {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cart-summary-security-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  color: #6b7280;
}

.cart-summary-security-item svg {
  width: 14px;
  height: 14px;
  stroke: #6b7280;
}

/* Shipping bar icon success state */
.cart-shipping-bar-icon--success {
  stroke: #059669;
}


/* ==========================================================================
   HERO SECTION V2 - IMMERSIVE SPLIT DESIGN
   ========================================================================== */

.hero-v2 {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-bg-deep);
}

@media (min-width: 1024px) {
  .hero-v2 {
    min-height: 75vh;
  }
}

/* Background Elements */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-v2-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 102, 192, 0.3), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(233, 123, 44, 0.15), transparent),
    linear-gradient(180deg, #0a0a0f 0%, #111827 100%);
}

.hero-v2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-v2-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(26, 102, 192, 0.2);
  top: -200px;
  left: -100px;
}

.hero-v2-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(233, 123, 44, 0.15);
  bottom: -100px;
  right: -50px;
}

.hero-v2-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

@media (min-width: 1024px) {
  .hero-v2-grid {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  }
}

/* Main Container */
.hero-v2-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  flex: 1;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-v2-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 3rem;
  }
}

/* Left Content */
.hero-v2-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-v2-content {
    gap: 2rem;
  }
}

/* Hero Eyebrow - Trust indicator */
.hero-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-v2-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.8);
  }
}

.hero-v2-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

.hero-v2-headline-top,
.hero-v2-headline-bottom {
  font-size: clamp(5rem, 10vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .hero-v2-headline-top,
  .hero-v2-headline-bottom {
    font-size: 7rem;
  }
}

.hero-v2-headline-top {
  color: white;
}

.hero-v2-headline-bottom {
  color: var(--accent);
}

.hero-v2-subtext {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* CTAs */
.hero-v2-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Hero CTA Button - Exact copy from Comfort Strap */
.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #145098 100%);
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .hero-v2-btn-primary {
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
  }
}

.hero-v2-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  animation: heroShine 3s infinite;
}

@keyframes heroShine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.hero-v2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 102, 192, 0.45);
}

.hero-v2-btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-v2-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-v2-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 2rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .hero-v2-btn-secondary {
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
  }
}

.hero-v2-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

/* Trust Row */
.hero-v2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-v2-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-v2-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* Right Visual */
.hero-v2-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-v2-product-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v2-product-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(26, 102, 192, 0.3) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-v2-product-image {
  position: relative;
  z-index: 1;
  width: 110%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  border-radius: 8px;
}

/* Mobile adjustments */
@media (max-width: 1023px) {
  .hero-v2 {
    min-height: 65vh;
  }

  .hero-v2-container {
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }

  .hero-v2-visual {
    display: none;
  }

  .hero-v2-content {
    text-align: center;
    align-items: center;
    gap: 1rem;
  }

  .hero-v2-subtext {
    text-align: center;
    margin-bottom: 0;
  }

  .hero-v2-ctas {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero-v2-trust {
    justify-content: center;
    margin-top: 0.5rem;
    padding-top: 1rem;
  }
}


/* ==========================================================================
   SOCIAL PROOF BAR / STATS MARQUEE
   ========================================================================== */

.social-proof {
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg-deep) 0%, #111827 100%);
  padding: 3rem 1rem;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 102, 192, 0.1) 0%, transparent 30%, transparent 70%, rgba(26, 102, 192, 0.1) 100%);
  pointer-events: none;
}

.social-proof-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.social-proof-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.social-proof-stat {
  text-align: center;
}

.social-proof-value {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.social-proof-value span {
  color: var(--accent);
}

.social-proof-label {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}


/* ==========================================================================
   SECTION HEADERS & BADGES
   ========================================================================== */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--blueprint-line);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.section-badge svg {
  width: 14px;
  height: 14px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #1A66C0);
  background: #E8F1FA;
  border: 1px solid rgba(26, 102, 192, 0.15);
  margin-bottom: 1rem;
}

.section-eyebrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent, #1A66C0);
}

.section-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--ink-black);
}

.section-subtitle {
  font-size: 1.6rem;
  color: var(--pencil-gray);
  margin: 0 auto 2rem auto;
  max-width: 600px;
  text-align: center;
}

/* Dark section headers */
.section-dark .section-badge {
  background: rgba(26, 102, 192, 0.2);
  border-color: rgba(26, 102, 192, 0.4);
  color: #60a5fa;
}

.section-dark .section-title {
  color: white;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}


/* ==========================================================================
   PRODUCTS GRID & PRODUCT CARDS
   ========================================================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

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

.product-card {
  display: block;
  position: relative;
  transition: transform var(--transition-base);
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--paper-cream);
  border: 2px solid var(--blueprint-line);
  position: relative;
}

/* Corner brackets on hover */
.product-card-image::before,
.product-card-image::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  transition: all var(--transition-base);
  opacity: 0;
  z-index: 2;
}

.product-card-image::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.product-card-image::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.product-card:hover .product-card-image::before,
.product-card:hover .product-card-image::after {
  opacity: 1;
  width: 20px;
  height: 20px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  z-index: 1;
}

.product-card-badge--sale {
  background: rgb(var(--color-error));
  color: white;
}

.product-card-badge--new {
  background: var(--accent);
  color: white;
}

.product-card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink-black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-price {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-price-compare {
  text-decoration: line-through;
  color: var(--pencil-light);
}


/* ==========================================================================
   BEST SELLERS SECTION
   ========================================================================== */

.best-sellers {
  padding: 6rem 0;
  background: rgb(var(--color-background));
}

.best-sellers-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.best-sellers-header {
  text-align: center;
  margin-bottom: 3rem;
}

.best-sellers-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
  transition: gap var(--transition-base);
}

.best-sellers-cta:hover {
  gap: 0.75rem;
}

.best-sellers-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.best-sellers-cta:hover svg {
  transform: translateX(4px);
}


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  background: var(--dark-bg-deep);
  color: white;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26, 102, 192, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.testimonials-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-headline {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

/* Testimonial Filters */
.testimonial-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(26, 102, 192, 0.5);
  box-shadow: 0 8px 32px rgba(26, 102, 192, 0.15);
  transform: translateY(-4px);
}

.testimonial-ref {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 0.9rem;
  color: #60a5fa;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-name {
  font-weight: 700;
  color: white;
}

.testimonial-badge {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-badge svg {
  width: 12px;
  height: 12px;
}


/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */

.guarantee-section {
  background: var(--paper-white);
  padding: 5rem 1rem;
  position: relative;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.guarantee-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .guarantee-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.guarantee-badge-visual {
  display: flex;
  justify-content: center;
}

.guarantee-badge-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
}

.guarantee-badge-icon {
  width: 100%;
  height: 100%;
  color: var(--accent);
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guarantee-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.guarantee-title span {
  color: var(--accent);
}

.guarantee-text {
  font-size: 1.6rem;
  color: var(--pencil-dark);
  line-height: 1.7;
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guarantee-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: var(--pencil-dark);
}

.guarantee-feature svg {
  width: 20px;
  height: 20px;
  color: rgb(var(--color-success));
  flex-shrink: 0;
}


/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */

.product-section {
  background: var(--paper-white);
}

.product-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery-main {
  position: relative;
  background: var(--paper-cream);
  border: 2px solid var(--blueprint-dark);
  aspect-ratio: 1;
  overflow: hidden;
}

/* Corner brackets */
.product-gallery-main::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  pointer-events: none;
  z-index: 10;
}

.product-gallery-main::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-bottom: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  pointer-events: none;
  z-index: 10;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid var(--blueprint-line);
  background: var(--paper-cream);
  padding: 0;
  cursor: pointer;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.product-gallery-thumb:hover {
  border-color: var(--blueprint-dark);
  transform: translateY(-2px);
}

.product-gallery-thumb.active {
  border-color: var(--accent);
}

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

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .product-info {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
}

.product-vendor {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(26, 102, 192, 0.08);
  padding: 0.375rem 0.75rem;
  width: fit-content;
}

.product-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--ink-black);
  line-height: 1.2;
  margin: 0;
}

/* Price Block */
.product-price-block {
  padding: 1rem 0;
  border-top: 1px solid var(--blueprint-line);
  border-bottom: 1px solid var(--blueprint-line);
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-price-current {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ink-black);
}

.product-price-compare {
  font-size: 1.8rem;
  color: var(--pencil-gray);
  text-decoration: line-through;
}

.product-price-save {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgb(var(--color-warning));
  background: #FEF3E8;
  padding: 0.375rem 0.625rem;
}

/* Product Options */
.product-options {
  margin-bottom: 1.5rem;
}

.product-option {
  margin-bottom: 1.25rem;
}

.product-option-label {
  display: block;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.product-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-option-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid #e5e7eb;
  background: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.product-option-btn:hover {
  border-color: var(--blueprint-dark);
}

.product-option-btn.active {
  border-color: var(--accent);
  background: rgba(26, 102, 192, 0.1);
}

/* Add to Cart Button */
.product-add-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--accent);
  color: white;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.product-add-btn:hover:not(:disabled) {
  background: #145098;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 102, 192, 0.3);
}

.product-add-btn:disabled {
  background: var(--pencil-gray);
  cursor: not-allowed;
}

/* Product Trust Badges */
.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: var(--pencil-dark);
}

.product-trust-item svg {
  width: 18px;
  height: 18px;
  color: rgb(var(--color-success));
}


/* ==========================================================================
   COLLECTION PAGE
   ========================================================================== */

.collection-section {
  padding: 4rem 0;
}

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

.collection-header {
  margin-bottom: 3rem;
}

.collection-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.collection-description {
  color: var(--pencil-gray);
  font-size: 1.6rem;
  max-width: 600px;
  line-height: 1.6;
}

/* Collection Filters */
.collection-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--blueprint-line);
}

.collection-count {
  font-size: 1.4rem;
  color: var(--pencil-gray);
}

.collection-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.collection-sort-label {
  font-size: 1.4rem;
  color: var(--pencil-gray);
}

.collection-sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--blueprint-line);
  background: white;
  font-size: 1.4rem;
  cursor: pointer;
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

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

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Placeholder styles */
.placeholder {
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder svg {
  width: 50%;
  height: auto;
  color: var(--pencil-light);
}

/* Button utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  will-change: transform, box-shadow;
}

.btn-primary:hover {
  background: #145098;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 102, 192, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-black);
  border: 1px solid var(--blueprint-dark);
}

.btn-secondary:hover {
  background: var(--paper-cream);
  border-color: var(--accent);
}

/* Loading skeleton animation */
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

/* ============================================
   POLICY PAGES (Privacy, Refund, Terms)
   ============================================ */
.policy-section {
  background: #FAFAFA;
  min-height: 60vh;
  padding: 4rem 1.5rem;
  position: relative;
}

.policy-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  pointer-events: none;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
}

.policy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #1A66C0);
  background: #E8F1FA;
  border: 1px solid rgba(26, 102, 192, 0.15);
  margin-bottom: 1.5rem;
}

.policy-eyebrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent, #1A66C0);
}

.policy-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.policy-content {
  background: white;
  padding: 2rem;
  border: 1px solid rgba(26, 102, 192, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .policy-content {
    padding: 3rem;
  }
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4 {
  color: #0f172a;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.policy-content h1 { font-size: 2.5rem; }
.policy-content h2 { font-size: 2rem; }
.policy-content h3 { font-size: 1.75rem; }
.policy-content h4 { font-size: 1.5rem; }

.policy-content h1:first-child,
.policy-content h2:first-child,
.policy-content h3:first-child,
.policy-content h4:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.5rem;
}

.policy-content ul,
.policy-content ol {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.75rem;
  padding-left: 0;
  list-style-position: inside;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content strong {
  color: #0f172a;
  font-weight: 700;
}

.policy-content a {
  color: var(--accent, #1A66C0);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.policy-content a:hover {
  color: #145098;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.policy-content table th,
.policy-content table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
  font-size: 1.5rem;
}

.policy-content table th {
  font-weight: 700;
  color: #0f172a;
  background: #f8fafc;
}

.policy-content table td {
  color: #374151;
}

.policy-content blockquote {
  border-left: 4px solid var(--accent, #1A66C0);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #64748b;
  font-size: 1.5rem;
}

.policy-content hr {
  border: none;
  border-top: 1px solid rgba(26, 102, 192, 0.1);
  margin: 2.5rem 0;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 2rem 1rem;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .policy-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}

/* ============================================
   TRACK ORDER PAGE STYLES
   ============================================ */

.track-order-page {
  padding: 2rem 1rem;
  min-height: 60vh;
  background: #fff;
}

.track-order-container {
  max-width: 640px;
  margin: 0 auto;
}

.track-order-header {
  text-align: center;
  margin-bottom: 2rem;
}

.track-order-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.track-order-header p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.track-order-forms {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.track-order-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.track-form-section {
  padding: 1.5rem;
}

.track-form-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 1rem 0;
}

.track-form-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 1rem 0;
}

.track-form-group {
  margin-bottom: 1rem;
}

.track-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.track-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.track-form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.track-form-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #111827;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.track-form-submit:hover:not(:disabled) {
  background: #374151;
}

.track-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.track-form-error {
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
}

.track-form-error p {
  margin: 0;
}

.track-order-result {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
}

.track-order-again {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.track-again-link {
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: none;
}

.track-again-link:hover {
  color: #374151;
}

.track-order-help {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  text-align: center;
}

.track-order-help h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem 0;
}

.track-order-help p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.track-order-help a {
  color: #3b82f6;
}

/* Tracking Timeline Container */
.tracking-timeline-container {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 0;
}

.track-order-result .tracking-timeline-container {
  border: none;
  padding: 0;
}

/* Tracking Header */
.tracking-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.tracking-header-main,
.tracking-carrier {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tracking-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tracking-number {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  word-break: break-all;
}

.tracking-carrier-name {
  font-size: 1rem;
  color: #374151;
}

/* Status Banner */
.tracking-status-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  border: 1px solid #6366f1;
}

.tracking-status-banner.status-delivered {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 1px solid #10b981;
}

.tracking-status-banner.status-out-for-delivery {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #3b82f6;
}

.tracking-status-banner.status-in-transit {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  border: 1px solid #6366f1;
}

.tracking-status-banner.status-pending {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
}

.tracking-status-banner.status-error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 1px solid #ef4444;
}

.tracking-status-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.tracking-status-icon svg {
  color: #374151;
}

.status-delivered .tracking-status-icon svg {
  color: #059669;
}

.status-error .tracking-status-icon svg {
  color: #dc2626;
}

.tracking-status-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tracking-status-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.tracking-status-message {
  font-size: 0.875rem;
  color: #374151;
}

.tracking-status-location {
  font-size: 0.8125rem;
  color: #6b7280;
}

.tracking-delivery-estimate {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.tracking-estimate-date {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

/* Progress Bar */
.tracking-progress {
  margin-bottom: 1.5rem;
}

.tracking-progress-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.tracking-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.tracking-progress-steps {
  display: flex;
  justify-content: space-between;
}

.tracking-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.tracking-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tracking-progress-step.completed .tracking-step-dot {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.tracking-progress-step.current .tracking-step-dot {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.tracking-step-label {
  font-size: 0.6875rem;
  color: #9ca3af;
  text-align: center;
  max-width: 80px;
}

.tracking-progress-step.completed .tracking-step-label,
.tracking-progress-step.current .tracking-step-label {
  color: #374151;
  font-weight: 500;
}

/* Timeline Events */
.tracking-timeline {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.tracking-timeline-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

.tracking-timeline-events {
  display: flex;
  flex-direction: column;
}

.tracking-event {
  display: flex;
  gap: 1rem;
  min-height: 60px;
}

.tracking-event-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
}

.tracking-event-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e5e7eb;
  flex-shrink: 0;
}

.tracking-event-dot.active {
  background: #3b82f6;
  box-shadow: 0 0 0 2px #bfdbfe;
}

.tracking-event-line {
  width: 2px;
  flex: 1;
  background: #e5e7eb;
  margin: 4px 0;
}

.tracking-event-content {
  flex: 1;
  padding-bottom: 1rem;
}

.tracking-event-header {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.tracking-event-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}

.tracking-event-time {
  font-size: 0.8125rem;
  color: #6b7280;
}

.tracking-event-message {
  font-size: 0.875rem;
  color: #111827;
  margin: 0;
}

.tracking-event-location {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0.25rem 0 0 0;
}

.tracking-event.latest .tracking-event-message {
  font-weight: 500;
}

/* Carrier Links */
.tracking-carrier-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.tracking-carrier-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #3b82f6;
  text-decoration: none;
}

.tracking-carrier-link:hover {
  text-decoration: underline;
}

/* Empty State */
.tracking-empty-state {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px dashed #d1d5db;
}

.tracking-empty-icon {
  margin-bottom: 1rem;
  color: #9ca3af;
}

.tracking-empty-message {
  font-size: 1rem;
  color: #374151;
  margin: 0 0 0.5rem 0;
}

.tracking-empty-hint {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .track-order-header h1 {
    font-size: 1.5rem;
  }
  
  .tracking-status-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .tracking-delivery-estimate {
    align-items: center;
  }
  
  .tracking-progress-steps {
    gap: 0.25rem;
  }
  
  .tracking-step-label {
    font-size: 0.625rem;
    max-width: 60px;
  }
  
  .tracking-header {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================
   LISTICLE PAGE STYLES
   High-Converting Sales Page Design
   ============================================ */

.listicle-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Top Banner */
.listicle-top-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  text-align: center;
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .listicle-top-banner {
    font-size: 1.375rem;
    padding: 1.125rem 1.5rem;
  }
}

.listicle-top-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.listicle-top-banner p {
  margin: 0;
  color: #ffffff;
  font-size: inherit;
}

.listicle-top-banner a,
.banner-link {
  color: #fbbf24 !important;
  text-decoration: underline;
  font-weight: 700;
  font-size: inherit;
  transition: color 0.2s ease;
}

.listicle-top-banner a:hover,
.banner-link:hover {
  color: #fcd34d !important;
}

/* Star Rating */
.listicle-stars {
  display: flex;
  gap: 2px;
}

/* Hero Section V2 */
.listicle-hero-v2 {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.listicle-hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.listicle-hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.listicle-hero-v2-content {
  position: relative;
}

.listicle-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  margin-bottom: 32px;
}

.listicle-hero-badge span {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .listicle-hero-badge span {
    font-size: 1.25rem;
  }
}

.listicle-hero-badge .listicle-stars svg {
  width: 16px;
  height: 16px;
}

/* Listicle Hero Typography - Matches DESIGN.md */
.listicle-hero-v2 h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .listicle-hero-v2 h1 {
    font-size: 3.5rem;
  }
}

.listicle-hero-v2 h1 .highlight-yellow {
  color: #fbbf24;
}

.listicle-hero-v2-subtitle {
  font-size: 1.625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 550px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .listicle-hero-v2-subtitle {
    font-size: 1.875rem;
  }
}

.listicle-hero-v2-subtitle strong {
  color: #ffffff;
}

.listicle-hero-v2-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Hero Benefits - Matches DESIGN.md */
.listicle-hero-v2-benefits li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .listicle-hero-v2-benefits li {
    font-size: 1.625rem;
  }
}

.listicle-hero-v2-benefits .check-svg {
  width: 20px;
  height: 20px;
  stroke: #1A66C0;
  flex-shrink: 0;
}

.listicle-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Listicle CTA Button - Clean Modern Style */
.listicle-cta-button-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #145098 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(26, 102, 192, 0.35);
}

@media (min-width: 768px) {
  .listicle-cta-button-v2 {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
  }
}

.listicle-cta-button-v2 svg {
  width: 24px;
  height: 24px;
}

.listicle-cta-button-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 102, 192, 0.45);
}

.listicle-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.listicle-guarantee-badge svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.listicle-guarantee-badge div {
  display: flex;
  flex-direction: column;
}

.listicle-guarantee-badge strong {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}

.listicle-guarantee-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.listicle-hero-v2-image {
  position: relative;
  z-index: 1;
}

.hero-product-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
}

/* Pulse Animation for CTAs */
.pulse-animation {
  animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 102, 192, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(26, 102, 192, 0); }
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-product-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
}

.sticky-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-price-old {
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  font-size: 1.125rem;
}

.sticky-price-new {
  color: #1A66C0;
  font-weight: 800;
  font-size: 1.375rem;
}

.sticky-cta-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-timer {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.countdown-compact {
  font-weight: 600;
  color: #fbbf24;
}

/* Sticky CTA Button - Matches DESIGN.md Primary Button (compact) */
.sticky-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent, #1A66C0) 0%, #145098 100%);
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(26, 102, 192, 0.35);
}

.sticky-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 102, 192, 0.45);
}

/* Problems Section V2 */
.listicle-problems-v2 {
  background: #ffffff;
  padding: 80px 24px;
}

.problems-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 10px;
}

.problems-intro {
  color: #6b7280;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Problems Header - Matches DESIGN.md H2 */
.problems-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-black, #111827);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .problems-header h2 {
    font-size: 3rem;
  }
}

.problems-header h2 span {
  color: var(--accent, #1A66C0);
}

/* Desktop-only line break */
.desktop-br {
  display: none;
}

@media (min-width: 768px) {
  .desktop-br {
    display: block;
  }
}

.problems-stat {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: #0369a1;
  font-size: 1.375rem;
  font-weight: 500;
  display: inline-block;
}

@media (min-width: 768px) {
  .problems-stat {
    font-size: 1.5rem;
  }
}

.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 60px;
  align-items: center;
}

.problem-row.reverse {
  direction: rtl;
}

.problem-row.reverse > * {
  direction: ltr;
}

.problem-content-v2 {
  padding: 24px 0;
}

.problem-number-v2 {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1A66C0 0%, #155ba0 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Problem Content - Matches DESIGN.md */
.problem-content-v2 h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-black, #111827);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .problem-content-v2 h3 {
    font-size: 2rem;
  }
}

.problem-content-v2 p {
  color: var(--pencil-dark, #374151);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .problem-content-v2 p {
    font-size: 1.5rem;
  }
}

.problem-highlight-v2 {
  background: #f8fafc;
  border-left: 4px solid #1A66C0;
  padding: 12px 16px;
  color: #1a1a2e !important;
  font-weight: 600;
  font-style: italic;
  margin-top: 16px !important;
}

.problem-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
}

.problem-img-placeholder,
.feature-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #d1d5db;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #6b7280;
}

.problem-img-placeholder svg,
.feature-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.problem-img-placeholder span,
.feature-img-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Product CTA Card V2 - Premium Design */
.listicle-product-cta-card-v2 {
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .listicle-product-cta-card-v2 {
    padding: 5rem 2rem;
  }
}

/* Gradient overlay */
.listicle-product-cta-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 102, 192, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(233, 123, 44, 0.08), transparent),
    linear-gradient(180deg, #0a0a0f 0%, #111827 100%);
  pointer-events: none;
}

/* Decorative orb */
.listicle-product-cta-card-v2::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(26, 102, 192, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.cta-card-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .cta-card-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.product-cta-image-v2 {
  position: relative;
}

/* Gallery frame styling */
.product-cta-image-v2::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(26, 102, 192, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 14px;
  z-index: -1;
}

.best-seller-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.product-cta-content-v2 {
  color: #fff;
}

/* Product Title */
.product-cta-content-v2 h3 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

@media (min-width: 768px) {
  .product-cta-content-v2 h3 {
    font-size: 2.25rem;
  }
}

.cta-reviews-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-reviews-row .listicle-stars svg {
  width: 18px;
  height: 18px;
}

.cta-reviews-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
}

.cta-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

/* Pricing */
.cta-price-old {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 500;
}

@media (min-width: 768px) {
  .cta-price-old {
    font-size: 1.75rem;
  }
}

.cta-price-new {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cta-price-new {
    font-size: 3.25rem;
  }
}

.cta-save-badge {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.sale-text-v2 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.product-cta-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Countdown Timer */
.listicle-countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  min-width: 70px;
}

.countdown-number {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

@media (min-width: 768px) {
  .countdown-number {
    font-size: 2rem;
  }
}

.countdown-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-weight: 600;
}

.scarcity-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(251, 191, 36, 0.1);
  padding: 0.625rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.scarcity-text svg {
  width: 18px;
  height: 18px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Large CTA Button - Clean Modern Style */
.cta-button-large {
  display: block;
  padding: 1.375rem 2.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent, #1A66C0) 0%, #145098 100%);
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(26, 102, 192, 0.35);
}

@media (min-width: 768px) {
  .cta-button-large {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
  }
}

.cta-button-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  animation: ctaLargeShine 3s infinite;
}

@keyframes ctaLargeShine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 102, 192, 0.5);
}

/* Trust Badges - Refined */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .trust-badges {
    justify-content: flex-start;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.trust-badge:hover {
  color: rgba(255, 255, 255, 0.9);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* Solution Section V2 */
.listicle-solution-v2 {
  text-align: center;
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Solution Section - Matches DESIGN.md */
.listicle-solution-v2 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-black, #111827);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .listicle-solution-v2 h2 {
    font-size: 3rem;
  }
}

.listicle-solution-v2 p {
  font-size: 1.5rem;
  color: var(--pencil-gray, #6B7280);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .listicle-solution-v2 p {
    font-size: 1.75rem;
  }
}

.canada-flag::after {
  content: ' 🇨🇦';
}

.solution-brand strong {
  color: #1A66C0;
}

.solution-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1A66C0;
}

.stat-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.solution-arrow {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
}

.solution-arrow::after {
  content: ' ↓';
  color: #1A66C0;
}

/* Feature Section V2 */
.listicle-feature-v2 {
  padding: 80px 24px;
}

.listicle-feature-v2.alt-bg {
  background: #f8f9fa;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
}

.feature-badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.feature-badge {
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .feature-badge {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
  }
}

.feature-badge.highlight {
  background: #22c55e;
  color: #fff;
}

/* Feature Content - Matches DESIGN.md */
.feature-content-v2 h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-black, #111827);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .feature-content-v2 h2 {
    font-size: 2.75rem;
  }
}

.feature-content-v2 > p {
  color: var(--pencil-gray, #6B7280);
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .feature-content-v2 > p {
    font-size: 1.5rem;
  }
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

/* Feature Bullets - Matches DESIGN.md */
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--ink-black, #111827);
  font-size: 1.375rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .feature-bullets li {
    font-size: 1.5rem;
  }
}

.feature-bullets svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-quote {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}

.feature-quote p {
  font-style: italic;
  color: #166534;
  margin: 0 0 8px;
}

.feature-quote cite {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Battery Comparison Visual */
.battery-comparison {
  margin-top: 20px;
  padding: 16px;
  background: #1a1a2e;
  border-radius: 12px;
}

.battery-bar {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.battery-bar:last-child {
  margin-bottom: 0;
}

.battery-label {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
}

@media (min-width: 768px) {
  .battery-bar {
    grid-template-columns: 120px 1fr 70px;
  }
  
  .battery-label {
    font-size: 1.25rem;
  }
}

.battery-fill-container {
  width: 100%;
  height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.battery-fill {
  height: 100%;
  border-radius: 4px;
}

.battery-bar.stock .battery-fill {
  background: #ef4444;
}

.battery-bar.nordlabs .battery-fill {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.battery-time {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .battery-time {
    font-size: 1.25rem;
  }
}

/* Social Proof V2 */
.listicle-social-proof-v2 {
  padding: 80px 24px;
  text-align: center;
}

.hero-quote {
  max-width: 600px;
  margin: 0 auto 24px;
}

.hero-quote p {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.hero-quote cite {
  color: #1A66C0;
  font-style: normal;
  font-weight: 600;
}

.social-proof-text {
  color: #4b5563;
  font-size: 1.375rem;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .social-proof-text {
    font-size: 1.5rem;
  }
}

.listicle-social-proof-v2 .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.listicle-social-proof-v2 .testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.listicle-social-proof-v2 .testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.listicle-social-proof-v2 .avatar-placeholder {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1A66C0 0%, #155ba0 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.listicle-social-proof-v2 .testimonial-info {
  flex: 1;
}

.listicle-social-proof-v2 .testimonial-info strong {
  display: block;
  color: #1a1a2e;
}

.listicle-social-proof-v2 .verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #22c55e;
  font-size: 0.75rem;
}

.listicle-social-proof-v2 .verified-badge svg {
  width: 12px;
  height: 12px;
}

.listicle-social-proof-v2 .testimonial-card p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .listicle-social-proof-v2 .testimonial-card p {
    font-size: 1.25rem;
  }
}

/* Comparison Table */
.comparison-section {
  background: #1a1a2e;
  padding: 80px 24px;
  color: #fff;
}

/* Comparison Section - Matches DESIGN.md */
.comparison-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .comparison-section h2 {
    font-size: 3rem;
  }
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.comparison-header {
  background: rgba(255,255,255,0.1);
  font-weight: 600;
  font-size: 1.125rem;
}

.comparison-cell {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 1.25rem;
}

.comparison-cell.empty {
  background: transparent;
}

.comparison-cell.feature {
  text-align: left;
  font-weight: 600;
  font-size: 1.25rem;
}

.comparison-cell.highlight {
  background: rgba(34, 211, 238, 0.1);
  color: #1A66C0;
}

.comparison-header .comparison-cell.highlight {
  background: #1A66C0;
  color: #fff;
  font-weight: 700;
}

.rating-bad { color: #ef4444; }
.rating-ok { color: #fbbf24; }
.rating-good { color: #22c55e; font-weight: 700; }

.x-mark { color: #ef4444; font-size: 1.25rem; }
.check-mark { color: #22c55e; font-size: 1.25rem; }

/* Benefits V2 */
.listicle-benefits-v2 {
  padding: 80px 24px;
  text-align: center;
}

/* Benefits Section - Matches DESIGN.md */
.listicle-benefits-v2 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-black, #111827);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .listicle-benefits-v2 h2 {
    font-size: 3rem;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: left;
}

.benefit-item svg {
  width: 28px;
  height: 28px;
  stroke: #22c55e;
  flex-shrink: 0;
}

/* Benefit Items - Matches DESIGN.md */
.benefit-item span {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink-black, #111827);
}

@media (min-width: 768px) {
  .benefit-item span {
    font-size: 1.5rem;
  }
}

/* FAQ Section for Listicle */
.listicle-faq-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
}

.listicle-faq-section .faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* FAQ Section - Matches DESIGN.md */
.listicle-faq-section .faq-accordion h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--ink-black, #111827);
}

@media (min-width: 768px) {
  .listicle-faq-section .faq-accordion h3 {
    font-size: 3rem;
  }
}

.listicle-faq-section .faq-accordion h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1A66C0, #155ba0);
  margin: 16px auto 40px;
  border-radius: 2px;
}

.listicle-faq-section .faq-item {
  background: #fff;
  border: none;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.listicle-faq-section .faq-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.listicle-faq-section .faq-item.open {
  box-shadow: 0 8px 32px rgba(26, 102, 192, 0.15);
  border: 1px solid rgba(26, 102, 192, 0.2);
}

.listicle-faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: left;
  gap: 16px;
  transition: all 0.2s ease;
}

.listicle-faq-section .faq-question:hover {
  color: #1A66C0;
}

.listicle-faq-section .faq-item.open .faq-question {
  color: #1A66C0;
}

.listicle-faq-section .faq-question svg {
  width: 24px;
  height: 24px;
  stroke: #9ca3af;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: #f3f4f6;
  border-radius: 50%;
  padding: 4px;
}

.listicle-faq-section .faq-item:hover .faq-question svg {
  stroke: #1A66C0;
  background: #e0f2fe;
}

.listicle-faq-section .faq-item.open .faq-question svg {
  stroke: #fff;
  background: #1A66C0;
  transform: rotate(180deg);
}

.listicle-faq-section .faq-answer {
  padding: 0 24px 24px;
  animation: fadeIn 0.3s ease;
}

.listicle-faq-section .faq-answer p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  font-size: 1.375rem;
  border-left: 3px solid #1A66C0;
  padding-left: 16px;
}

@media (min-width: 768px) {
  .listicle-faq-section .faq-question {
    font-size: 1.625rem;
  }
  
  .listicle-faq-section .faq-answer p {
    font-size: 1.5rem;
  }
}

/* Live Viewers */
.live-viewers {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Responsive Styles for Listicle */
@media (max-width: 900px) {
  .listicle-hero-v2-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 40px;
  }
  
  .listicle-hero-v2-content {
    text-align: left;
  }
  
  .listicle-hero-v2-image {
    order: 1;
  }
  
  .listicle-hero-cta-row {
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  
  .listicle-cta-button-v2 {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .problem-row,
  .problem-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }
  
  .problem-image-v2 {
    order: -1;
  }
  
  .cta-card-inner,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  
  .feature-image-v2 {
    order: -1;
  }
  
  .listicle-social-proof-v2 .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-cta-bar {
    border-top: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  }
  
  .sticky-cta-inner {
    flex-direction: row;
    gap: 12px;
    padding: 12px 16px;
  }
  
  .sticky-cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .sticky-timer {
    display: none;
  }
  
  .sticky-cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .listicle-hero-v2-inner {
    padding: 32px 20px 48px;
  }
  
  .listicle-hero-v2 h1 {
    font-size: 2.75rem;
  }
  
  .listicle-hero-badge {
    padding: 0.625rem 1rem;
  }
  
  .listicle-hero-badge span {
    font-size: 0.9375rem;
  }
  
  .listicle-hero-v2-subtitle {
    font-size: 1.375rem;
  }
  
  .listicle-hero-v2-benefits li {
    font-size: 1.375rem;
  }
  
  .listicle-cta-button-v2 {
    width: 100%;
  }
  
  .listicle-problems-v2,
  .listicle-solution-v2,
  .listicle-feature-v2,
  .listicle-social-proof-v2,
  .listicle-benefits-v2,
  .listicle-faq-section {
    padding: 48px 20px;
  }
  
  .listicle-product-cta-card-v2 {
    padding: 40px 20px;
  }
  
  .comparison-section {
    padding: 48px 16px;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    font-size: 0.75rem;
  }
  
  .comparison-cell {
    padding: 10px 6px;
  }
  
  .countdown-block {
    padding: 12px 16px;
    min-width: 60px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .listicle-faq-section .faq-accordion h3 {
    font-size: 2.25rem;
  }
  
  .listicle-faq-section .faq-question {
    font-size: 1.25rem;
    padding: 1.125rem 1.25rem;
  }
  
  .listicle-faq-section .faq-answer p {
    font-size: 1.25rem;
  }
}

/* ============================================
   Product Card Component Styles
   (Moved from snippets/product-card.liquid)
   ============================================ */

.product-card {
  display: block;
  position: relative;
  transition: transform 0.2s ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--paper-cream, #F5F3EF);
  border: 2px solid rgba(26, 102, 192, 0.1);
  position: relative;
}

/* Corner brackets on hover */
.product-card-image::before,
.product-card-image::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  transition: all 0.2s ease;
  opacity: 0;
  z-index: 2;
}

.product-card-image::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid var(--accent, #1A66C0);
  border-left: 2px solid var(--accent, #1A66C0);
}

.product-card-image::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid var(--accent, #1A66C0);
  border-right: 2px solid var(--accent, #1A66C0);
}

.product-card:hover .product-card-image::before,
.product-card:hover .product-card-image::after {
  opacity: 1;
  width: 20px;
  height: 20px;
}

.product-card:hover .product-card-image {
  border-color: rgba(26, 102, 192, 0.3);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.product-card-placeholder svg {
  width: 50%;
  height: 50%;
  color: #9ca3af;
}

/* Product Card Badges */
.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  z-index: 1;
  text-transform: uppercase;
}

.product-card-badge--sale {
  background: #f97316;
  color: white;
}

.product-card-badge--new {
  background: var(--accent, #1A66C0);
  color: white;
}

/* Product Card Info */
.product-card-info {
  padding: 0 0.25rem;
}

.product-card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink-black, #111827);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.product-card-price {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-price-compare {
  text-decoration: line-through;
  color: var(--pencil-light, #9CA3AF);
}

.product-card-price-current {
  color: var(--ink-black, #111827);
}

/* Product Card Rating */
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.product-card-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: -1px;
}

.product-card-review-count {
  font-size: 1.2rem;
  color: var(--pencil-gray, #6B7280);
}

/* ============================================
   Product Detail Page (PDP) Styles - Light Theme
   (Moved from sections/main-product.liquid)
   ============================================ */

/* PDP CSS Variables - Light Theme */
.pdp-light {
  --accent: #1A66C0;
  --accent-light: #E8F1FA;
  --accent-hover: #145098;
  --ink-black: #111827;
  --pencil-dark: #374151;
  --pencil-gray: #6B7280;
  --pencil-light: #9CA3AF;
  --paper-white: #FAFAFA;
  --paper-cream: #F5F5F4;
  --success-green: #059669;
  --success-green-bg: #D1FAE5;
  --star-gold: #F59E0B;
}

/* Base PDP Styles - Light Theme */
.pdp-light {
  position: relative;
  background: var(--paper-white);
  min-height: 100vh;
}

/* SECTION 01: BUY BOX - Light Theme */
.pdp-buybox-light {
  position: relative;
  width: 100%;
  padding: 3rem 1.5rem;
  background-color: var(--paper-white);
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .pdp-buybox-light {
    padding: 3rem 2rem 5rem;
  }
}

.pdp-buybox-light-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pdp-buybox-light-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 102, 192, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(233, 123, 44, 0.04), transparent),
    linear-gradient(180deg, #ffffff 0%, var(--paper-white) 100%);
}

.pdp-buybox-light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.pdp-buybox-light-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(26, 102, 192, 0.06);
  top: -200px;
  left: -150px;
}

.pdp-buybox-light-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(233, 123, 44, 0.04);
  bottom: -100px;
  right: -100px;
}

.pdp-buybox-light-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Buybox Grid */
.pdp-buybox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .pdp-buybox-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* PDP Gallery */
.pdp-gallery {
  position: relative;
}

@media (min-width: 1024px) {
  .pdp-gallery {
    position: sticky;
    top: calc(var(--header-height, 80px) + 2rem);
  }
}

.pdp-gallery-main {
  position: relative;
  margin-bottom: 1rem;
}

.pdp-gallery-frame {
  position: relative;
  aspect-ratio: 1;
  background: white;
  border: 2px solid rgba(26, 102, 192, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.pdp-gallery-images-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.pdp-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdp-gallery-image-active {
  opacity: 1;
  position: relative;
}

/* Gallery Arrows - Light Theme */
.pdp-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border: 2px solid rgba(26, 102, 192, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  will-change: background, border-color;
}

.pdp-gallery-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.pdp-gallery-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--pencil-dark);
  transition: color 0.2s ease;
}

.pdp-gallery-arrow:hover svg {
  color: white;
}

.pdp-gallery-arrow-prev {
  left: 1rem;
}

.pdp-gallery-arrow-next {
  right: 1rem;
}

@media (max-width: 768px) {
  .pdp-gallery-arrow {
    display: none;
  }
}

/* Thumbnails - Light Theme */
.pdp-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.pdp-thumb {
  position: relative;
  flex: 1;
  aspect-ratio: 1;
  padding: 0;
  background: white;
  border: 2px solid rgba(26, 102, 192, 0.1);
  border-radius: 6px;
  cursor: pointer;
  overflow: visible;
  transition: all 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .pdp-thumb:hover {
    border-color: rgba(26, 102, 192, 0.25);
  }
}

.pdp-thumb-active {
  border-color: transparent;
}

/* Corner bracket decorations - only show on active */
.pdp-thumb::before,
.pdp-thumb::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.pdp-thumb::before {
  top: -4px;
  left: -4px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.pdp-thumb::after {
  bottom: -4px;
  right: -4px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.pdp-thumb-active::before,
.pdp-thumb-active::after {
  opacity: 1;
}

.pdp-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Conversion Column */
.pdp-conversion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Title Block */
.pdp-title-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdp-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(26, 102, 192, 0.2);
  width: fit-content;
  letter-spacing: 0.1em;
}

.pdp-badge-icon {
  stroke: var(--accent);
}

.pdp-product-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ink-black);
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 1024px) {
  .pdp-product-title {
    font-size: 3.5rem;
  }
}

/* Rating Block */
.pdp-rating-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pdp-stars {
  color: var(--star-gold);
  font-size: 1.25rem;
  letter-spacing: -1px;
}

.pdp-rating-score {
  font-weight: 700;
  color: var(--ink-black);
  font-size: 1.25rem;
}

.pdp-rating-count {
  font-size: 1rem;
  color: var(--pencil-gray);
}

/* Price Block */
.pdp-price-block {
  padding: 1rem 0;
  border-top: 1px solid rgba(26, 102, 192, 0.1);
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
}

.pdp-price-label {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pencil-gray);
  letter-spacing: 0.15em;
  margin-bottom: 0.375rem;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pdp-price-current {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink-black);
}

.pdp-price-compare {
  font-size: 1.25rem;
  color: var(--pencil-light);
  text-decoration: line-through;
}

.pdp-price-save {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--success-green);
  background: var(--success-green-bg);
  padding: 0.375rem 0.625rem;
  letter-spacing: 0.05em;
}

/* Specs Table */
.pdp-specs-table {
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 102, 192, 0.04);
}

.pdp-specs-tabs {
  display: flex;
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
}

.pdp-specs-tab {
  flex: 1;
  padding: 1rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pencil-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.pdp-specs-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent);
  transition: left 0.3s ease, right 0.3s ease;
}

.pdp-specs-tab:hover {
  color: var(--accent);
}

.pdp-specs-tab-active {
  color: var(--accent);
}

.pdp-specs-tab-active::after {
  left: 0;
  right: 0;
}

.pdp-specs-content {
  padding: 1.25rem;
}

.pdp-spec-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26, 102, 192, 0.06);
}

.pdp-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pdp-spec-row:first-child {
  padding-top: 0;
}

.pdp-spec-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--success-green);
  margin-top: 2px;
}

.pdp-spec-check svg {
  width: 100%;
  height: 100%;
}

.pdp-spec-name {
  font-size: 1.125rem;
  color: var(--ink-black);
  line-height: 1.5;
}

.pdp-spec-name strong {
  font-weight: 700;
}

/* Variant Options */
.pdp-variant-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-option-label {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pencil-gray);
  letter-spacing: 0.1em;
}

.pdp-option-label-value {
  color: var(--accent);
}

.pdp-option-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.pdp-option-btn {
  padding: 1.25rem 1rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pencil-dark);
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-option-btn:hover:not(.pdp-option-selected) {
  background: var(--paper-cream);
  border-color: rgba(26, 102, 192, 0.25);
}

.pdp-option-selected {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* CTA Button */
.pdp-cta-container {
  margin-top: 0.5rem;
}

.pdp-cta-btn {
  width: 100%;
  padding: 1.5rem 2.5rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #145098 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
  will-change: transform, box-shadow;
}

@media (min-width: 768px) {
  .pdp-cta-btn {
    padding: 1.75rem 3rem;
    font-size: 1.75rem;
  }
}

.pdp-cta-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 102, 192, 0.35);
}

.pdp-cta-btn:disabled {
  background: var(--pencil-gray);
  cursor: not-allowed;
}

.pdp-cta-btn-text {
  position: relative;
  z-index: 1;
}

.pdp-cta-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  animation: pdpBtnShine 3s infinite;
}

@keyframes pdpBtnShine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.pdp-cta-btn:disabled .pdp-cta-btn-shine {
  animation: none;
  display: none;
}

/* Trust Badges */
.pdp-trust-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pdp-trust-item-inline {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  color: var(--pencil-dark);
}

.pdp-trust-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.pdp-trust-separator {
  color: var(--pencil-light);
}

/* Product Description */
.pdp-product-description {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 102, 192, 0.1);
  margin-top: 0.5rem;
}

.pdp-description-content {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--pencil-dark);
}

.pdp-description-content h1,
.pdp-description-content h2,
.pdp-description-content h3 {
  font-weight: 700;
  color: var(--ink-black);
  margin: 1.5rem 0 0.75rem;
}

.pdp-description-content ul,
.pdp-description-content ol {
  padding-left: 1.5rem;
}

.pdp-description-content li {
  margin-bottom: 0.5rem;
}

/* FAQ Section - Light Theme */
.pdp-faq-section {
  padding: 4rem 1.5rem;
  background: white;
  text-align: center;
  position: relative;
}

.pdp-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 102, 192, 0.15), transparent);
}

.pdp-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.pdp-faq-header {
  margin-bottom: 2.5rem;
}

.pdp-section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(26, 102, 192, 0.2);
  margin-bottom: 1.25rem;
}

.pdp-section-eyebrow svg {
  stroke: var(--accent);
}

.pdp-faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink-black);
  margin: 0;
}

@media (min-width: 768px) {
  .pdp-faq-title {
    font-size: 3rem;
  }
}

.pdp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.pdp-faq-item {
  background: var(--paper-white);
  border: 1px solid rgba(26, 102, 192, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.pdp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-black);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
}

.pdp-faq-question:hover {
  background: rgba(26, 102, 192, 0.03);
}

.pdp-faq-ref {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.pdp-faq-text {
  flex: 1;
}

.pdp-faq-toggle {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pdp-faq-item.is-open .pdp-faq-toggle {
  transform: rotate(45deg);
}

.pdp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pdp-faq-item.is-open .pdp-faq-answer {
  max-height: 400px;
}

.pdp-faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  padding-left: 4rem;
  font-size: 1.25rem;
  color: var(--pencil-dark);
  line-height: 1.7;
}


/* ============================================
   Guarantee Section Styles
   (Moved from sections/guarantee.liquid)
   ============================================ */
    position: relative;
    background: 
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 102, 192, 0.08), transparent 50%),
      radial-gradient(ellipse 60% 50% at 20% 80%, rgba(34, 197, 94, 0.05), transparent 50%),
      linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 1.5rem;
    overflow: hidden;
  }

  .guarantee-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26, 102, 192, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 102, 192, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
  }

  .guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 102, 192, 0.15), transparent);
  }

  .guarantee-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  /* Shield Badge with Animated Rings */
  .guarantee-badge {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
  }

  .guarantee-badge-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(26, 102, 192, 0.15);
  }

  .guarantee-badge-ring-1 {
    inset: -12px;
    animation: pulseRing 3s ease-in-out infinite;
  }

  .guarantee-badge-ring-2 {
    inset: -24px;
    border-color: rgba(26, 102, 192, 0.08);
    animation: pulseRing 3s ease-in-out infinite 0.5s;
  }

  @keyframes pulseRing {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.5;
      transform: scale(1.02);
    }
  }

  .guarantee-badge-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8F1FA 0%, #ffffff 100%);
    border: 2px solid var(--accent, #1A66C0);
    border-radius: 50%;
    box-shadow: 
      0 8px 32px rgba(26, 102, 192, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .guarantee-shield {
    width: 48px;
    height: 48px;
    stroke: var(--accent, #1A66C0);
  }

  /* Title */
  .guarantee-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  /* Subtitle */
  .guarantee-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0 auto 2.5rem;
    max-width: 480px;
    line-height: 1.6;
  }

  /* Features */
  .guarantee-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 640px) {
    .guarantee-features {
      flex-direction: row;
      justify-content: center;
      gap: 2rem;
    }
  }

  .guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
  }

  .guarantee-feature svg {
    color: #22c55e;
    flex-shrink: 0;
  }

  /* Note */
  .guarantee-note {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 0.8125rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 2rem 0;
  }

  /* Buttons */
  .guarantee-buttons {
    display: flex;
    justify-content: center;
  }

  .guarantee-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent, #1A66C0);
    color: white;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .guarantee-cta:hover {
    background: #145098;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 102, 192, 0.3);
  }

  .guarantee-cta svg {
    transition: transform 0.25s ease;
  }

  .guarantee-cta:hover svg {
    transform: translateX(4px);
  }

/* ============================================
   Social Proof Section Styles
   (Moved from sections/social-proof.liquid)
   ============================================ */
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #111827 100%);
    padding: 3rem 1rem;
    overflow: hidden;
  }

  .social-proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 102, 192, 0.1) 0%, transparent 30%, transparent 70%, rgba(26, 102, 192, 0.1) 100%);
    pointer-events: none;
  }

  .social-proof-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  /* Mobile Marquee */
  .social-proof-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .social-proof-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
    width: max-content;
  }

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

  .proof-stat {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
  }

  .proof-stat-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
  }

  /* Desktop Layout */
  .social-proof-container {
    display: none;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .social-proof-marquee {
      display: none;
    }
    
    .social-proof-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3rem;
    }
  }

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

  .proof-number {
    display: block;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
  }

  .proof-label {
    display: block;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
  }

  .proof-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
  }

/* ============================================
   Main Product Prescription Lens Styles
   (Moved from sections/main-product-prescription-lens.liquid)
   ============================================ */
     CSS Variables - Light Theme
     ============================================ */
  :root {
    --accent: #1A66C0;
    --accent-light: #E8F1FA;
    --accent-hover: #145098;
    --ink-black: #111827;
    --pencil-dark: #374151;
    --pencil-gray: #6B7280;
    --pencil-light: #9CA3AF;
    --paper-white: #FAFAFA;
    --paper-cream: #F5F5F4;
    --success-green: #059669;
    --success-green-bg: #D1FAE5;
    --star-gold: #F59E0B;
  }

  /* ============================================
     Base PDP Styles - Light Theme
     ============================================ */
  .pdp-light {
    position: relative;
    background: var(--paper-white);
    min-height: 100vh;
  }

  /* ============================================
     SECTION 01: BUY BOX - Light Theme
     ============================================ */
  .pdp-buybox-light {
    position: relative;
    width: 100%;
    padding: 3rem 1.5rem;
    background-color: var(--paper-white);
    overflow: hidden;
    box-sizing: border-box;
  }

  @media (min-width: 1024px) {
    .pdp-buybox-light {
      padding: 3rem 2rem 5rem;
    }
  }

  .pdp-buybox-light-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .pdp-buybox-light-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 102, 192, 0.06), transparent),
      radial-gradient(ellipse 60% 40% at 80% 60%, rgba(233, 123, 44, 0.04), transparent),
      linear-gradient(180deg, #ffffff 0%, var(--paper-white) 100%);
  }

  .pdp-buybox-light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
  }

  .pdp-buybox-light-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(26, 102, 192, 0.06);
    top: -200px;
    left: -150px;
  }

  .pdp-buybox-light-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(233, 123, 44, 0.04);
    bottom: -100px;
    right: -100px;
  }

  .pdp-buybox-light-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  }

  /* Buybox Grid */
  .pdp-buybox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  @media (min-width: 1024px) {
    .pdp-buybox-grid {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  /* Gallery */
  .pdp-gallery {
    position: relative;
  }

  @media (min-width: 1024px) {
    .pdp-gallery {
      position: sticky;
      top: calc(var(--header-height, 80px) + 2rem);
    }
  }

  .pdp-gallery-main {
    position: relative;
    margin-bottom: 1rem;
  }

  .pdp-gallery-frame {
    position: relative;
    aspect-ratio: 1;
    background: white;
    border: 2px solid rgba(26, 102, 192, 0.12);
    border-radius: 8px;
    overflow: hidden;
  }

  .pdp-gallery-images-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .pdp-gallery-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pdp-gallery-image-active {
    opacity: 1;
    position: relative;
  }

  /* Gallery Arrows */
  .pdp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid rgba(26, 102, 192, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .pdp-gallery-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
  }

  .pdp-gallery-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--pencil-dark);
    transition: color 0.2s ease;
  }

  .pdp-gallery-arrow:hover svg {
    color: white;
  }

  .pdp-gallery-arrow-prev { left: 1rem; }
  .pdp-gallery-arrow-next { right: 1rem; }

  @media (max-width: 768px) {
    .pdp-gallery-arrow { display: none; }
  }

  /* Thumbnails */
  .pdp-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
  }

  .pdp-thumb {
    position: relative;
    flex: 1;
    aspect-ratio: 1;
    padding: 0;
    background: white;
    border: 2px solid rgba(26, 102, 192, 0.1);
    border-radius: 6px;
    cursor: pointer;
    overflow: visible;
    transition: all 0.2s ease;
  }

  .pdp-thumb:hover {
    border-color: rgba(26, 102, 192, 0.25);
  }

  .pdp-thumb-active {
    border-color: var(--accent);
  }

  .pdp-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  /* Conversion Column */
  .pdp-conversion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Title Block */
  .pdp-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .pdp-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(26, 102, 192, 0.2);
    width: fit-content;
    letter-spacing: 0.1em;
  }

  .pdp-badge-icon {
    stroke: var(--accent);
  }

  .pdp-product-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--ink-black);
    line-height: 1.1;
    margin: 0;
  }

  @media (min-width: 1024px) {
    .pdp-product-title {
      font-size: 3.5rem;
    }
  }

  /* Rating Block */
  .pdp-rating-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .pdp-stars {
    color: var(--star-gold);
    font-size: 1.25rem;
    letter-spacing: -1px;
  }

  .pdp-rating-score {
    font-weight: 700;
    color: var(--ink-black);
    font-size: 1.25rem;
  }

  .pdp-rating-count {
    font-size: 1rem;
    color: var(--pencil-gray);
  }

  .pdp-rating-link {
    font-size: 0.9375rem;
    color: var(--pencil-gray);
    text-decoration: none;
    font-style: italic;
  }

  .pdp-rating-link:hover {
    color: var(--accent);
  }

  /* Price Block */
  .pdp-price-block {
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 102, 192, 0.1);
    border-bottom: 1px solid rgba(26, 102, 192, 0.1);
  }

  .pdp-price-label {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pencil-gray);
    letter-spacing: 0.15em;
    margin-bottom: 0.375rem;
  }

  .pdp-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .pdp-price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink-black);
  }

  .pdp-price-compare {
    font-size: 1.25rem;
    color: var(--pencil-light);
    text-decoration: line-through;
  }

  .pdp-price-save {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--success-green);
    background: var(--success-green-bg);
    padding: 0.375rem 0.625rem;
    letter-spacing: 0.05em;
  }

  /* Specs Table */
  .pdp-specs-table {
    background: white;
    border: 1px solid rgba(26, 102, 192, 0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26, 102, 192, 0.04);
  }

  .pdp-specs-tabs {
    display: flex;
    border-bottom: 1px solid rgba(26, 102, 192, 0.1);
  }

  .pdp-specs-tab {
    flex: 1;
    padding: 1rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pencil-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
  }

  .pdp-specs-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--accent);
    transition: left 0.3s ease, right 0.3s ease;
  }

  .pdp-specs-tab:hover { color: var(--accent); }
  .pdp-specs-tab-active { color: var(--accent); }
  .pdp-specs-tab-active::after { left: 0; right: 0; }

  .pdp-specs-content { padding: 1.25rem; }

  .pdp-spec-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(26, 102, 192, 0.06);
  }

  .pdp-spec-row:last-child { border-bottom: none; padding-bottom: 0; }
  .pdp-spec-row:first-child { padding-top: 0; }

  .pdp-spec-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--success-green);
    margin-top: 2px;
  }

  .pdp-spec-check svg { width: 100%; height: 100%; }

  .pdp-spec-name {
    font-size: 1.125rem;
    color: var(--ink-black);
    line-height: 1.5;
  }

  .pdp-spec-name strong { font-weight: 700; }

  /* Headset Variant Options */
  .pdp-variant-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .pdp-option-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .pdp-option-label {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-black);
    letter-spacing: 0.1em;
  }

  .pdp-headset-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .pdp-headset-btn {
    padding: 1rem 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pencil-dark);
    background: white;
    border: 2px solid rgba(26, 102, 192, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
  }

  .pdp-headset-btn:hover:not(.pdp-option-selected) {
    background: var(--paper-cream);
    border-color: rgba(26, 102, 192, 0.3);
  }

  .pdp-option-selected {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
  }

  /* ============================================
     PRESCRIPTION FORM STYLES
     ============================================ */
  .rx-form-container {
    background: white;
    border: 1px solid rgba(26, 102, 192, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(26, 102, 192, 0.06);
  }

  .rx-form-header {
    margin-bottom: 1.5rem;
  }

  .rx-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-black);
    margin: 0 0 1rem 0;
  }

  .rx-form-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(26, 102, 192, 0.1));
  }

  /* Eye Section */
  .rx-eye-section {
    margin-bottom: 1rem;
  }

  .rx-eye-section[data-eye="left"] {
    margin-bottom: 0;
  }

  .rx-eye-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink-black);
    margin: 0 0 1rem 0;
  }

  .rx-eye-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
  }

  @media (max-width: 480px) {
    .rx-eye-fields {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  /* Field */
  .rx-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .rx-field-label {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pencil-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .rx-required {
    color: #EF4444;
  }

  .rx-select-wrapper {
    position: relative;
  }

  .rx-select {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--ink-black);
    background: white;
    border: 2px solid rgba(26, 102, 192, 0.15);
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;
  }

  .rx-select:hover {
    border-color: rgba(26, 102, 192, 0.3);
  }

  .rx-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 102, 192, 0.1);
  }

  .rx-select.rx-select-filled {
    border-color: var(--accent);
    background: var(--accent-light);
  }

  .rx-select-arrow {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--pencil-gray);
    pointer-events: none;
    transition: color 0.2s ease;
  }

  .rx-select:focus + .rx-select-arrow {
    color: var(--accent);
  }

  .rx-select-arrow svg {
    width: 100%;
    height: 100%;
  }

  /* Same Eyes Checkbox */
  .rx-same-eyes {
    padding: 1rem 0;
  }

  .rx-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
  }

  .rx-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .rx-checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(26, 102, 192, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .rx-checkbox-custom svg {
    width: 14px;
    height: 14px;
    color: white;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
  }

  .rx-checkbox:checked + .rx-checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
  }

  .rx-checkbox:checked + .rx-checkbox-custom svg {
    opacity: 1;
    transform: scale(1);
  }

  .rx-checkbox:focus + .rx-checkbox-custom {
    box-shadow: 0 0 0 3px rgba(26, 102, 192, 0.1);
  }

  .rx-checkbox-label {
    font-size: 1rem;
    color: var(--pencil-dark);
    font-weight: 500;
  }

  /* Left eye disabled state when same-eyes is checked */
  .rx-eye-section[data-eye="left"].rx-disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  /* CTA Button */
  .pdp-cta-container {
    margin-top: 0.5rem;
  }

  .pdp-cta-btn {
    width: 100%;
    padding: 1.5rem 2.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #145098 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
  }

  @media (min-width: 768px) {
    .pdp-cta-btn {
      padding: 1.75rem 3rem;
      font-size: 1.5rem;
    }
  }

  .pdp-cta-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 102, 192, 0.35);
  }

  .pdp-cta-btn:disabled,
  .pdp-cta-btn-disabled {
    background: var(--pencil-gray);
    cursor: not-allowed;
  }

  .pdp-cta-btn-text {
    position: relative;
    z-index: 1;
  }

  .pdp-cta-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: pdpBtnShine 3s infinite;
  }

  @keyframes pdpBtnShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
  }

  .pdp-cta-btn:disabled .pdp-cta-btn-shine,
  .pdp-cta-btn-disabled .pdp-cta-btn-shine {
    animation: none;
    display: none;
  }

  /* Trust Badges */
  .pdp-trust-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .pdp-trust-item-inline {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    color: var(--pencil-dark);
  }

  .pdp-trust-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
  }

  .pdp-trust-separator {
    color: var(--pencil-light);
  }

  /* ============================================
     FAQ Section
     ============================================ */
  .pdp-faq-section {
    padding: 4rem 1.5rem;
    background: white;
    text-align: center;
    position: relative;
  }

  .pdp-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 102, 192, 0.15), transparent);
  }

  .pdp-faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .pdp-faq-header {
    margin-bottom: 2.5rem;
  }

  .pdp-section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(26, 102, 192, 0.2);
    margin-bottom: 1.25rem;
  }

  .pdp-section-eyebrow svg { stroke: var(--accent); }

  .pdp-faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink-black);
    margin: 0;
  }

  @media (min-width: 768px) {
    .pdp-faq-title { font-size: 3rem; }
  }

  .pdp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
  }

  .pdp-faq-item {
    background: var(--paper-white);
    border: 1px solid rgba(26, 102, 192, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .pdp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink-black);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
  }

  .pdp-faq-question:hover { background: rgba(26, 102, 192, 0.03); }

  .pdp-faq-ref {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
  }

  .pdp-faq-text { flex: 1; }

  .pdp-faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .pdp-faq-item.is-open .pdp-faq-toggle { transform: rotate(45deg); }

  .pdp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .pdp-faq-item.is-open .pdp-faq-answer { max-height: 400px; }

  .pdp-faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    padding-left: 4rem;
    font-size: 1.125rem;
    color: var(--pencil-dark);
    line-height: 1.7;
  }

  /* Hidden utility */
  .hidden { display: none !important; }

  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .pdp-cta-btn-shine { animation: none; }
  }

/* ============================================
   Main Product Comfort Strap Battery Styles
   (Moved from sections/main-product-comfort-strap-battery.liquid)
   ============================================ */
     CSS Variables
     ============================================ */
  :root {
    --accent: #1A66C0;
    --accent-light: #E8F1FA;
    --accent-orange: #E97B2C;
    --ink-black: #111827;
    --pencil-dark: #374151;
    --pencil-gray: #6B7280;
    --pencil-light: #9CA3AF;
    --paper-white: #FAFAFA;
    --paper-cream: #F5F5F4;
    --blueprint-dark: rgba(26, 102, 192, 0.2);
    --blueprint-line: rgba(26, 102, 192, 0.1);
    --navy-deep: #0f172a;
    --navy-medium: #1e293b;
  }

  /* ============================================
     Base PDP Styles
     ============================================ */
  .manual-pdp {
    position: relative;
    background: var(--paper-white);
    min-height: 100vh;
  }

  .manual-pdp-animated {
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .manual-grid-bg {
    display: none;
  }

  .manual-grid-bg-visible {
    display: block;
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .manual-section {
    position: relative;
    z-index: 1;
  }

  /* ============================================
     SECTION 01: BUY BOX - Dark Theme (Hydrogen Style)
     ============================================ */
  .manual-buybox-dark {
    position: relative;
    width: 100%;
    padding: 3rem 1.5rem;
    background-color: #0a0a0f;
    background-image: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  @media (max-width: 767px) {
    .manual-buybox-dark {
      padding-top: 1.5rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .manual-buybox-dark {
      padding: 3rem 2rem 5rem;
    }
  }

  .manual-buybox-dark-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    will-change: contents;
    transform: translateZ(0);
  }

  .manual-buybox-dark-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(26, 102, 192, 0.15), transparent),
      radial-gradient(ellipse 60% 40% at 80% 60%, rgba(233, 123, 44, 0.08), transparent),
      linear-gradient(180deg, #0a0a0f 0%, #111827 100%);
  }

  .manual-buybox-dark-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    transform: translateZ(0);
  }

  @media (max-width: 767px) {
    .manual-buybox-dark-orb {
      filter: blur(50px);
    }
  }

  .manual-buybox-dark-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(26, 102, 192, 0.1);
    top: -150px;
    left: -100px;
  }

  .manual-buybox-dark-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(233, 123, 44, 0.08);
    bottom: -80px;
    right: -50px;
  }

  .manual-buybox-dark-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: 
      radial-gradient(ellipse 120% 80% at 50% 0%, black 0%, transparent 60%),
      radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: 
      radial-gradient(ellipse 120% 80% at 50% 0%, black 0%, transparent 60%),
      radial-gradient(ellipse at center, black 0%, transparent 70%);
  }

  /* Mobile Hero */
  .manual-mobile-hero {
    display: block;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
  }

  @media (min-width: 1024px) {
    .manual-mobile-hero {
      display: none;
    }
  }

  .manual-mobile-hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .manual-mobile-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .manual-mobile-hero-stars {
    color: #F59E0B;
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .manual-mobile-hero-badge {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
  }

  .manual-mobile-hero-headline {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin: 0 0 2rem;
  }

  .manual-mobile-hero-headline span {
    display: block;
  }

  .manual-mobile-hero-highlight {
    font-style: italic;
    background: linear-gradient(90deg, #93c5fd 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Promo Box - Hydrogen Style */
  .manual-mobile-hero-promo-box {
    display: flex;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .manual-mobile-hero-offer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }

  .manual-mobile-hero-discount {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: #60a5fa;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }

  .manual-mobile-hero-offer-text {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
  }

  .manual-mobile-hero-countdown {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  /* Countdown Timer */
  .manual-countdown {
    display: flex;
    gap: 1.5rem;
  }

  .manual-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 0;
    border: none;
  }

  .manual-countdown-value {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.375rem;
  }

  .manual-countdown-label {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Buybox Grid */
  .manual-buybox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  @media (min-width: 1024px) {
    .manual-buybox-grid {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  /* Gallery */
  .manual-gallery {
    position: relative;
  }

  @media (min-width: 1024px) {
    .manual-gallery {
      position: sticky;
      top: calc(var(--header-height, 80px) + 2rem);
    }
  }

  .manual-gallery-main {
    position: relative;
    margin-bottom: 1rem;
  }

  .manual-diagram-frame {
    position: relative;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
  }

  .manual-gallery-images-stack {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .manual-gallery-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .manual-gallery-image-active {
    opacity: 1;
    position: relative;
  }

  /* Gallery Arrows - Dark Theme */
  .manual-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
  }

  .manual-gallery-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
  }

  .manual-gallery-arrow svg {
    width: 20px;
    height: 20px;
    color: white;
  }

  .manual-gallery-arrow-prev {
    left: 1rem;
  }

  .manual-gallery-arrow-next {
    right: 1rem;
  }

  @media (max-width: 768px) {
    .manual-gallery-arrow {
      display: none;
    }
  }

  /* Thumbnails - Dark Theme */
  .manual-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
  }

  .manual-thumb {
    position: relative;
    flex: 1;
    aspect-ratio: 1;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    overflow: visible;
    transition: all 0.2s ease;
  }

  @media (hover: hover) and (pointer: fine) {
    .manual-thumb:hover {
      border-color: rgba(255, 255, 255, 0.25);
    }
  }

  .manual-thumb-active {
    border-color: transparent;
  }

  /* Corner bracket decorations - only show on active */
  .manual-thumb::before,
  .manual-thumb::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
  }

  .manual-thumb::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
  }

  .manual-thumb::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
  }

  .manual-thumb-active::before,
  .manual-thumb-active::after {
    opacity: 1;
  }

  .thumb-corner-border {
    display: none;
  }

  .manual-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  /* Conversion Column */
  .manual-conversion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Title Block */
  .manual-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .manual-product-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.15);
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    width: fit-content;
    letter-spacing: 0.1em;
  }

  .manual-battery-icon {
    fill: #60a5fa;
  }

  .manual-product-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin: 0;
  }

  @media (min-width: 1024px) {
    .manual-product-title {
      font-size: 3.5rem;
    }
  }

  /* Rating Block */
  .manual-rating-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .manual-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .manual-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    letter-spacing: -1px;
  }

  .manual-rating-score {
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
  }

  .manual-rating-count {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .manual-rating-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    transition: color 0.2s ease;
  }

  .manual-rating-link:hover {
    color: #60a5fa;
  }

  .manual-rating-quote {
    font-style: italic;
    color: #60a5fa;
  }

  /* Price Block */
  .manual-price-block {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .manual-price-label {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    margin-bottom: 0.375rem;
  }

  .manual-price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .manual-price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
  }

  .manual-price-compare {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
  }

  .manual-price-save {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    padding: 0.375rem 0.625rem;
    letter-spacing: 0.05em;
  }

  /* Specs Table */
  .manual-specs-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }

  .manual-specs-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .manual-specs-tab {
    flex: 1;
    padding: 1rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
  }

  .manual-specs-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--accent);
    transition: left 0.3s ease, right 0.3s ease;
  }

  .manual-specs-tab:hover {
    color: rgba(255, 255, 255, 0.8);
  }

  .manual-specs-tab-active {
    color: #60a5fa;
  }

  .manual-specs-tab-active::after {
    left: 0;
    right: 0;
  }

  .manual-specs-content {
    padding: 1.25rem;
  }

  .manual-spec-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .manual-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .manual-spec-row:first-child {
    padding-top: 0;
  }

  .manual-spec-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #22c55e;
    margin-top: 2px;
  }

  .manual-spec-check svg {
    width: 100%;
    height: 100%;
  }

  .manual-spec-name {
    font-size: 1.125rem;
    color: white;
    line-height: 1.5;
  }

  /* Variant Options */
  .manual-variant-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .manual-option-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .manual-option-label {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
  }

  .manual-option-label-value {
    color: #60a5fa;
  }

  .manual-option-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .manual-option-btn {
    padding: 1.25rem 1rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .manual-option-btn:hover:not(.manual-option-selected) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .manual-option-selected {
    background: rgba(96, 165, 250, 0.15);
    border-color: #60a5fa;
    color: #60a5fa;
  }

  /* CTA Button */
  .manual-cta-container {
    margin-top: 0.5rem;
  }

  .manual-cta-btn {
    width: 100%;
    padding: 1.5rem 2.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
    background: linear-gradient(135deg, var(--accent) 0%, #145098 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
  }

  @media (min-width: 768px) {
    .manual-cta-btn {
      padding: 1.75rem 3rem;
      font-size: 1.75rem;
    }
  }

  .manual-cta-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 102, 192, 0.45);
  }

  .manual-cta-btn:disabled {
    background: var(--pencil-gray);
    cursor: not-allowed;
  }

  .manual-cta-btn-text {
    position: relative;
    z-index: 1;
  }

  .manual-cta-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: btnShine 3s infinite;
  }

  @keyframes btnShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
  }

  .manual-cta-btn:disabled .manual-cta-btn-shine {
    animation: none;
    display: none;
  }

  /* Trust Badges */
  .manual-trust-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .manual-trust-item-inline {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .manual-trust-icon {
    width: 16px;
    height: 16px;
    color: #60a5fa;
  }

  .manual-trust-separator {
    color: rgba(255, 255, 255, 0.3);
  }


  /* ============================================
     SECTION 02: VIDEO TESTIMONIALS
     ============================================ */
  .manual-video-section {
    padding: 4rem 1.5rem;
    background: var(--paper-cream);
    text-align: center;
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: white;
    padding: 0.5rem 1rem;
    border: 1px solid var(--blueprint-dark);
    margin-bottom: 1.25rem;
  }

  .section-eyebrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
  }

  .manual-video-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink-black);
    margin: 0 0 0.5rem;
  }

  @media (min-width: 768px) {
    .manual-video-headline {
      font-size: 3rem;
    }
  }

  .manual-video-subheadline {
    font-size: 1.5rem;
    color: var(--pencil-gray);
    margin: 0 0 2.5rem;
  }

  .manual-video-grid-v2 {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .manual-video-grid-v2 .pdp-video-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }

  @media (min-width: 768px) {
    .manual-video-grid-v2 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      overflow-x: visible;
      padding-bottom: 0;
    }

    .manual-video-grid-v2 .pdp-video-card {
      flex: none;
      max-height: 520px;
    }
  }

  /* PDP Video Card */
  .pdp-video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    background: var(--paper-cream);
    border: 2px solid var(--blueprint-dark);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .pdp-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 102, 192, 0.15);
    border-color: var(--accent);
  }

  .pdp-video-card-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pdp-video-card:hover .pdp-video-card-corner {
    opacity: 1;
  }

  .pdp-video-card-corner-tl {
    top: 6px;
    left: 6px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
  }

  .pdp-video-card-corner-br {
    bottom: 6px;
    right: 6px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
  }

  .pdp-video-card-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .pdp-video-card:hover .pdp-video-card-poster {
    transform: scale(1.03);
  }

  .pdp-video-card-poster.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .pdp-video-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.35) 100%);
    transition: opacity 0.3s ease;
  }

  .pdp-video-card-overlay.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .pdp-video-card-play {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
  }

  .pdp-video-card-play-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  }

  .pdp-video-card-play svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin-left: 2px;
  }

  .pdp-video-card:hover .pdp-video-card-play {
    transform: scale(1.1);
  }

  .pdp-video-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .pdp-video-card-video.visible {
    z-index: 6;
    opacity: 1;
  }

  .pdp-video-card.is-playing {
    transform: none;
    border-color: var(--accent);
  }


  /* ============================================
     SECTION 03: KEY FEATURES / SOLUTION
     ============================================ */
  .manual-solution {
    padding: 4rem 1.5rem;
    background: var(--navy-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .manual-solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 20% 30%, rgba(26, 102, 192, 0.1), transparent 50%),
      radial-gradient(ellipse 45% 35% at 80% 70%, rgba(233, 123, 44, 0.08), transparent 50%);
    pointer-events: none;
  }

  .manual-solution-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
  }

  .section-eyebrow-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(26, 102, 192, 0.15);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    margin-bottom: 1.25rem;
  }

  .section-eyebrow-dark svg {
    width: 14px;
    height: 14px;
    stroke: #60a5fa;
    stroke-width: 2;
  }

  .manual-installation-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .manual-installation-headline {
      font-size: 3rem;
    }
  }

  .manual-solution-desc {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
  }

  .manual-benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .manual-benefits-grid-2x2 {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  .manual-benefit-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
  }

  .manual-benefit-card-v2:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(26, 102, 192, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26, 102, 192, 0.15);
  }

  .manual-benefit-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
  }

  .manual-benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .manual-benefit-card-v2:hover .manual-benefit-image img {
    transform: scale(1.03);
  }

  .manual-benefit-content {
    padding: 1.5rem;
  }

  .manual-benefit-header-v2 {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .manual-benefit-number-v2 {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #60a5fa;
    flex-shrink: 0;
  }

  .manual-benefit-title-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
  }

  .manual-benefit-desc-v2 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    padding-left: 2.25rem;
  }


  /* ============================================
     SECTION 04: COMPARISON TABLE
     ============================================ */
  .manual-comparison {
    padding: 4rem 1.5rem;
    background: var(--paper-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .manual-comparison::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 20% 30%, rgba(26, 102, 192, 0.05), transparent 50%),
      radial-gradient(ellipse 45% 35% at 80% 70%, rgba(233, 123, 44, 0.04), transparent 50%);
    pointer-events: none;
  }

  .manual-comparison-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink-black);
    margin: 0 0 0.75rem;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .manual-comparison-headline {
      font-size: 3rem;
    }
  }

  .manual-section-subtext {
    font-size: 1.5rem;
    color: var(--pencil-gray);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }

  .manual-table-container {
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .manual-comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--blueprint-dark);
    font-size: 1rem;
    min-width: 600px;
    background: white;
  }

  .manual-comparison-table thead {
    background: var(--paper-cream);
  }

  .manual-comparison-table th {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 0.75rem;
    text-align: center;
    border-bottom: 2px solid var(--blueprint-dark);
  }

  .manual-th-feature {
    text-align: left !important;
  }

  .manual-th-nordlabs {
    background: var(--accent);
    color: white;
  }

  .manual-th-competitor {
    color: var(--pencil-gray);
  }

  .manual-comparison-table td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid var(--blueprint-line);
    text-align: center;
  }

  .manual-comparison-table tr:nth-child(odd) {
    background: #ffffff;
  }

  .manual-comparison-table tr:nth-child(even) {
    background: var(--paper-cream);
  }

  .manual-td-feature {
    font-weight: 600;
    color: var(--ink-black);
    text-align: left !important;
  }

  .manual-td-nordlabs {
    background: var(--accent-light) !important;
    font-weight: 600;
    color: var(--accent);
  }

  .manual-td-bad {
    color: #DC2626;
  }

  .manual-td-ok {
    color: var(--pencil-gray);
  }

  .manual-td-good {
    color: #059669;
  }

  .manual-td-na {
    color: var(--pencil-light);
  }

  .manual-td-competitor {
    color: var(--pencil-gray);
  }


  /* ============================================
     SECTION 05: INSTALLATION VIDEO (Dark)
     ============================================ */
  .manual-installation-section {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .manual-installation-dark {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
  }

  .manual-installation-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 50% 0%, rgba(26, 102, 192, 0.1), transparent 60%);
    pointer-events: none;
  }

  .manual-installation-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .manual-installation-header {
    margin-bottom: 2.5rem;
  }

  .manual-installation-subtext {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  .manual-installation-video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }

  .manual-installation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .manual-installation-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .manual-installation-play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
  }

  .manual-installation-play-overlay.hidden {
    display: none;
  }

  .manual-installation-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .manual-installation-play-overlay:hover .manual-installation-play-btn {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
  }

  .manual-installation-play-btn svg {
    width: 28px;
    height: 28px;
    color: white;
    margin-left: 4px;
  }


  /* ============================================
     SECTION 06: USER TESTIMONIALS (Light)
     ============================================ */
  .manual-testimonials-section {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .manual-testimonials-light {
    background: var(--paper-white);
  }

  .manual-testimonials-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink-black);
    margin: 0 0 0.75rem;
  }

  @media (min-width: 768px) {
    .manual-testimonials-headline {
      font-size: 3rem;
    }
  }

  .manual-testimonial-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .manual-filter-btn {
    padding: 0.625rem 1rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pencil-gray);
    background: white;
    border: 1px solid var(--blueprint-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .manual-filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .manual-filter-active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
  }

  .manual-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .manual-testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .manual-testimonial-card {
    background: white;
    border: 2px solid var(--blueprint-dark);
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
  }

  .manual-testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 102, 192, 0.1);
  }

  .manual-testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
  }

  .manual-testimonial-quote {
    font-size: 1.25rem;
    color: var(--pencil-dark);
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 1rem;
  }

  .manual-testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--blueprint-line);
  }

  .manual-author-name {
    font-weight: 600;
    color: var(--ink-black);
    font-size: 1rem;
  }

  .manual-author-badge {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.625rem;
    font-weight: 600;
    color: #059669;
    letter-spacing: 0.05em;
  }


  /* ============================================
     SECTION 07: FAQ (Dark)
     ============================================ */
  .manual-faq {
    padding: 4rem 1.5rem;
    background: var(--navy-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .manual-faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 40% at 50% 100%, rgba(26, 102, 192, 0.1), transparent 60%);
    pointer-events: none;
  }

  .manual-faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 2.5rem;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .manual-faq-title {
      font-size: 3rem;
    }
  }

  .manual-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
  }

  .manual-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
  }

  .manual-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
  }

  .manual-faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .manual-faq-ref {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #60a5fa;
    flex-shrink: 0;
  }

  .manual-faq-text {
    flex: 1;
  }

  .manual-faq-toggle {
    font-size: 1.5rem;
    color: #60a5fa;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .manual-faq-item.is-open .manual-faq-toggle {
    transform: rotate(45deg);
  }

  .manual-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .manual-faq-item.is-open .manual-faq-answer {
    max-height: 400px;
  }

  .manual-faq-answer p {
    padding: 1rem;
    padding-left: 4rem;
    margin: 0;
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
  }




  /* ============================================
     REDUCED MOTION
     ============================================ */
  @media (prefers-reduced-motion: reduce) {
    .manual-cta-btn-shine,
    .manual-stars-animated {
      animation: none;
    }

    .manual-benefit-card-v2:hover,
    .manual-testimonial-card:hover,
    .pdp-video-card:hover {
      transform: none;
    }
  }

/* ============================================
   Main Collection Styles
   (Moved from sections/main-collection.liquid)
   ============================================ */

.collection-section {
  position: relative;
  background: var(--paper-white, #FAFAFA);
  padding: 3rem 0 6rem;
  min-height: 60vh;
}

.collection-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.collection-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
}

.collection-header-content {
  flex: 1;
  min-width: 200px;
}

.collection-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent, #1A66C0);
  background: #E8F1FA;
  border: 1px solid rgba(26, 102, 192, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.collection-eyebrow svg {
  stroke: var(--accent, #1A66C0);
}

.collection-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--ink-black, #111827);
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .collection-title {
    font-size: 2.8rem;
  }
}

.collection-description {
  font-size: 1.6rem;
  color: var(--pencil-dark, #374151);
  max-width: 600px;
  margin-bottom: 0.5rem;
}

.collection-count {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  color: var(--pencil-gray, #6B7280);
}

/* Sort */
.collection-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.collection-sort-label {
  font-size: 1.3rem;
  color: var(--pencil-gray, #6B7280);
}

.collection-sort-select-wrapper {
  position: relative;
}

.collection-sort-select {
  appearance: none;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink-black, #111827);
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.2);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.collection-sort-select:hover,
.collection-sort-select:focus {
  border-color: var(--accent, #1A66C0);
  outline: none;
}

.collection-sort-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--pencil-gray, #6B7280);
}

/* Products Grid */
.collection-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1023px) {
  .collection-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .collection-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Pagination */
.collection-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.75rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pencil-dark, #374151);
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.15);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-link:hover {
  border-color: var(--accent, #1A66C0);
  color: var(--accent, #1A66C0);
}

.pagination-current {
  background: var(--accent, #1A66C0);
  border-color: var(--accent, #1A66C0);
  color: white;
}

.pagination-ellipsis {
  border: none;
  background: transparent;
}

.pagination-prev svg,
.pagination-next svg {
  stroke: currentColor;
}

/* Empty State */
.collection-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.collection-empty svg {
  color: var(--pencil-light, #9CA3AF);
  margin-bottom: 1rem;
}

.collection-empty p {
  font-size: 1.6rem;
  color: var(--pencil-gray, #6B7280);
  margin-bottom: 1.5rem;
}

.collection-empty-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent, #1A66C0);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.collection-empty-link:hover {
  background: #145098;
}

/* ============================================
   Featured Collection Styles
   (Moved from sections/featured-collection.liquid)
   ============================================ */

.best-sellers {
  padding: 6rem 0;
  background: rgb(var(--color-background, 250, 250, 250));
  position: relative;
  overflow: hidden;
}

.best-sellers-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.best-sellers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.best-sellers-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* CTA Button - Exact copy from Comfort Strap */
.best-sellers-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1.25rem 2rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #145098 100%);
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .best-sellers-cta-btn {
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
  }
}

.best-sellers-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  animation: btnShineFC 3s infinite;
}

@keyframes btnShineFC {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.best-sellers-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 102, 192, 0.45);
}

.best-sellers-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.best-sellers-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   Main Blog Styles
   (Moved from sections/main-blog.liquid)
   ============================================ */

.blog-section {
  position: relative;
  background: var(--paper-white, #FAFAFA);
  padding: 3rem 0 6rem;
  min-height: 60vh;
}

.blog-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.blog-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.blog-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
}

.blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent, #1A66C0);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.blog-eyebrow svg {
  stroke: var(--accent, #1A66C0);
}

.blog-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--ink-black, #111827);
  margin: 0;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2.8rem;
  }
}

.blog-description {
  font-size: 1.6rem;
  color: var(--pencil-dark, #374151);
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Articles Grid */
.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1023px) {
  .blog-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Article Card */
.article-card {
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.1);
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: rgba(26, 102, 192, 0.3);
  box-shadow: 0 8px 32px rgba(26, 102, 192, 0.1);
  transform: translateY(-4px);
}

.article-card-image-wrapper {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-card-image {
  transform: scale(1.05);
}

.article-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-card:hover .article-card-overlay {
  opacity: 1;
}

.article-card-read {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  padding: 0.75rem 1.5rem;
  background: var(--accent, #1A66C0);
}

.article-card-content {
  padding: 1.5rem;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  color: var(--pencil-gray, #6B7280);
  margin-bottom: 0.75rem;
}

.article-card-tag {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: var(--accent-light, #E8F1FA);
  color: var(--accent, #1A66C0);
  text-transform: uppercase;
}

.article-card-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink-black, #111827);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.article-card-title a {
  color: inherit;
  text-decoration: none;
}

.article-card-title a:hover {
  color: var(--accent, #1A66C0);
}

.article-card-excerpt {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--pencil-dark, #374151);
  margin: 0 0 1rem 0;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent, #1A66C0);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.article-card-link:hover {
  gap: 0.625rem;
}

/* Pagination */
.blog-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  font-size: 1.6rem;
  color: var(--pencil-gray, #6B7280);
}

/* ============================================
   Main Article Styles
   (Moved from sections/main-article.liquid)
   ============================================ */

.article-section {
  position: relative;
  background: var(--paper-white, #FAFAFA);
  padding: 2rem 0 6rem;
}

.article-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.article-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.article-header {
  margin-bottom: 2rem;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1.3rem;
  color: var(--accent, #1A66C0);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: gap 0.2s ease;
}

.article-back-link:hover {
  gap: 0.625rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  color: var(--pencil-gray, #6B7280);
  margin-bottom: 0.75rem;
}

.article-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--ink-black, #111827);
  line-height: 1.1;
  margin: 0 0 1rem 0;
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2.8rem;
  }
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-tag {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  background: var(--accent-light, #E8F1FA);
  color: var(--accent, #1A66C0);
  text-transform: uppercase;
}

/* Featured Image */
.article-featured-image {
  margin: 2rem 0;
  border: 2px solid rgba(26, 102, 192, 0.1);
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.article-content {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--pencil-dark, #374151);
}

.article-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink-black, #111827);
  margin: 2.5rem 0 1rem;
}

.article-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-black, #111827);
  margin: 2rem 0 0.75rem;
}

.article-content p {
  margin: 0 0 1.5rem;
}

.article-content a {
  color: var(--accent, #1A66C0);
  text-decoration: underline;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: rgba(26, 102, 192, 0.03);
  border-left: 4px solid var(--accent, #1A66C0);
  font-style: italic;
}

/* Footer */
.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 102, 192, 0.1);
}

/* Share */
.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.article-share-label {
  font-size: 1.3rem;
  color: var(--pencil-gray, #6B7280);
}

.article-share-buttons {
  display: flex;
  gap: 0.5rem;
}

.article-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.15);
  color: var(--pencil-dark, #374151);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-share-btn:hover {
  background: var(--accent, #1A66C0);
  border-color: var(--accent, #1A66C0);
  color: white;
}

/* Navigation */
.article-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.article-nav-placeholder {
  flex: 1;
}

.article-nav-link {
  flex: 1;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.1);
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-nav-link:hover {
  border-color: var(--accent, #1A66C0);
}

.article-nav-prev {
  text-align: left;
}

.article-nav-next {
  text-align: right;
}

.article-nav-label {
  display: block;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent, #1A66C0);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.article-nav-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-black, #111827);
}

@media (max-width: 640px) {
  .article-navigation {
    flex-direction: column;
  }
}

/* ============================================
   Blog Preview Styles
   (Moved from sections/blog-preview.liquid)
   ============================================ */
  .blog-preview-section {
    background: #FAFAFA;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
  }

  .blog-preview-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
  }

  .blog-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Header */
  .blog-preview-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .blog-preview-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent, #1A66C0);
    background: #E8F1FA;
    border: 1px solid rgba(26, 102, 192, 0.2);
    margin-bottom: 1.25rem;
  }

  .blog-preview-eyebrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent, #1A66C0);
  }

  .blog-preview-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .blog-preview-title {
      font-size: 3rem;
    }
  }

  .blog-preview-subtitle {
    font-size: 1.5rem;
    color: #6B7280;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  /* Blog Grid */
  .blog-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 1024px) {
    .blog-preview-grid {
      grid-template-columns: 1.5fr 1fr;
      gap: 2rem;
      align-items: stretch;
    }
  }

  /* Featured Card */
  .blog-card-featured {
    display: block;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .blog-card-featured .blog-card-image-wrapper {
    position: absolute;
    inset: 0;
  }

  .blog-card-featured .blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-card-featured:hover .blog-card-image {
    transform: scale(1.05);
  }

  .blog-card-featured .blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  }

  .blog-card-featured .blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
  }

  .blog-card-tag {
    display: inline-block;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: var(--accent, #1A66C0);
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }

  .blog-card-featured .blog-card-title,
  .blog-card-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white !important;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
  }

  .blog-card-featured .blog-card-excerpt,
  .blog-card-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .blog-card-date {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .blog-card-read {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: color 0.2s ease;
  }

  .blog-card-featured:hover .blog-card-read {
    color: #60a5fa;
  }

  /* Secondary Grid */
  .blog-secondary-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 1024px) {
    .blog-secondary-grid {
      height: 100%;
      justify-content: space-between;
      gap: 0;
    }
  }

  .blog-card-small {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    background: white;
    border: 1px solid rgba(26, 102, 192, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .blog-card-small:hover {
    border-color: var(--accent, #1A66C0);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 102, 192, 0.12);
  }

  .blog-card-small .blog-card-image-wrapper {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  @media (min-width: 1024px) {
    .blog-card-small .blog-card-image-wrapper {
      width: 140px;
      height: 100px;
    }

    .blog-card-info {
      padding: 1rem 1rem 1rem 0;
    }

    .blog-card-title-small {
      font-size: 1.3rem;
    }
  }

  .blog-card-small .blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog-card-small:hover .blog-card-image {
    transform: scale(1.1);
  }

  .blog-card-small .blog-card-overlay {
    display: none;
  }

  .blog-card-info {
    flex: 1;
    padding: 0.875rem 1rem 0.875rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-card-tag-small {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent, #1A66C0);
    margin-bottom: 0.5rem;
  }

  .blog-card-title-small {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-card-date-small {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    color: #94a3b8;
  }

  /* Placeholder */
  .blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8F1FA 0%, #f1f5f9 100%);
  }

  .blog-card-placeholder svg {
    color: #94a3b8;
  }

  /* CTA Button - Outline style like Browse All */
  .blog-preview-cta {
    text-align: center;
    margin-top: 3rem;
  }

  .blog-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent, #1A66C0);
    background: transparent;
    text-decoration: none;
    border: 1px solid rgba(26, 102, 192, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .blog-preview-btn {
      padding: 1.5rem 2.5rem;
      font-size: 1.25rem;
    }
  }

  .blog-preview-btn:hover {
    border-color: var(--accent, #1A66C0);
    background: rgba(26, 102, 192, 0.05);
    color: var(--accent, #1A66C0);
  }

  .blog-preview-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .blog-preview-btn:hover svg {
    transform: translateX(4px);
  }

  /* Responsive */
  @media (max-width: 640px) {
    .blog-preview-section {
      padding: 3rem 1rem;
    }

    .blog-card-featured {
      aspect-ratio: 4 / 3;
    }

    .blog-card-featured .blog-card-content {
      padding: 1.25rem;
    }

    .blog-card-excerpt {
      display: none;
    }

    .blog-card-small .blog-card-image-wrapper {
      width: 100px;
      height: 75px;
    }
  }

/* ============================================
   Contact Form Styles
   (Moved from sections/contact-form.liquid)
   ============================================ */
  .contact-section {
    position: relative;
    background: var(--paper-white, #FAFAFA);
    padding: 4rem 0 6rem;
    min-height: 70vh;
  }

  .contact-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .contact-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  @media (max-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  /* Info Column */
  .contact-info {
    padding: 2rem 0;
  }

  .contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent, #1A66C0);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }

  .contact-eyebrow svg {
    stroke: var(--accent, #1A66C0);
  }

  .contact-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--ink-black, #111827);
    margin: 0 0 1rem 0;
    line-height: 1.1;
  }

  @media (max-width: 768px) {
    .contact-title {
      font-size: 2.8rem;
    }
  }

  .contact-description {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--pencil-dark, #374151);
    margin: 0 0 2rem 0;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    color: var(--pencil-dark, #374151);
  }

  .contact-detail svg {
    stroke: var(--accent, #1A66C0);
    flex-shrink: 0;
  }

  .contact-detail a {
    color: inherit;
    text-decoration: none;
  }

  .contact-detail a:hover {
    color: var(--accent, #1A66C0);
  }

  .contact-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 102, 192, 0.1);
  }

  .contact-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: var(--pencil-dark, #374151);
  }

  .contact-trust-item svg {
    stroke: #059669;
  }

  /* Form Column */
  .contact-form-wrapper {
    background: white;
    border: 1px solid rgba(26, 102, 192, 0.1);
    padding: 2.5rem;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  @media (max-width: 640px) {
    .contact-form-row {
      grid-template-columns: 1fr;
    }
  }

  .contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-label {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pencil-dark, #374151);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .contact-input {
    padding: 1rem 1.25rem;
    font-size: 1.5rem;
    color: var(--ink-black, #111827);
    background: var(--paper-white, #FAFAFA);
    border: 1px solid rgba(26, 102, 192, 0.15);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-input:focus {
    outline: none;
    border-color: var(--accent, #1A66C0);
    box-shadow: 0 0 0 3px rgba(26, 102, 192, 0.1);
  }

  .contact-input::placeholder {
    color: var(--pencil-light, #9CA3AF);
  }

  .contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }

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

  .contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.25rem 2rem;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: var(--accent, #1A66C0);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .contact-submit:hover {
    background: #145098;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 102, 192, 0.3);
  }

  .contact-submit svg {
    transition: transform 0.2s ease;
  }

  .contact-submit:hover svg {
    transform: translateX(4px);
  }

  /* Success State */
  .contact-success {
    text-align: center;
    padding: 3rem 2rem;
  }

  .contact-success svg {
    color: #059669;
    margin-bottom: 1rem;
  }

  .contact-success h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink-black, #111827);
    margin: 0 0 0.5rem 0;
  }

  .contact-success p {
    font-size: 1.5rem;
    color: var(--pencil-dark, #374151);
    margin: 0;
  }

/* ============================================
   Video Reviews Styles
   (Moved from sections/video-reviews.liquid)
   ============================================ */
  .video-reviews-v2 {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--paper-cream, #F5F3EF) 100%);
    padding: 5rem 1rem 6rem;
    overflow: hidden;
  }

  .video-reviews-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .video-reviews-v2-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  .video-reviews-v2-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .video-reviews-v2-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--ink-black, #111827);
    margin: 0 0 0.5rem 0;
  }

  .video-reviews-v2-subtitle {
    font-size: 1.6rem;
    color: var(--pencil-gray, #6B7280);
    margin: 0;
  }

  /* Video Grid */
  .video-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  @media (max-width: 1023px) {
    .video-grid-v2 {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 0.5rem;
      margin: 0 -1rem;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .video-grid-v2::-webkit-scrollbar {
      display: none;
    }

    .video-grid-v2 .video-card-v2 {
      flex: 0 0 70%;
      scroll-snap-align: center;
    }
  }

  /* Video Card */
  .video-card-v2 {
    position: relative;
    aspect-ratio: 9 / 16;
    background: var(--paper-cream, #F5F3EF);
    border: 2px solid rgba(26, 102, 192, 0.15);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .video-card-v2:hover {
    border-color: var(--accent, #1A66C0);
    box-shadow: 0 8px 32px rgba(26, 102, 192, 0.15);
  }

  /* Corner accents */
  .video-card-v2-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: 3;
    pointer-events: none;
  }

  .video-card-v2-corner-tl {
    top: -1px;
    left: -1px;
    border-top: 3px solid var(--accent, #1A66C0);
    border-left: 3px solid var(--accent, #1A66C0);
  }

  .video-card-v2-corner-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 3px solid var(--accent, #1A66C0);
    border-right: 3px solid var(--accent, #1A66C0);
  }

  .video-card-v2-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .video-card-v2:hover .video-card-v2-poster {
    transform: scale(1.05);
  }

  .video-card-v2-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
  }

  .video-card-v2-placeholder svg {
    color: #9ca3af;
  }

  /* Play overlay */
  .video-card-v2-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
  }

  .video-card-v2.is-playing .video-card-v2-overlay,
  .video-card-v2.is-playing .video-card-v2-poster {
    opacity: 0;
    pointer-events: none;
  }

  .video-card-v2-play {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-card-v2-play-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: transform 0.3s ease;
  }

  .video-card-v2:hover .video-card-v2-play-bg {
    transform: scale(1.1);
  }

  .video-card-v2-play svg {
    position: relative;
    z-index: 1;
    color: var(--accent, #1A66C0);
    margin-left: 4px;
  }

  .video-card-v2-label {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Video element */
  .video-card-v2-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .video-card-v2.is-playing .video-card-v2-video {
    opacity: 1;
  }

  /* Carousel Indicators */
  .video-carousel-indicators-v2 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  @media (min-width: 1024px) {
    .video-carousel-indicators-v2 {
      display: none;
    }
  }

  .video-indicator-v2 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 102, 192, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .video-indicator-v2.active {
    background: var(--accent, #1A66C0);
    width: 24px;
    border-radius: 4px;
  }

/* ============================================
   Testimonials Styles
   (Moved from sections/testimonials.liquid)
   ============================================ */
  .testimonials-section {
    background: #0a0a0f;
    color: white;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
  }

  .testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(26, 102, 192, 0.15) 0%, transparent 50%);
    pointer-events: none;
  }

  .testimonials-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-eyebrow-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    margin-bottom: 1rem;
  }

  .section-eyebrow-dark svg {
    width: 14px;
    height: 14px;
    stroke: #60a5fa;
  }

  .testimonials-headline {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin: 0;
  }

  /* Filter Buttons */
  .testimonial-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }

  .filter-btn {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
  }

  .filter-btn.active {
    background: var(--accent, #1A66C0);
    border-color: var(--accent, #1A66C0);
    color: white;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  @media (max-width: 1023px) {
    .testimonials-grid {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 0.5rem;
      margin: 0 -1rem;
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .testimonials-grid::-webkit-scrollbar {
      display: none;
    }

    .testimonials-grid .testimonial-card {
      flex: 0 0 85%;
      scroll-snap-align: start;
    }
  }

  @media (max-width: 768px) {
    .testimonials-headline {
      font-size: 2.4rem;
    }
  }

  /* Testimonial Card */
  .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    transition: all 0.3s ease;
  }

  .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(26, 102, 192, 0.5);
    box-shadow: 0 8px 32px rgba(26, 102, 192, 0.15);
    transform: translateY(-4px);
  }

  .testimonial-card.hidden {
    display: none;
  }

  .testimonial-stars {
    color: #F59E0B;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }

  .testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
  }

  .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .author-name {
    font-weight: 600;
    color: white;
  }

  .author-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.25rem 0.5rem;
  }

  .author-badge svg {
    stroke: #4ade80;
  }

  .testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .testimonial-tag {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Carousel Indicators */
  .testimonial-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  @media (min-width: 1024px) {
    .testimonial-carousel-indicators {
      display: none;
    }
  }

  .testimonial-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .testimonial-indicator.active {
    background: var(--accent, #1A66C0);
    width: 24px;
    border-radius: 4px;
  }

/* ============================================
   Global Performance & Accessibility
   ============================================ */

/* Reduced Motion Preference
   Respects user's system preference for 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;
  }
  
  /* Disable will-change when motion is reduced */
  .product-card,
  .btn-primary,
  .pdp-cta-btn,
  .pdp-gallery-arrow {
    will-change: auto;
  }
}

/* ============================================
   Product Recommendations / Customers Also Bought
   (sections/product-recommendations.liquid)
   ============================================ */

.customers-also-bought {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  background: var(--paper-white, #FAFAFA);
}

@media (min-width: 768px) {
  .customers-also-bought {
    padding: 5rem 2rem 6rem;
  }
}

.customers-also-bought-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.customers-also-bought-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent, #1A66C0);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent-light, #E8F1FA);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(26, 102, 192, 0.2);
  margin-bottom: 1rem;
}

.cab-eyebrow svg {
  stroke: var(--accent, #1A66C0);
}

.customers-also-bought-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ink-black, #111827);
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .customers-also-bought-title {
    font-size: 3.2rem;
  }
}

.customers-also-bought-subtitle {
  font-size: 1.5rem;
  color: var(--pencil-gray, #6B7280);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.customers-also-bought-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .customers-also-bought-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .customers-also-bought-grid {
    gap: 2.5rem;
  }
}

/* ============================================
   Main Page Template Styles
   (sections/main-page.liquid)
   ============================================ */

.page-section {
  position: relative;
  background: var(--paper-white, #FAFAFA);
  min-height: 60vh;
  padding: 3rem 1.5rem 5rem;
}

@media (min-width: 768px) {
  .page-section {
    padding: 4rem 2rem 6rem;
  }
}

.page-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 102, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 102, 192, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.7;
}

.page-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink-black, #111827);
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.5rem;
  }
}

/* Page Content Styling */
.page-content {
  background: white;
  border: 1px solid rgba(26, 102, 192, 0.1);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .page-content {
    padding: 3rem;
  }
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: var(--ink-black, #111827);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child {
  margin-top: 0;
}

.page-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(26, 102, 192, 0.1);
}

.page-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent, #1A66C0);
}

.page-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.page-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--pencil-dark, #374151);
  margin-bottom: 1.25rem;
}

.page-content strong {
  color: var(--ink-black, #111827);
  font-weight: 600;
}

.page-content ul,
.page-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.page-content li {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--pencil-dark, #374151);
  margin-bottom: 0.75rem;
  position: relative;
}

.page-content ul li::marker {
  color: var(--accent, #1A66C0);
}

.page-content ol li::marker {
  color: var(--accent, #1A66C0);
  font-weight: 600;
}

.page-content a {
  color: var(--accent, #1A66C0);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.page-content a:hover {
  color: #145098;
}

.page-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--accent-light, #E8F1FA);
  border-left: 4px solid var(--accent, #1A66C0);
  border-radius: 0 8px 8px 0;
}

.page-content blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--ink-black, #111827);
}

.page-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 102, 192, 0.2), transparent);
  margin: 2.5rem 0;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
}

.page-content th,
.page-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 102, 192, 0.1);
}

.page-content th {
  background: var(--paper-cream, #F5F3EF);
  font-weight: 600;
  color: var(--ink-black, #111827);
}

.page-content tr:hover td {
  background: rgba(26, 102, 192, 0.02);
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.page-content code {
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
  font-size: 0.9em;
  background: var(--paper-cream, #F5F3EF);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  color: var(--accent, #1A66C0);
}

.page-content pre {
  background: var(--ink-black, #111827);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.page-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}
