/* ==========================================================================
   HUGO-MED (Hugo Vita Med GmbH) - Design System & CSS Stylesheet v3.0
   Design Rules: Quiet Luxury / Medical Minimal / European Premium
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Dark Color Layers (Strict HEX Codes) */
  --bg-hero: #050D14;
  --bg-layer-1: #08131C;
  --bg-layer-2: #0C1A26;
  --bg-layer-3: #101F2E;
  --bg-card-dark: #132334;

  /* Ice Blue Accent Palette (Max 5% of UI) */
  --color-ice-blue: #A8D8F0;
  --color-ice-dim: #6BB8DC;
  --color-ice-light: #DDF0FA;

  /* Neutral Surfaces & Text */
  --color-off-white: #F8FBFD;
  --color-white: #FFFFFF;
  --color-text-muted: #8E9BAE;
  --color-text-dim: #6C7A8E;
  --color-border-dark: rgba(168, 216, 240, 0.12);
  --color-border-hover: rgba(168, 216, 240, 0.35);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dimensions & Spacing */
  --max-width: 1280px;
  --container-padding-desktop: 60px;
  --container-padding-mobile: 22px;
  --section-padding-desktop: 120px;
  --section-padding-mobile: 80px;

  /* Transitions */
  --ease-quick: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-quick);
  --transition-normal: 0.35s var(--ease-quick);
  --transition-slow: 0.6s var(--ease-quick);
}

/* --------------------------------------------------------------------------
   1. Reset & Global Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  background-color: var(--bg-layer-1);
  color: var(--color-off-white);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* Typography Helpers */
.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.italic {
  font-style: italic;
}

/* --------------------------------------------------------------------------
   2. Container & Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
  }
}

.section {
  padding-top: var(--section-padding-desktop);
  padding-bottom: var(--section-padding-desktop);
}

@media (max-width: 768px) {
  .section {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}

/* Eyebrows & Headings */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ice-dim);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: var(--color-ice-dim);
}

.heading-h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-off-white);
}

.heading-h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-off-white);
}

.heading-h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-off-white);
}

.body-large {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.body-regular {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 6px;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-ice-blue);
  color: var(--bg-hero);
  box-shadow: 0 4px 20px rgba(168, 216, 240, 0.15);
}

.btn-primary:hover {
  background-color: #BDEDFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 216, 240, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-ice-blue);
  border: 1px solid rgba(168, 216, 240, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(168, 216, 240, 0.08);
  border-color: var(--color-ice-blue);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--color-off-white);
  border: 1px solid var(--color-border-dark);
}

.btn-ghost:hover {
  border-color: var(--color-ice-dim);
  color: var(--color-ice-blue);
}

/* --------------------------------------------------------------------------
   3. Header & Sticky Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(8, 19, 28, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 216, 240, 0.08);
  transition: background-color var(--transition-fast);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 28px;
}

.logo-img {
  height: 24px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-off-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-ice-blue);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-off-white);
  transition: all var(--transition-fast);
  position: relative;
}

.icon-btn:hover {
  background-color: rgba(168, 216, 240, 0.08);
  color: var(--color-ice-blue);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--color-ice-blue);
  color: var(--bg-hero);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Language Switcher Button */
.lang-switcher-btn {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.lang-switcher-btn .lang-opt {
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted, #8E9BAE);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.lang-switcher-btn .lang-opt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-ice-blue, #A8D8F0);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(168, 216, 240, 0.6);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-switcher-btn .lang-opt.active {
  color: var(--color-off-white, #F8FBFD);
  font-weight: 700;
}

.lang-switcher-btn .lang-opt.active::after {
  width: 100%;
}

.lang-switcher-btn .lang-sep {
  display: none;
}

.mobile-toggle {
  display: none;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   4. Hero Section (Exact 100vh Single Screen Viewport Fit)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  background-color: #050D14;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 24px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Linear Subtle Grid Pattern Background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 216, 240, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 216, 240, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-ambient-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 184, 220, 0.08) 0%, rgba(5, 13, 20, 0) 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 900px;
}

.eyebrow-dash {
  color: var(--color-ice-dim);
  font-weight: 300;
  margin-right: 4px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--color-off-white);
  margin-top: 14px;
}

.hero-headline .italic-accent {
  font-style: italic;
  color: #A8D8F0;
  font-weight: 300;
}

.hero-pulse-container {
  width: 72vw;
  max-width: 1050px;
  height: 90px;
  margin: -10px 0 10px 0;
  position: relative;
  overflow: visible;
}

.hero-pulse-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pulse-line-base {
  display: none;
}

.pulse-line-glow {
  stroke: #00F5D4;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 280 1800;
  stroke-dashoffset: 280;
  animation: ecgPulse 2.8s linear infinite;
  filter: drop-shadow(0 0 8px #00F5D4) drop-shadow(0 0 16px rgba(168, 216, 240, 0.9));
}

@keyframes ecgPulse {
  0% {
    stroke-dashoffset: 280;
  }

  100% {
    stroke-dashoffset: -1800;
  }
}

.hero-subheadline {
  font-size: 15px;
  font-weight: 300;
  color: rgba(248, 251, 253, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-hero-primary {
  background-color: #A8D8F0;
  color: #050D14;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(168, 216, 240, 0.25);
  transition: all var(--transition-fast);
}

.btn-hero-primary:hover {
  background-color: #BDEDFF;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(168, 216, 240, 0.4);
}

.btn-hero-secondary {
  background-color: rgba(8, 19, 28, 0.4);
  border: 1px solid rgba(168, 216, 240, 0.2);
  color: rgba(248, 251, 253, 0.9);
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.btn-hero-secondary:hover {
  border-color: rgba(168, 216, 240, 0.5);
  color: #A8D8F0;
  transform: translateY(-2px);
}

/* Metrics Bar System */
.metrics-bar {
  position: relative;
  z-index: 2;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: none;
}

.metrics-grid {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 50px;
  padding-left: 50px;
  border-left: 1px solid rgba(168, 216, 240, 0.12);
}

.metric-item:first-child {
  padding-left: 0;
  border-left: none;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--color-off-white);
  line-height: 1;
}

.metric-sup {
  font-size: 20px;
  vertical-align: top;
  color: var(--color-off-white);
  font-weight: 300;
}

.metric-sub {
  font-size: 22px;
  color: var(--color-off-white);
  font-weight: 300;
}

.metric-check {
  font-size: 20px;
  color: var(--color-off-white);
  margin-left: 2px;
}

.metric-label {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(248, 251, 253, 0.45);
}

/* --------------------------------------------------------------------------
   5. Products Section
   -------------------------------------------------------------------------- */
.products-section {
  background-color: var(--bg-layer-1);
  border-bottom: 1px solid rgba(168, 216, 240, 0.05);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ice-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-link:hover {
  gap: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 216, 240, 0.08);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-number {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
}

.badge {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
}

.badge-available {
  background-color: rgba(168, 216, 240, 0.15);
  color: var(--color-ice-blue);
  border: 1px solid rgba(168, 216, 240, 0.3);
}

.badge-soon {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(168, 216, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 24px;
  color: var(--color-ice-blue);
}

.card-content {
  margin-top: auto;
}

.card-title {
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card-footer-price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-text {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-off-white);
}

/* --------------------------------------------------------------------------
   6. About Section - Teaser & 4 Principles
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-layer-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.mission-box {
  margin-top: 40px;
  padding: 24px 30px;
  background-color: rgba(19, 35, 52, 0.5);
  border-left: 2px solid var(--color-ice-blue);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--color-ice-light);
}

/* 4 Principles Stack */
.principles-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.principle-card {
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all var(--transition-fast);
}

.principle-card:hover {
  border-color: var(--color-border-hover);
  transform: translateX(6px);
}

.principle-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-ice-dim);
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.principle-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-off-white);
  margin-bottom: 4px;
}

.principle-desc {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   7. Certifications Trust Row
   -------------------------------------------------------------------------- */
.certifications-row {
  background-color: var(--bg-layer-1);
  padding: 40px 0;
  border-top: 1px solid rgba(168, 216, 240, 0.06);
  border-bottom: 1px solid rgba(168, 216, 240, 0.06);
}

.certs-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.certs-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
}

.certs-pills {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-off-white);
}

.cert-pill svg {
  color: var(--color-ice-blue);
}

/* --------------------------------------------------------------------------
   8. B2B Fachhandel Callout Banner
   -------------------------------------------------------------------------- */
.partner-section {
  background-color: var(--bg-layer-3);
  position: relative;
  overflow: hidden;
}

.partner-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-content {
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   9. Views System (Multi-Page Component Switching)
   -------------------------------------------------------------------------- */
.view-container {
  display: none;
}

.view-container.active-view {
  display: block;
  animation: fadeIn 0.4s var(--ease-quick);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   10. Product Detail Page (PDP U81E)
   -------------------------------------------------------------------------- */
.pdp-section {
  padding-top: 140px;
  background-color: var(--bg-layer-1);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .pdp-grid {
    grid-template-columns: 1fr;
  }
}

.pdp-gallery {
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-gallery img {
  max-height: 380px;
  width: auto;
}

.pdp-info {
  display: flex;
  flex-direction: column;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.pdp-price {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-off-white);
}

.pdp-tax {
  font-size: 13px;
  color: var(--color-text-dim);
}

.pdp-key-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 32px 0;
}

.pdp-feature-chip {
  padding: 10px 14px;
  background-color: rgba(168, 216, 240, 0.06);
  border: 1px solid rgba(168, 216, 240, 0.15);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-ice-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.specs-table th,
.specs-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.specs-table th {
  color: var(--color-text-dim);
  font-weight: 500;
  width: 40%;
}

.specs-table td {
  color: var(--color-off-white);
  font-weight: 400;
}

/* WHO Blood Pressure Visual Chart */
.who-chart-box {
  margin-top: 30px;
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  padding: 24px;
}

.who-bar-flex {
  display: flex;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin: 16px 0;
}

.who-seg {
  height: 100%;
  flex: 1;
}

.who-green {
  background-color: #52C41A;
}

.who-yellow {
  background-color: #FAAD14;
}

.who-orange {
  background-color: #FA8C16;
}

.who-red {
  background-color: #F5222D;
}

/* --------------------------------------------------------------------------
   11. Support & FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-border-hover);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-off-white);
  text-align: left;
}

.faq-question svg {
  color: var(--color-ice-dim);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* --------------------------------------------------------------------------
   12. Slide-out Cart Drawer
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 13, 20, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--bg-layer-1);
  border-left: 1px solid var(--color-border-dark);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-body {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background-color: var(--bg-card-dark);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background-color: var(--bg-hero);
  border-radius: 8px;
  padding: 6px;
}

.cart-footer {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--bg-layer-2);
}

.free-shipping-bar {
  background-color: rgba(168, 216, 240, 0.1);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
  margin: 12px 0 20px 0;
}

.free-shipping-progress {
  height: 100%;
  background-color: var(--color-ice-blue);
}

/* --------------------------------------------------------------------------
   13. Search Overlay Modal
   -------------------------------------------------------------------------- */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 13, 20, 0.92);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.search-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.search-box {
  width: 100%;
  max-width: 680px;
  padding: 0 20px;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 20px 24px 20px 60px;
  font-size: 20px;
  font-family: var(--font-serif);
  color: var(--color-off-white);
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
}

.search-input:focus {
  border-color: var(--color-ice-blue);
  box-shadow: 0 0 25px rgba(168, 216, 240, 0.15);
}

.search-icon-pos {
  position: absolute;
  left: 20px;
  color: var(--color-ice-dim);
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--bg-hero);
  border-top: 1px solid rgba(168, 216, 240, 0.08);
  padding-top: 80px;
  padding-bottom: 40px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ice-dim);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-link:hover {
  color: var(--color-ice-blue);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: var(--color-text-dim);
}

.legal-inline-links {
  display: flex;
  gap: 20px;
}

/* Social Media Icons Row */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  color: var(--color-off-white);
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background-color: rgba(168, 216, 240, 0.12);
  border-color: var(--color-ice-blue);
  color: var(--color-ice-blue);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   15. Global Media Rules & Video Banners (Project Brief Spec)
   -------------------------------------------------------------------------- */
.video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-25 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
  pointer-events: none;
}

/* Fixed Header Video Banner across all Subpages */
.subpage-video-banner {
  position: relative;
  width: 100%;
  height: 340px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
  background-color: #050D14;
}

.subpage-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.subpage-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  color: #F8FBFD;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.subpage-banner-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: rgba(248, 251, 253, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* Video Containers for Homepage Sections & PDP Gallery */
.video-feature-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background-color: var(--bg-hero);
}

.video-feature-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Support Cards Grid */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .support-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .support-cards-grid {
    grid-template-columns: 1fr;
  }
}

.widerruf-alert-box {
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid #EF4444;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 30px;
}

.widerruf-info-box {
  background: rgba(168, 216, 240, 0.06);
  border-left: 4px solid var(--color-ice-blue);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.support-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.support-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(168, 216, 240, 0.1);
}

.support-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(168, 216, 240, 0.08);
  color: var(--color-ice-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Manuals Accordion Component */
.manuals-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.manual-item {
  background: var(--bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.manual-item.active {
  border-color: var(--color-border-hover);
}

.manual-header {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.manual-header-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-off-white);
}

.manual-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.manual-item.active .manual-content {
  max-height: 600px;
  padding: 0 28px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   PDP Interactive Media Gallery Carousel
   -------------------------------------------------------------------------- */
.pdp-gallery-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.pdp-gallery-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background-color: #030812;
}

.pdp-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.pdp-gallery-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.pdp-gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
  display: block;
}

.media-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 216, 240, 0.35);
  color: var(--color-ice-blue);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pdp-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(10, 25, 47, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-off-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.pdp-gallery-btn.btn-prev {
  left: 16px;
}

.pdp-gallery-btn.btn-next {
  right: 16px;
}

.pdp-gallery-btn:hover {
  background: var(--color-ice-blue);
  color: #0a192f;
  border-color: var(--color-ice-blue);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 24px rgba(168, 216, 240, 0.6);
}

.pdp-gallery-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.pdp-gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(248, 251, 253, 0.9);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.pdp-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
}

.thumb-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card-dark);
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  transition: all 0.25s ease;
  width: 100%;
}

.thumb-item:hover {
  opacity: 0.9;
  border-color: rgba(168, 216, 240, 0.5);
  transform: translateY(-2px);
}

.thumb-item.active {
  opacity: 1;
  border-color: var(--color-ice-blue);
  box-shadow: 0 0 16px rgba(168, 216, 240, 0.4);
  transform: translateY(-2px);
}

.thumb-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
  display: block;
}

.thumb-video-icon {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ice-blue);
  transition: background 0.2s ease;
}

.thumb-item:hover .thumb-video-icon {
  background: rgba(10, 25, 47, 0.2);
}

/* ==========================================================================
   Cookie Consent Banner & Preferences Modal (GDPR / DSGVO Compliant)
   ========================================================================== */
.cookie-banner-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(130%);
  width: calc(100% - 48px);
  max-width: 960px;
  background: rgba(12, 26, 38, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 216, 240, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 22px 28px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.cookie-banner-wrap.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cookie-icon {
  color: var(--color-ice-blue);
  display: flex;
  align-items: center;
}

.cookie-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #F8FBFD;
  letter-spacing: 0.02em;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.cookie-text a {
  color: var(--color-ice-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cookie-text a:hover {
  color: #FFFFFF;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-settings {
  background: transparent;
  border: 1px solid var(--color-border-dark);
  color: var(--color-off-white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cookie-btn-settings:hover {
  border-color: var(--color-ice-blue);
  color: var(--color-ice-blue);
  background: rgba(168, 216, 240, 0.06);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #F8FBFD;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
}

.cookie-btn-primary {
  background: var(--color-ice-blue);
  border: 1px solid var(--color-ice-blue);
  color: #050D14;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(168, 216, 240, 0.25);
}

.cookie-btn-primary:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-1px);
}

/* Modal for Granular Settings */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 13, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-card {
  background: #0C1A26;
  border: 1px solid rgba(168, 216, 240, 0.2);
  border-radius: 18px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  animation: cookieModalScale 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes cookieModalScale {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cookie-modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(168, 216, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-category-item {
  background: rgba(19, 35, 52, 0.6);
  border: 1px solid rgba(168, 216, 240, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-category-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-category-title {
  font-size: 15px;
  font-weight: 600;
  color: #F8FBFD;
}

.cookie-badge-required {
  background: rgba(168, 216, 240, 0.15);
  color: var(--color-ice-blue);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-category-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* iOS-style toggle switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked+.cookie-slider {
  background-color: var(--color-ice-blue);
}

.cookie-switch input:checked+.cookie-slider:before {
  transform: translateX(20px);
  background-color: #050D14;
}

.cookie-switch input:disabled+.cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 18px 28px;
  border-top: 1px solid rgba(168, 216, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(8, 19, 28, 0.6);
}

@media (max-width: 768px) {
  .cookie-banner-wrap {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 18px 16px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .cookie-actions button {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .cookie-modal-card {
    max-height: 95vh;
  }
}

/* --------------------------------------------------------------------------
   11. Products Catalog Single Page Layout Grid & Badges (Matches exact design spec)
   -------------------------------------------------------------------------- */
.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
  margin-bottom: 80px;
}

.catalog-card {
  background: var(--bg-card-dark, #132334);
  border: 1px solid var(--color-border-dark, rgba(168, 216, 240, 0.12));
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover, rgba(168, 216, 240, 0.35));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.catalog-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.catalog-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-card-img {
  transform: scale(1.05);
}

.catalog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.catalog-card-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-ice-blue, #A8D8F0);
  margin-bottom: 8px;
}

.catalog-card-title {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 24px;
  font-weight: 400;
  color: #F8FBFD;
  margin-bottom: 8px;
  line-height: 1.25;
}

.catalog-card-desc {
  font-size: 13px;
  color: var(--color-text-muted, #8E9BAE);
  margin-bottom: 20px;
  line-height: 1.5;
}

.catalog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.catalog-card-price {
  font-family: var(--font-serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 22px;
  color: var(--color-off-white, #F8FBFD);
}

.catalog-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.catalog-card-badge {
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.catalog-card-badge.badge-coming-soon {
  background: rgba(5, 13, 20, 0.9);
  border: 1px solid rgba(168, 216, 240, 0.35);
  color: var(--color-ice-blue, #A8D8F0);
  box-shadow: 0 2px 10px rgba(5, 13, 20, 0.4);
}

.catalog-card-badge.badge-available {
  background: rgba(82, 196, 26, 0.15);
  border: 1px solid rgba(82, 196, 26, 0.4);
  color: #52C41A;
}

@media (max-width: 992px) {
  .products-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .products-catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --------------------------------------------------------------------------
   SPA View Routing Container Rules
   -------------------------------------------------------------------------- */
.view-container {
  display: none;
  width: 100%;
}

.view-container.active-view {
  display: block;
  animation: fadeIn 0.35s ease;
}

/* --------------------------------------------------------------------------
   Subpage Top Video Banners (Fullscreen Width behind Fixed Header)
   -------------------------------------------------------------------------- */
.subpage-video-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  padding-top: 140px;
  /* 80px fixed header height + 60px content padding */
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #050D14;
  box-sizing: border-box;
}

.subpage-banner-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 0 20px;
  margin: 0 auto;
}

.subpage-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  color: #F8FBFD;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.subpage-banner-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Ensure WordPress admin bar pushes fixed header down without overlap */
body.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}