/* ============================================
   YOKOOL — Light theme design system
   Brand: #DC143B (crimson red)
   Inspired by sharge.com layout, adapted for light theme
   ============================================ */

:root {
  /* Background layers */
  --bg-base: #FFFFFF;
  --bg-surface: #FAFAFA;
  --bg-elevated: #F4F4F4;
  --bg-glass: rgba(255, 255, 255, 0.85);

  /* Borders */
  --border-subtle: #EEEEEE;
  --border-medium: #DDDDDD;
  --border-strong: #BBBBBB;

  /* Text */
  --text-primary: #0A0A0A;
  --text-secondary: #555555;
  --text-tertiary: #888888;
  --text-faint: #BBBBBB;

  /* Brand accent */
  --brand: #DC143B;
  --brand-hover: #B30E2F;
  --brand-soft: rgba(220, 20, 59, 0.08);
  --brand-glow: rgba(220, 20, 59, 0.25);
  --brand-line: rgba(220, 20, 59, 0.2);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Be Vietnam Pro', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --container-width: 1280px;
  --container-padding: 24px;
  --section-padding: clamp(72px, 10vw, 128px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.6s;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

input, select, textarea, button {
  font-family: inherit;
}

::selection {
  background: var(--brand);
  color: #fff;
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* ============ TYPOGRAPHY PATTERNS ============ */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--brand);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-title em {
  font-style: normal;
  color: var(--brand);
}

.section-description {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.6;
}

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
  text-align: center;
}

.section-header .section-description {
  margin: 0 auto;
}

/* ============ BUTTONS ============ */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--brand);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid var(--brand);
  border-radius: 0;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--brand-glow);
}

.cta-button--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.cta-button--ghost:hover {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}

.cta-button--dark {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.cta-button--dark:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.cta-button--small {
  padding: 10px 18px;
  font-size: 13px;
}

.cta-button--full {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
}

.cta-button--large {
  padding: 20px 36px;
  font-size: 16px;
}

.cta-arrow {
  transition: transform 0.3s var(--ease);
  display: inline-block;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
  border-bottom: 1px solid transparent;
  background: var(--bg-base);
}

.site-header.is-scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: opacity 0.2s var(--ease);
}

.logo:hover {
  opacity: 0.75;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* Light variant (white text) hidden by default — only shows when parent has .is-dark */
.logo-img--light {
  display: none;
}

/* When ANY ancestor is marked .is-dark (or has dark bg), swap variants */
.is-dark .logo-img--dark {
  display: none;
}
.is-dark .logo-img--light {
  display: block;
}

.footer-brand .logo-img {
  height: 96px;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  align-items: center;
}

/* Top-level nav items: link or dropdown trigger */
.nav-link,
.nav-dropdown-btn {
  position: relative;
  padding: 6px 0;
  font: inherit;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-dropdown:hover .nav-dropdown-btn,
.nav-dropdown:focus-within .nav-dropdown-btn {
  color: var(--text-primary);
}

.nav-link::after,
.nav-dropdown-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-dropdown:hover .nav-dropdown-btn::after,
.nav-dropdown:focus-within .nav-dropdown-btn::after {
  width: 100%;
}

.nav-chevron {
  transition: transform 0.25s var(--ease);
  display: inline-block;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-chevron,
  .nav-dropdown:focus-within .nav-chevron {
    transform: rotate(180deg);
  }
}

/* Dropdown panel (level 1) */
.nav-dropdown,
.nav-submenu {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 240px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 120;
  list-style: none;
}

/* Invisible bridge prevents close when mouse moves between trigger and panel */
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Submenu trigger (level 2) */
.nav-submenu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-submenu-btn::after {
  display: none;
}

.nav-submenu-arrow {
  color: var(--text-tertiary);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .nav-submenu:hover > .nav-submenu-btn,
  .nav-submenu:focus-within > .nav-submenu-btn {
    background: var(--brand-soft);
    color: var(--brand);
  }

  .nav-submenu:hover > .nav-submenu-btn .nav-submenu-arrow,
  .nav-submenu:focus-within > .nav-submenu-btn .nav-submenu-arrow {
    color: var(--brand);
    transform: translateX(3px);
  }
}

/* Submenu panel (level 3 - leaf items) */
.nav-submenu-panel {
  position: absolute;
  top: -8px;
  left: calc(100% + 4px);
  min-width: 180px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease), transform 0.2s var(--ease);
  list-style: none;
}

.nav-submenu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  bottom: 0;
  width: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .nav-submenu:hover > .nav-submenu-panel,
  .nav-submenu:focus-within > .nav-submenu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

/* Leaf links inside dropdown */
.nav-leaf {
  display: block;
  padding: 11px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.nav-leaf:hover {
  background: var(--brand-soft);
  color: var(--brand);
  padding-left: 18px;
}

.nav-leaf::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============ HERO CAROUSEL ============ */
.hero-carousel {
  position: relative;
  height: clamp(500px, 80vh, 720px);
  margin-top: 72px;
  overflow: hidden;
  background: var(--bg-surface);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease);
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide img,
.carousel-slide .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(24px, 8vw, 96px);
  max-width: var(--container-width);
  margin: 0 auto;
  z-index: 2;
}

.carousel-slide.is-active .slide-eyebrow,
.carousel-slide.is-active .slide-title,
.carousel-slide.is-active .slide-tagline,
.carousel-slide.is-active .slide-cta {
  animation: slideUp 0.8s var(--ease) forwards;
}

.carousel-slide.is-active .slide-eyebrow { animation-delay: 0.2s; }
.carousel-slide.is-active .slide-title { animation-delay: 0.35s; }
.carousel-slide.is-active .slide-tagline { animation-delay: 0.5s; }
.carousel-slide.is-active .slide-cta { animation-delay: 0.65s; }

.slide-eyebrow,
.slide-title,
.slide-tagline,
.slide-cta {
  opacity: 0;
  transform: translateY(24px);
}

.slide-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--brand);
  background: rgba(255, 255, 255, 0.9);
}

.slide-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 16px;
  max-width: 700px;
}

.slide-tagline {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.4;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s var(--ease);
  font-size: 20px;
  box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #FFFFFF;
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* Carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 28px;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.dot:hover {
  background: rgba(0, 0, 0, 0.4);
}

.dot.is-active {
  background: var(--brand);
  width: 56px;
}

/* ============ FEATURED PRODUCTS GRID (HOME) ============ */
.products-section {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

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

.product-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 48px 40px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  text-decoration: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
  pointer-events: none;
}

.product-card:hover {
  background: var(--bg-base);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
  border-color: var(--brand);
}

.product-card-image {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  min-height: 260px;
  overflow: hidden;
}

.product-card-image img,
.product-card-image svg {
  max-width: 75%;
  max-height: 240px;
  height: auto;
  width: auto;
  transition: transform 0.5s var(--ease);
}

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

.product-code-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 5px 12px;
  background: var(--bg-base);
}

.product-card-info {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.product-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--text-primary);
}

.product-card-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.product-card-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}

.product-card:hover .product-card-link {
  transform: translateX(6px);
}

/* ============ PRODUCT DETAIL PAGE ============ */
.product-hero {
  padding: 120px 0 80px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.product-hero-image {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-image img,
.product-hero-image svg {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
}

.product-hero-image::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  filter: blur(40px);
}

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

.product-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.product-hero-tagline {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.4;
}

.product-hero-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-current {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}

.product-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.product-hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}

.product-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-hero-meta-icon {
  color: var(--brand);
  font-size: 16px;
}

/* ============ KEY FEATURES (Product page) ============ */
.key-features {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

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

.feature-card {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 28px;
  border: 1px solid var(--brand-line);
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.feature-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ FEATURE SHOWCASE (Product page) ============ */
.showcase {
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-base);
}

.showcase:nth-of-type(even) {
  background: var(--bg-surface);
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.showcase--reverse .showcase-inner > .showcase-visual {
  order: 2;
}

.showcase-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-visual img,
.showcase-visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-content .section-label {
  margin-bottom: 16px;
}

.showcase-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.showcase-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.showcase-bullets li::before {
  content: "→";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ SPECS TABLE (Product page) ============ */
.specs-section {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.specs-table {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--text-primary);
}

.specs-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 24px;
}

.specs-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.specs-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============ FINAL CTA (Product page) ============ */
.final-cta {
  padding: var(--section-padding) 0;
  background: var(--text-primary);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: 0.5;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.final-cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

.final-cta .cta-button--ghost {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.final-cta .cta-button--ghost:hover {
  background: #FFFFFF;
  color: var(--text-primary);
  border-color: #FFFFFF;
}

/* ============ RELATED PRODUCTS ============ */
.related-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

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

.related-card {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  padding: 32px 24px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

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

.related-card-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.related-card-image img,
.related-card-image svg {
  max-width: 80%;
  max-height: 80%;
}

.related-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.related-card-code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
}

/* ============ WHY YOKOOL ============ */
.why-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

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

.why-card {
  padding: 32px 24px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease);
}

.why-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand);
  background: var(--brand-soft);
  margin-bottom: 20px;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ CONTACT ============ */
.contact-section {
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-base);
}

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.contact-channel {
  padding: 24px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.contact-channel:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-channel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.contact-channel-value {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.contact-channel:hover .contact-channel-value {
  color: var(--brand);
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
}

.footer-company-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.45;
}

.footer-company-line {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.55;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

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

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 2px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  padding: 0;
  line-height: 0;
}

.footer-social-link:hover {
  color: var(--brand);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 26px;
  height: 26px;
  display: block;
  vertical-align: middle;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

/* ============ NEWS PAGE ============ */
.news-hero {
  padding: 140px 0 64px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.news-hero-inner {
  max-width: 720px;
}

.news-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
  color: var(--text-primary);
}

.news-hero-tagline {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  line-height: 1.5;
}

.news-empty {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

.news-empty-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.news-empty-mark {
  font-size: 48px;
  color: var(--brand);
  margin-bottom: 24px;
  display: inline-block;
  animation: spinSlow 8s linear infinite;
}

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

.news-empty-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.news-empty-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.news-empty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ CART ICON IN HEADER ============ */
.cart-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--text-primary);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.cart-icon-btn:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.cart-icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge.is-visible {
  display: inline-flex;
}

/* ============ CART DRAWER ============ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 200;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg-base);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

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

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

.cart-drawer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.cart-drawer-close:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

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

.cart-drawer-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  color: var(--text-tertiary);
  flex: 1;
}

.cart-drawer-empty-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: var(--text-faint);
}

.cart-drawer-empty-text {
  font-size: 15px;
  margin-bottom: 24px;
}

.cart-drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 24px;
  flex-shrink: 0;
  background: var(--bg-base);
}

.cart-drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.cart-drawer-total-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.cart-drawer-total-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.01em;
}

.cart-drawer-hint {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
  text-align: center;
}

/* Cart item inside drawer */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-image img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}

.cart-item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.3;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.cart-item-subtotal {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand);
  font-size: 14px;
  text-align: right;
  margin-top: 4px;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  border-radius: 50%;
  transition: all 0.2s var(--ease);
}

.cart-item-remove:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

/* Quantity control */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-medium);
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-base);
  transition: all 0.15s var(--ease);
  font-weight: 500;
}

.qty-btn:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.qty-value {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 0 4px;
  user-select: none;
}

/* Disable body scroll when drawer open */
body.cart-drawer-open {
  overflow: hidden;
}

/* ============ TOAST NOTIFICATIONS ============ */
.yk-toast {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translate(-50%, -20px);
  background: var(--text-primary);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
}

.yk-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.yk-toast-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.yk-toast--info .yk-toast-icon {
  background: var(--text-secondary);
}

.yk-toast-message {
  font-size: 14px;
  font-weight: 500;
}

/* ============ PRODUCT HERO: DESCRIPTION + PRICE + BUTTONS ============ */
.product-hero-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 540px;
}

.product-hero-description p {
  margin-bottom: 4px;
}

.product-hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.product-hero-price-row .price-current {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}

.product-hero-price-row .price-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 4px 10px;
  border: 1px solid var(--border-medium);
}

.cta-button--secondary {
  background: var(--bg-base);
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.cta-button--secondary:hover {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============ CHECKOUT PAGE ============ */
.checkout-page {
  padding: 120px 0 80px;
  min-height: 60vh;
  background: var(--bg-surface);
}

.checkout-header {
  margin-bottom: 48px;
}

.checkout-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 12px 0 8px;
  color: var(--text-primary);
}

.checkout-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: start;
}

.checkout-form-card,
.checkout-summary-card {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  padding: 32px;
  border-radius: 12px;
}

.checkout-summary-card {
  padding: 28px 28px 32px;
  position: sticky;
  top: 100px;
}

.checkout-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.form-label.is-required::after {
  content: " *";
  color: var(--brand);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-base);
  border: 1px solid var(--border-medium);
  border-radius: 0;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.form-textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.5;
}

.form-help {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* Payment method block */
.payment-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--brand);
  background: var(--brand-soft);
}

.payment-method-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.payment-method-radio::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.payment-method-info {
  flex: 1;
}

.payment-method-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.payment-method-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Summary card */
.summary-items {
  margin-bottom: 24px;
  max-height: 520px;
  overflow-y: auto;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 24px;
}

.summary-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 18px 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border-subtle);
}

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

.summary-item-image {
  position: relative;
  width: 84px;
  height: 84px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
}

.summary-item-image img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
}

.summary-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  gap: 6px;
}

.summary-item-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.summary-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.005em;
  flex: 1;
}

.summary-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-tertiary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.summary-item-remove:hover {
  background: var(--bg-surface);
  color: var(--brand);
}

.summary-item-unit-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.summary-item-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

/* Quantity control on summary */
.summary-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.summary-qty-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s var(--ease);
  line-height: 1;
}

.summary-qty-btn:hover {
  background: var(--bg-surface);
}

.summary-qty-btn:active {
  background: var(--border-subtle);
}

.summary-qty-value {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  user-select: none;
}

.summary-item-subtotal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.summary-totals {
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.summary-row--total {
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 20px;
}

.summary-row--total .summary-row-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}

.summary-row--total .summary-row-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.summary-row--total .summary-row-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: 24px;
  letter-spacing: -0.01em;
}

.summary-shipping {
  color: var(--text-primary);
  font-weight: 500;
}

.checkout-empty {
  text-align: center;
  padding: 96px 24px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
}

.checkout-empty-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.checkout-empty-text {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============ ORDER SUCCESS MODAL ============ */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.success-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.success-modal-card {
  background: var(--bg-base);
  max-width: 520px;
  width: 100%;
  padding: 40px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}

.success-modal.is-visible .success-modal-card {
  transform: translateY(0);
}

.success-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.success-modal-close:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  animation: successPop 0.5s var(--ease);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.success-order-id {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.success-order-id strong {
  color: var(--brand);
  font-weight: 600;
}

.success-message {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-details {
  text-align: left;
  background: var(--bg-surface);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 3px solid var(--brand);
}

.success-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 13px;
}

.success-row > span:first-child {
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-size: 11px;
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.success-row > span:last-child {
  color: var(--text-primary);
  text-align: right;
  flex: 1;
  word-break: break-word;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ B2B PAGE ============ */
.b2b-stats {
  background: var(--text-primary);
  color: #fff;
  padding: 32px 0;
}

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

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

.b2b-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.b2b-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.b2b-stat-value sup {
  font-size: 60%;
  vertical-align: super;
  margin-left: 2px;
}

/* B2B Why / Value props */
.b2b-why {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

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

.b2b-why-card {
  padding: 36px 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--brand);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.b2b-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.b2b-why-number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 16px;
}

.b2b-why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.b2b-why-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* B2B Use cases */
.b2b-usecases {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.b2b-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.b2b-usecase {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  align-items: start;
  transition: border-color 0.3s var(--ease);
}

.b2b-usecase:hover {
  border-color: var(--brand);
}

.b2b-usecase-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid var(--brand-line);
}

.b2b-usecase-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.b2b-usecase-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* B2B Pricing tiers */
.b2b-tiers {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.b2b-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.b2b-tier {
  position: relative;
  background: var(--bg-base);
  border: 1px solid var(--border-medium);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.b2b-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.b2b-tier--featured {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--bg-base) 30%);
}

.b2b-tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  font-weight: 600;
}

.b2b-tier-quantity {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.b2b-tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.b2b-tier-discount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.b2b-tier-discount-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.04em;
}

.b2b-tier-discount-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.b2b-tier-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.b2b-tier-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.b2b-tier-features li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

.b2b-tier-features li.is-disabled {
  color: var(--text-faint);
}

.b2b-tier-features li.is-disabled::before {
  content: "·";
  color: var(--text-faint);
}

/* B2B Process timeline */
.b2b-process {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.b2b-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.b2b-process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border-medium);
  z-index: 0;
}

.b2b-process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.b2b-process-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--bg-base);
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 20px;
  color: var(--brand);
  position: relative;
  z-index: 2;
}

.b2b-process-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.b2b-process-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* B2B Inquiry form */
.b2b-inquiry {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
}

.b2b-inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.b2b-inquiry-intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.b2b-inquiry-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.b2b-inquiry-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.b2b-inquiry-contact {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
}

.b2b-inquiry-contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding-top: 2px;
}

.b2b-inquiry-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 40px;
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s var(--ease);
}

.form-checkbox:hover {
  border-color: var(--brand);
}

.form-checkbox input {
  accent-color: var(--brand);
}

.form-checkbox input:checked + span {
  font-weight: 600;
  color: var(--brand);
}

.form-checkbox:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
}

/* Catalogue download CTA section */
.b2b-catalogue {
  padding: var(--section-padding) 0;
  background: var(--text-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.b2b-catalogue::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 0.6;
}

.b2b-catalogue-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.b2b-catalogue-image {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.b2b-catalogue-pdf {
  width: 75%;
  height: 90%;
  background: #fff;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.b2b-catalogue-pdf:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.b2b-catalogue-pdf-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: 24px;
}

.b2b-catalogue-pdf-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.b2b-catalogue-pdf-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.b2b-catalogue-pdf-spec {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.b2b-catalogue-pdf-footer {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-tertiary);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  margin-top: auto;
}

.b2b-catalogue-content .section-label {
  color: var(--brand);
}

.b2b-catalogue-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  color: #fff;
}

.b2b-catalogue-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.b2b-catalogue-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.b2b-catalogue-meta-item strong {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-top: 4px;
  text-transform: none;
}

.b2b-catalogue-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.b2b-catalogue .cta-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.b2b-catalogue .cta-button--ghost:hover {
  background: #fff;
  color: var(--text-primary);
}

/* B2B page responsive */
@media (max-width: 1024px) {
  .b2b-stats-grid,
  .b2b-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-tiers-grid,
  .b2b-process-steps {
    grid-template-columns: 1fr;
  }

  .b2b-process-steps::before {
    display: none;
  }

  .b2b-inquiry-layout,
  .b2b-catalogue-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .b2b-catalogue-image {
    aspect-ratio: 16 / 10;
  }

  .b2b-catalogue-pdf {
    width: 70%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .b2b-stats-grid,
  .b2b-why-grid,
  .b2b-usecases-grid {
    grid-template-columns: 1fr;
  }

  .b2b-usecase {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .b2b-usecase-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .b2b-inquiry-form {
    padding: 24px;
  }
}

/* ============ FLOATING CONTACT WIDGET ============ */
.contact-widget {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-widget-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
}

.contact-widget-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.contact-widget-btn--messenger {
  background: linear-gradient(135deg, #00C6FF 0%, #0068FF 50%, #B829FF 100%);
}

.contact-widget-btn--zalo {
  background: #fff;
  border: 1.5px solid rgba(0, 104, 255, 0.25);
}

.contact-widget-btn--phone {
  background: var(--brand);
}

.contact-widget-icon {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.contact-widget-zalo-svg {
  width: 44px;
  height: 44px;
  display: block;
}

/* Tooltip label (desktop hover) */
.contact-widget-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease), transform 0.2s var(--ease);
  font-family: var(--font-body);
}

.contact-widget-label::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(15, 15, 15, 0.92);
}

@media (hover: hover) and (pointer: fine) {
  .contact-widget-btn:hover .contact-widget-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }
}

/* Pulse ring on phone button (attention grabber, subtle) */
.contact-widget-btn--phone::before,
.contact-widget-btn--phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand);
  animation: contactPulse 2.5s ease-out infinite;
  pointer-events: none;
}

.contact-widget-btn--phone::after {
  animation-delay: 1.25s;
}

@keyframes contactPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.9);
  }
  80% {
    opacity: 0;
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

/* Hide widget when cart drawer is open */
body.cart-drawer-open .contact-widget {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(20px);
}

/* Mobile: smaller, no tooltip */
@media (max-width: 768px) {
  .contact-widget {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    gap: 10px;
  }

  .contact-widget-btn {
    width: 48px;
    height: 48px;
  }

  .contact-widget-icon {
    width: 22px;
    height: 22px;
  }

  .contact-widget-zalo-svg {
    width: 38px;
    height: 38px;
  }

  .contact-widget-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-widget-btn--phone::before,
  .contact-widget-btn--phone::after {
    animation: none;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .main-nav {
    gap: 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 16px var(--container-padding) 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link,
  .nav-dropdown-btn,
  .nav-submenu-btn {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
    justify-content: space-between;
  }

  .nav-link::after,
  .nav-dropdown-btn::after {
    display: none; /* no underline on mobile, use background instead */
  }

  /* Dropdown panel: become inline accordion on mobile */
  .nav-dropdown-panel,
  .nav-submenu-panel {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0 0 0 16px;
    min-width: 0;
    width: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    transition: max-height 0.3s var(--ease);
  }

  .nav-dropdown-panel::before,
  .nav-submenu-panel::before {
    display: none;
  }

  .nav-dropdown.is-open > .nav-dropdown-panel {
    max-height: 600px;
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .nav-submenu.is-open > .nav-submenu-panel {
    max-height: 400px;
  }

  .nav-submenu-btn {
    padding: 10px 0;
    font-size: 14px;
  }

  .nav-leaf {
    padding: 8px 0;
    font-size: 13px;
  }

  .nav-leaf:hover {
    padding-left: 0;
    background: transparent;
  }

  /* Rotate chevron on open */
  .nav-dropdown.is-open .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-submenu.is-open .nav-submenu-arrow {
    transform: rotate(90deg);
    color: var(--brand);
  }

  .cta-button--small {
    display: none;
  }

  .hero-carousel {
    height: 60vh;
    min-height: 480px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    top: auto;
    bottom: 80px;
    transform: none;
  }

  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }

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

  .product-card {
    min-height: 420px;
    padding: 32px 24px;
  }

  .product-hero-inner,
  .showcase-inner,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .showcase--reverse .showcase-inner > .showcase-visual {
    order: 0;
  }

  .features-grid,
  .why-grid,
  .related-grid,
  .contact-channels {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  /* Checkout responsive */
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .checkout-summary-card {
    position: static;
  }

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

  .checkout-form-card,
  .checkout-summary-card {
    padding: 24px;
  }

  /* Cart drawer full width on mobile */
  .cart-drawer {
    max-width: 100%;
  }

  /* Success modal smaller on mobile */
  .success-modal-card {
    padding: 28px 20px;
  }

  .success-row {
    flex-direction: column;
    gap: 2px;
  }

  .success-row > span:last-child {
    text-align: left;
  }

  /* Product hero actions stack on mobile */
  .product-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-hero-actions .cta-button {
    justify-content: center;
  }

  .yk-toast {
    top: 80px;
    font-size: 13px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .why-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .product-hero-actions,
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-hero-actions .cta-button,
  .final-cta-actions .cta-button {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============ PRODUCT COLOR PICKER ============ */
.product-color-section {
  margin: 20px 0 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.product-color-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.product-color-label-value {
  color: var(--text-primary);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}
.product-color-swatches {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.product-color-swatch {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  cursor: pointer;
  padding: 0;
  background: transparent;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-color-swatch-fill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
}
.product-color-swatch--black .product-color-swatch-fill { background: #1a1a1a; }
.product-color-swatch--white .product-color-swatch-fill {
  background: #ffffff;
  border: 1px solid #e5e5e5;
}
.product-color-swatch:hover {
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}
.product-color-swatch.is-active {
  border-color: var(--brand);
  border-width: 2.5px;
}
.product-color-swatch:disabled,
.product-color-swatch.is-single { cursor: default; }
.product-color-swatch:disabled:hover,
.product-color-swatch.is-single:hover {
  transform: none;
  border-color: var(--border-subtle);
}
.product-color-swatch.is-single.is-active:hover { border-color: var(--brand); }
@media (max-width: 768px) {
  .product-color-swatch { width: 40px; height: 40px; }
  .product-color-swatch-fill { width: 28px; height: 28px; }
}

/* ============ PRODUCT GALLERY (multi-image) ============ */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
}
.product-gallery-thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-base);
  border: 1.5px solid var(--border-subtle);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery-thumb:hover { border-color: var(--text-secondary); }
.product-gallery-thumb.is-active {
  border-color: var(--brand);
  border-width: 2px;
}

/* ============ PRODUCT HERO BULLETS ============ */
.product-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.product-hero-bullets li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.product-hero-bullets li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--brand);
  font-size: 10px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .product-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .product-hero-bullets li { font-size: 14px; }
}

/* ============ PRODUCT CARD IMAGE — LARGER, CONTAIN ============ */
/* Override các rule cũ ở phần ô 4 sản phẩm trang chủ */
.products-grid .product-card-image {
  min-height: 320px;
  background: transparent;
  padding: 16px;
}
.products-grid .product-card-image img,
.products-grid .product-card-image svg {
  max-width: 92%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* mix-blend-mode để hòa nền trắng của ảnh với nền card (nếu có) */
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .products-grid .product-card-image {
    min-height: 240px;
  }
  .products-grid .product-card-image img,
  .products-grid .product-card-image svg {
    max-height: 220px;
  }
}


/* ============ CONTACT CHANNELS FIX — chiều cao đều, không wrap ============ */
/* Đảm bảo 4 ô liên hệ luôn cùng chiều cao và nội dung không wrap xuống nhiều dòng */
.contact-channels .contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  overflow: hidden;
}

.contact-channels .contact-channel-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 14px;
}

.contact-channels .contact-channel-label {
  margin-bottom: 6px;
}

/* Mobile responsive: 2 cột thay vì 4 để có chỗ cho text dài */
@media (max-width: 640px) {
  .contact-channels {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .contact-channels .contact-channel {
    min-height: 88px;
  }
  .contact-channels .contact-channel-value {
    font-size: 13px;
  }
}

/* ============ HERO BANNER — TEXT POSITIONING FOR NEW BANNERS ============ */
/* Banner mới có sản phẩm bên phải, text bên trái → cần giới hạn width text */
.carousel-slide .slide-content {
  max-width: none;       /* override default 1280px container limit */
  width: clamp(560px, 60vw, 1050px);  /* total slot incl. left padding */
  margin: 0;             /* left-aligned, not centered in viewport */
  padding-left: clamp(180px, 14vw, 270px);
  padding-right: 32px;
}
.carousel-slide .slide-title {
  max-width: 100%;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.1;
  white-space: nowrap;   /* keep each <br>-separated line on a single row */
}
.carousel-slide .slide-tagline {
  max-width: 100%;
}

/* Mobile: text full width centered, with bg overlay for readability */
@media (max-width: 768px) {
  .hero-carousel {
    height: 70vh;
    min-height: 520px;
  }

  /* Add a soft white-to-transparent gradient overlay on top of bg image
     so text remains readable wherever product sits in the banner. */
  .carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245,244,242,0.92) 0%, rgba(245,244,242,0.78) 45%, rgba(245,244,242,0.25) 70%, rgba(245,244,242,0) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .carousel-slide .slide-content {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding-top: 56px;
  }

  .carousel-slide .slide-title {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.1;
    white-space: normal;
    max-width: 100%;
  }

  .carousel-slide .slide-tagline {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .carousel-slide .slide-eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 76vh;
    min-height: 480px;
  }
  .carousel-slide .slide-content {
    padding-top: 44px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .carousel-slide .slide-title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .carousel-slide .slide-tagline {
    font-size: 14px;
  }
}

/* ============ REVIEWERS / TIKTOK ============ */
.reviews-section {
  padding: var(--section-padding) 0;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: block;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.18);
}

.review-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* Real TikTok screenshots used as thumbnails */
.review-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.review-card:hover .review-thumb {
  transform: scale(1.04);
}

/* Dark gradient overlay at bottom for handle text readability */
.review-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.review-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.review-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px; /* visually center the play triangle */
}

.review-card:hover .review-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--brand);
  color: #fff;
}

.review-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.review-tt-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.review-tt-icon svg {
  width: 100%;
  height: 100%;
}

.review-handle {
  font-weight: 500;
}

/* ============ TIKTOK MODAL ============ */
.tt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.tt-modal.is-open {
  display: flex;
}

.tt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.tt-modal-content {
  position: relative;
  width: min(420px, 92vw);
  max-height: 92vh;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.tt-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s var(--ease);
}

.tt-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tt-modal-close svg {
  width: 20px;
  height: 20px;
}

.tt-modal-embed {
  width: 100%;
  height: 100%;
  min-height: 740px;
  overflow-y: auto;
}

.tt-modal-embed blockquote.tiktok-embed {
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

/* Reviews responsive */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .review-play {
    width: 52px;
    height: 52px;
  }
  .review-play svg {
    width: 22px;
    height: 22px;
  }
  .tt-modal-embed {
    min-height: 600px;
  }
}

/* ============ PRODUCT GALLERY ARROWS ============ */
.product-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  z-index: 3;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0;
}

.product-gallery-arrow:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.product-gallery-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.product-gallery-arrow:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.product-gallery-arrow svg {
  width: 18px;
  height: 18px;
}

.product-gallery-arrow--prev {
  left: 12px;
}

.product-gallery-arrow--next {
  right: 12px;
}

@media (max-width: 640px) {
  .product-gallery-arrow {
    width: 36px;
    height: 36px;
  }
  .product-gallery-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* ============ NEWS GRID (listing page) ============ */
.news-grid-section {
  padding: 0 0 var(--section-padding);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  color: inherit;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.12);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-surface);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}

.news-card-category {
  color: var(--brand);
  font-weight: 500;
}

.news-card-dot {
  opacity: 0.5;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}

.news-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-readmore {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-card-arrow {
  transition: transform 0.2s var(--ease);
  display: inline-block;
}

.news-card:hover .news-card-arrow {
  transform: translateX(4px);
}

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

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

/* ============ NEWS ARTICLE (detail page) ============ */
.news-article {
  padding-top: 72px;
}

.article-hero {
  padding: 56px 0 32px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: color 0.2s var(--ease);
}

.article-back:hover {
  color: var(--brand);
}

.article-back-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}

.article-back:hover .article-back-arrow {
  transform: translateX(-4px);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-category {
  color: var(--brand);
  font-weight: 500;
}

.article-meta-dot {
  opacity: 0.5;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0;
}

.article-hero-image {
  padding: 32px 0;
  background: var(--bg-surface);
}

.article-hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.article-body-container {
  padding: 56px 0 80px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
}

.article-body > p,
.article-body > ul,
.article-body > ol,
.article-body > h2,
.article-body > h3,
.article-body > .news-pullquote,
.article-body > .news-table {
  margin-bottom: 24px;
}

.article-body .news-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 32px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}

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

.article-body em {
  font-style: italic;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  color: var(--text-secondary);
}

.article-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.article-body .news-pullquote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  padding: 24px 0 24px 28px;
  border-left: 4px solid var(--brand);
  margin: 36px 0;
}

.article-body .news-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 32px 0;
}

.article-body .news-table thead th {
  background: var(--bg-surface);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 14px 16px;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
}

.article-body .news-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: top;
}

.article-body .news-table tbody tr:last-child td {
  border-bottom: none;
}

/* Article share */
.article-share {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-share-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.article-share-buttons {
  display: flex;
  gap: 10px;
}

.article-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  padding: 0;
}

.article-share-btn:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.article-share-btn svg {
  width: 16px;
  height: 16px;
}

.article-share-copy.is-copied {
  color: #fff;
  background: #10b981;
  border-color: #10b981;
}

/* Related products in article */
.article-related {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.article-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.article-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.12);
}

.article-related-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-surface);
}

.article-related-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16%;
  transition: transform 0.5s var(--ease);
}

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

.article-related-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.article-related-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

.article-related-tag {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
}

.article-related-link {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--brand);
}

@media (max-width: 640px) {
  .article-hero {
    padding: 40px 0 24px;
  }
  .article-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .article-body {
    font-size: 16px;
  }
  .article-body h2 {
    font-size: 24px;
    margin-top: 40px;
  }
  .article-body h3 {
    font-size: 19px;
  }
  .article-body .news-pullquote {
    font-size: 18px;
    padding-left: 20px;
  }
  .article-body .news-table {
    font-size: 13px;
  }
  .article-body .news-table thead th,
  .article-body .news-table tbody td {
    padding: 10px 8px;
  }
}

/* ============ NEWS LIST PAGE ============ */
.news-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border-subtle);
}

.news-hero-inner {
  max-width: 720px;
}

.news-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
  color: var(--text-primary);
}

.news-hero-tagline {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-secondary);
  line-height: 1.5;
}

.news-list-section {
  padding: 64px 0 96px;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
  border-color: var(--text-primary);
}

.news-card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-surface);
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-card-category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
}

.news-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

.news-card-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.news-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  display: flex;
  gap: 8px;
  margin-top: auto;
}

/* Featured (first) card takes 2 columns and is taller */
.news-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.news-card--featured .news-card-thumb {
  aspect-ratio: 16 / 9;
}

.news-card--featured .news-card-title {
  font-size: 28px;
  line-height: 1.2;
}

.news-card--featured .news-card-excerpt {
  font-size: 15px;
}

.news-card--featured .news-card-body {
  padding: 32px 32px 36px;
}

/* ============ NEWS ARTICLE PAGE ============ */
.article {
  padding: 32px 0 80px;
}

.article-breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

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

.article-header {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.article-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 14px;
  border: 1px solid var(--brand);
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}

.article-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.article-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.article-cover {
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.article-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.article-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 48px 0 16px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 18px;
}

.article-body p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-body p em {
  font-style: italic;
}

.article-cta {
  margin: 56px 0 16px;
  padding: 32px;
  background: var(--bg-surface);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.article-cta-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.article-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 20px;
}

/* Related articles */
.article-related {
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0 24px;
}

.article-related-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 32px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease);
}

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

.article-related-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-surface);
  margin-bottom: 16px;
}

.article-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.article-related-card:hover .article-related-thumb img {
  transform: scale(1.05);
}

.article-related-category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.article-related-cardtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .news-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-card--featured {
    grid-column: span 2;
    grid-row: auto;
  }
  .news-card--featured .news-card-title {
    font-size: 24px;
  }
  .article-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .news-list-grid {
    grid-template-columns: 1fr;
  }
  .news-card--featured {
    grid-column: span 1;
  }
  .article-related-grid {
    grid-template-columns: 1fr;
  }
  .article-title {
    font-size: 32px;
  }
  .article-lede {
    font-size: 18px;
  }
  .article-section-title {
    font-size: 22px;
  }
  .article-body p {
    font-size: 16px;
  }
  .article-cta {
    padding: 24px 20px;
  }
}

/* ============ B2B CUSTOMERS LOGO WALL ============ */
.b2b-customers {
  padding: 80px 0 96px;
  background: var(--bg-surface);
}

.b2b-customers .section-header {
  margin-bottom: 56px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.b2b-customers-wall {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px;
  overflow: hidden;
}

.b2b-customers-wall img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .b2b-customers {
    padding: 56px 0 64px;
  }
  .b2b-customers-wall {
    padding: 16px;
  }
}

/* ============ B2B SLIDE DUAL CTA ============ */
.slide-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.slide-cta-row .slide-cta {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .slide-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .slide-cta-row .slide-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================ */
/* SUPPORT PAGES (FAQ + Warranty)                               */
/* ============================================================ */

/* Shared hero */
.support-hero {
  position: relative;
  padding: 96px 0 64px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.support-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c8c5bf 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

.support-hero .container {
  position: relative;
  z-index: 1;
}

.support-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 16px;
  color: var(--text-primary);
}

.support-hero-title em {
  font-style: normal;
  color: var(--brand);
}

.support-hero-tagline {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 680px;
}

.support-hero-tagline a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.support-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}

.support-stat {
  background: var(--bg-base);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.support-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3vw, 44px);
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}

.support-stat-suffix {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-left: 6px;
  letter-spacing: 0.05em;
}

.support-stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ============ FAQ Layout ============ */
.support-section {
  padding: 80px 0 96px;
}

.support-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.support-nav {
  position: sticky;
  top: 100px;
}

.support-nav-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 16px;
}

.support-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  border: 1px solid transparent;
}

.support-nav-link:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.support-nav-link.is-active {
  background: var(--bg-base);
  border-color: var(--text-primary);
  color: var(--text-primary);
  font-weight: 600;
}

.support-nav-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  font-weight: 500;
}

.support-nav-link.is-active .support-nav-num {
  color: var(--brand);
}

/* FAQ groups */
.support-content {
  min-width: 0;
}

.faq-group {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-group-num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 500;
}

.faq-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

/* FAQ items */
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--bg-base);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.faq-item:hover {
  border-color: var(--text-tertiary);
}

.faq-item[open] {
  border-color: var(--text-primary);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question-text {
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s var(--ease), transform 0.3s var(--ease);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  top: 50%;
  left: 50%;
  transition: transform 0.3s var(--ease), background 0.2s var(--ease);
}

.faq-toggle::before {
  width: 12px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1.6px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-toggle {
  background: var(--brand);
}

.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
  background: #fff;
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* ============ WARRANTY PROMISES ============ */
.warranty-promises {
  padding: 80px 0 32px;
}

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

.warranty-promise {
  padding: 32px 28px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.warranty-promise:hover {
  border-color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.15);
}

.warranty-promise-icon {
  width: 48px;
  height: 48px;
  color: var(--brand);
  margin-bottom: 20px;
}

.warranty-promise-icon svg {
  width: 100%;
  height: 100%;
}

.warranty-promise-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.warranty-promise-big-unit {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-left: 6px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.warranty-promise-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.warranty-promise-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* ============ WARRANTY PROCESS TIMELINE ============ */
.warranty-process {
  padding: 64px 0;
  background: var(--bg-surface);
}

.warranty-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 16px 0 12px;
}

.warranty-section-title em {
  font-style: normal;
  color: var(--brand);
}

.warranty-section-tagline {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 600px;
}

.warranty-timeline {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  gap: 0;
  position: relative;
  counter-reset: step;
}

.warranty-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--border-subtle));
}

.warranty-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 24px 0;
  position: relative;
}

.warranty-step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--brand);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.warranty-step-body {
  flex: 1;
  padding-top: 8px;
}

.warranty-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.warranty-step-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.warranty-step-text a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* ============ WARRANTY CONDITIONS ============ */
.warranty-conditions {
  padding: 80px 0;
}

.warranty-conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.warranty-condition-card {
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-base);
}

.warranty-condition-card--positive {
  border-left: 3px solid #16a34a;
}

.warranty-condition-card--negative {
  border-left: 3px solid var(--brand);
}

.warranty-condition-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.warranty-condition-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.warranty-condition-badge svg {
  width: 22px;
  height: 22px;
}

.warranty-condition-badge--ok {
  background: #16a34a;
}

.warranty-condition-badge--no {
  background: var(--brand);
}

.warranty-condition-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0;
}

.warranty-condition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warranty-condition-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.warranty-condition-list li:last-child {
  border-bottom: none;
}

.warranty-condition-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 14px;
  height: 1.5px;
  background: var(--text-tertiary);
}

.warranty-condition-card--positive .warranty-condition-list li::before {
  background: #16a34a;
}

.warranty-condition-card--negative .warranty-condition-list li::before {
  background: var(--brand);
}

/* ============ SUPPORT CTA ============ */
.support-cta {
  padding: 0 0 96px;
}

.support-cta-card {
  background: var(--text-primary);
  color: #fff;
  border-radius: 18px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.support-cta-card > * {
  position: relative;
}

.support-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.support-cta-text {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.support-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.support-cta-actions .cta-button--ghost {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.support-cta-actions .cta-button--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .support-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .support-nav {
    position: static;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 24px;
  }
  .support-nav-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
  }
  .support-nav-label {
    grid-column: 1 / -1;
  }
  .warranty-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .support-hero {
    padding: 64px 0 48px;
  }
  .support-section {
    padding: 56px 0 64px;
  }
  .warranty-promises {
    padding: 48px 0 16px;
  }
  .warranty-promise-grid {
    grid-template-columns: 1fr;
  }
  .warranty-conditions {
    padding: 48px 0;
  }
  .warranty-conditions-grid {
    grid-template-columns: 1fr;
  }
  .warranty-process {
    padding: 48px 0;
  }
  .warranty-step {
    gap: 16px;
    padding: 16px 0;
  }
  .warranty-step-num {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
  .warranty-timeline::before {
    left: 27px;
  }
  .warranty-condition-card {
    padding: 24px 20px;
  }
  .support-cta {
    padding: 0 0 64px;
  }
  .support-cta-card {
    padding: 40px 24px;
  }
  .faq-question {
    padding: 18px 18px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 18px 20px;
  }
}
