/* ==========================================================================
   EPET 30K — Premium e-commerce visual system
   Dark surface + gold accent. Clean, high-contrast, retail-grade.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  --bg-main: #07080a;
  --bg-surface: #0c0e12;
  --bg-elevated: #12151b;
  --bg-card: #101318;
  --bg-card-hover: #161a21;
  --bg-inset: #0a0c10;

  --gold: #e0b84a;
  --gold-deep: #c49a2a;
  --gold-soft: #f3d27a;
  --gold-glow: rgba(224, 184, 74, 0.18);
  --gold-line: rgba(224, 184, 74, 0.28);

  --text: #f4efe4;
  --text-muted: #b7b2a6;
  --text-dim: #8d897f;
  --ink: #0a0b0d;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --danger: #e35d5d;

  --font-display: 'Syne', 'Manrope', sans-serif;
  --font-heading: 'Syne', 'Manrope', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwriting: 'Syne', sans-serif;

  --container-width: 1220px;
  --header-height: 64px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.38);
  --shadow-gold: 0 10px 28px rgba(224, 184, 74, 0.22);

  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.22, 1, 0.36, 1);

  --accent-yellow: var(--gold);
  --accent-yellow-deep: var(--gold-deep);
  --accent-yellow-light: var(--gold-soft);
  --accent-glow: var(--gold-glow);
  --border-accent: var(--gold-line);
  --border-subtle: var(--line);
  --text-white: var(--text);
  --text-muted: #b7b2a6;
  --text-dark: var(--ink);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-main);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.65;
  background:
    radial-gradient(1200px 520px at 80% -10%, rgba(224, 184, 74, 0.08), transparent 55%),
    radial-gradient(900px 480px at 0% 20%, rgba(224, 184, 74, 0.04), transparent 50%),
    var(--bg-main);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast),
    border-color var(--transition-fast), background-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all var(--transition-fast);
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

input, textarea, select {
  font-family: inherit;
  color: var(--text);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(224, 184, 74, 0.15);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-transform: none;
}

.text-yellow { color: var(--gold); }

.section-eyebrow {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  text-transform: none;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Buttons & badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  min-height: 46px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 10px;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 236, 180, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ffe08a 0%, var(--gold-deep) 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(224, 184, 74, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold-line);
}

.btn-secondary:hover {
  background: rgba(224, 184, 74, 0.08);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.badge-yellow {
  background: var(--gold);
  color: var(--ink);
}

.badge-outline {
  background: rgba(224, 184, 74, 0.08);
  border: 1px solid var(--gold-line);
  color: var(--gold-soft);
}

.badge-puffs {
  background: rgba(224, 184, 74, 0.14);
  color: var(--gold-soft);
  border: 1px solid var(--gold-line);
}

.badge-18 {
  background: #1a1212;
  color: #f0c9c9;
  border: 1px solid rgba(227, 93, 93, 0.35);
}

.badge-popular {
  background: var(--gold);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition-normal), border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.site-header.is-scrolled {
  background: rgba(7, 8, 10, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.logo-title span { color: var(--gold); }

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

.logo-img--mobile {
  height: 28px;
}

.logo-img--footer {
  height: 40px;
  margin-bottom: 6px;
}

.logo-subtitle {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  position: relative;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: var(--gold-soft);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta {
  padding: 8px 14px;
  min-height: 36px;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(224, 184, 74, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 236, 180, 0.3);
}

.header-cta .cta-arrow { transition: transform var(--transition-fast); }

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(224, 184, 74, 0.32);
}

.header-cta:hover .cta-arrow { transform: translateX(2px); }

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 8px;
  z-index: 1002;
}

.hamburger-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--gold);
}
.hamburger-btn.is-active span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--gold);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(86%, 360px);
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--gold-line);
  padding: 24px 22px 28px;
  z-index: 1001;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.is-open {
  right: 0;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.55);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer-close {
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-elevated);
}

.mobile-drawer-close:hover { color: var(--gold); }

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  flex: 1;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  padding: 12px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(224, 184, 74, 0.07);
  border-left-color: var(--gold);
}

.mobile-drawer-footer { margin-top: 16px; }

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.overlay-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Hero — Cinematic Ring Design (new)
   -------------------------------------------------------------------------- */
.hero-section.hero-cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(180, 80, 10, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 100% 80% at 50% 60%, rgba(110, 40, 0, 0.22) 0%, transparent 70%),
    linear-gradient(180deg, #0a0608 0%, #07080a 40%, #050607 100%);
}

/* Atmospheric overlay */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(200, 80, 0, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 120% 40% at 50% 100%, rgba(0, 0, 0, 0.7) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-fog {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* === Ring composition === */
.hero-ring-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  z-index: 2;
}

.hero-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  background:
    linear-gradient(#0a0608, #0a0608) padding-box,
    conic-gradient(
      from 180deg,
      rgba(255, 130, 20, 0.0) 0%,
      rgba(255, 130, 20, 0.95) 18%,
      rgba(255, 170, 40, 1) 30%,
      rgba(255, 190, 50, 1) 50%,
      rgba(255, 170, 40, 1) 70%,
      rgba(255, 130, 20, 0.95) 82%,
      rgba(255, 130, 20, 0.0) 100%
    ) border-box;
  box-shadow:
    0 0 60px 18px rgba(230, 100, 10, 0.45),
    0 0 120px 40px rgba(200, 70, 5, 0.28),
    inset 0 0 60px 18px rgba(230, 100, 10, 0.15);
  animation: ringPulse 3.5s ease-in-out infinite alternate;
}

.hero-ring-inner {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 20, 0.18);
  box-shadow: 0 0 24px 4px rgba(230, 100, 10, 0.12);
  pointer-events: none;
}

.hero-ring-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(220, 90, 10, 0.22) 0%, transparent 65%);
  filter: blur(28px);
  pointer-events: none;
  animation: ringPulse 3.5s ease-in-out infinite alternate;
}

@keyframes ringPulse {
  0%  { opacity: 0.85; box-shadow: 0 0 60px 18px rgba(230, 100, 10, 0.45), 0 0 120px 40px rgba(200, 70, 5, 0.28), inset 0 0 60px 18px rgba(230, 100, 10, 0.15); }
  100%{ opacity: 1;    box-shadow: 0 0 80px 28px rgba(255, 130, 20, 0.60), 0 0 160px 60px rgba(220, 80, 0, 0.38), inset 0 0 80px 28px rgba(255, 130, 20, 0.22); }
}

.hero-ring-product {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-left: -24px; /* pull cluster together */
  pointer-events: none;
  animation: floatProduct 5s ease-in-out infinite alternate;
}

/* Shared device style */
.ring-dev {
  object-fit: contain;
  display: block;
  height: auto;
}

/* Left device */
.ring-dev--left {
  width: clamp(140px, 18vw, 240px);
  opacity: 0.92;
  transform: translateX(28px) translateY(18px) rotate(-8deg);
  transform-origin: bottom center;
  filter:
    drop-shadow(0 20px 28px rgba(0,0,0,0.7))
    drop-shadow(0 -4px 18px rgba(200,90,10,0.22));
}

/* Center device */
.ring-dev--center {
  width: clamp(200px, 26vw, 360px);
  z-index: 2;
  filter:
    drop-shadow(0 -16px 48px rgba(255,130,20,0.48))
    drop-shadow(0 30px 44px rgba(0,0,0,0.78));
}

/* Right device */
.ring-dev--right {
  width: clamp(140px, 18vw, 240px);
  opacity: 0.92;
  transform: translateX(-28px) translateY(18px) rotate(8deg);
  transform-origin: bottom center;
  filter:
    drop-shadow(0 20px 28px rgba(0,0,0,0.7))
    drop-shadow(0 -4px 18px rgba(200,90,10,0.22));
}


@keyframes floatProduct {
  0%  { transform: translateX(-50%) translateY(0px); }
  100%{ transform: translateX(-50%) translateY(-12px); }
}

/* === Centered text content === */
.hero-cinematic-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: calc(var(--header-height) + 52px) 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cinematic-content .hero-eyebrow {
  display: block;
  margin-bottom: 18px;
}

.hero-cinematic-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
}

.hero-cinematic-h1 span {
  color: #fff;
  font-style: italic;
  display: block;
}

.hero-cinematic-desc {
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-cinematic-btn-primary {
  background: linear-gradient(180deg, #ff8a3d 0%, #ff5722 100%);
  color: #fff;
  border: 1px solid rgba(255, 210, 170, 0.45);
  border-radius: 50px;
  padding: 17px 38px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.45);
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cinematic-btn-primary:hover {
  background: linear-gradient(180deg, #ff9a52 0%, #ff6a2e 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 87, 34, 0.58);
}

.hero-cinematic-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 13px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  gap: 10px;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cinematic-btn:hover {
  background: rgba(255, 140, 20, 0.22);
  border-color: rgba(255, 140, 20, 0.65);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 100, 10, 0.32);
}

/* === Bottom features strip === */
.hero-features-strip {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(7, 8, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  margin-top: auto;
  flex-wrap: wrap;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
}

.hero-feat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: grayscale(0.1);
}

.hero-feat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 2px;
}

.hero-feat-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.hero-feat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Keep old hero classes for other pages */
.hero-section,
.hero-section.hero-centered {
  position: relative;
  min-height: calc(100vh - 40px);
  min-height: 100svh;
  padding: calc(var(--header-height) + 28px) 0 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: transparent;
}

.hero-section.hero-cinematic {
  padding: 0;
  align-items: center;
}

.hero-leaf-left,
.hero-leaf-right,
.hero-spotlight-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-leaf-left {
  left: -80px;
  top: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(224, 184, 74, 0.12), transparent 68%);
  filter: blur(8px);
}

.hero-leaf-right {
  right: -60px;
  top: 18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(224, 184, 74, 0.16), transparent 70%);
  filter: blur(4px);
}

.hero-spotlight-glow {
  right: 8%;
  top: 42%;
  width: 420px;
  height: 280px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(224, 184, 74, 0.2), transparent 72%);
  filter: blur(28px);
}

.hero-container-centered,
.hero-split {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: center;
  text-align: left;
}

.hero-header-block,
.hero-copy {
  max-width: none;
  margin: 0;
}

.hero-header-block .hero-eyebrow,
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  line-height: 1.3;
}

.hero-header-block .hero-h1,
.hero-h1 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  text-transform: none;
}

.hero-header-block .hero-h1 span,
.hero-h1 span {
  color: var(--gold);
  display: block;
  font-size: 0.72em;
  margin-top: 6px;
  font-weight: 700;
}

.hero-header-block .hero-desc,
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.hero-center-composition {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: visible;
}

.hero-platform-3d {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 460px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at 50% 88%, rgba(224, 184, 74, 0.18) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 100%, #0a0c10 0%, transparent 55%);
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-platform-ring {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 40px rgba(224, 184, 74, 0.12), inset 0 0 24px rgba(224, 184, 74, 0.08);
  pointer-events: none;
}

.hero-devices-cluster {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: end;
  justify-items: center;
  pointer-events: none;
  overflow: visible;
  animation: floatCluster 5s ease-in-out infinite alternate;
  padding: 12px 8px 48px;
}

@keyframes floatCluster {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.cluster-device {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.55));
}

.cluster-device.device-center {
  z-index: 5;
  height: 380px;
  max-height: 380px;
  transform: none;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 22px rgba(224, 184, 74, 0.18));
}

.cluster-device.device-left,
.cluster-device.device-right {
  z-index: 4;
  height: 300px;
  max-height: 300px;
  opacity: 0.96;
  transform: none;
}

.hero-actions-centered,
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-btn-main { box-shadow: var(--shadow-gold); }
.hero-btn-sec { min-width: 180px; }

.hero-mini-benefits {
  display: flex;
  gap: 8px;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.mini-benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  background: rgba(16, 19, 24, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-icon { color: var(--gold); }

main { position: relative; }

main > section:first-child:not(.hero-section),
.product-detail-section {
  padding-top: calc(var(--header-height) + 32px) !important;
}


/* --------------------------------------------------------------------------
   Benefits
   -------------------------------------------------------------------------- */
.benefits-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin-bottom: 56px;
}

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

.benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.benefit-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: rgba(224, 184, 74, 0.08);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.benefit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 2px;
  text-transform: none;
}

.benefit-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Filters
   -------------------------------------------------------------------------- */
.category-block-section { margin-bottom: 40px; }

.category-white-bar {
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.category-bar-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.category-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}

.category-pills::-webkit-scrollbar { display: none; }

.cat-pill {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.cat-pill:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.cat-pill.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   Product cards
   -------------------------------------------------------------------------- */
.products-section { padding-bottom: 80px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal),
    box-shadow var(--transition-normal), background var(--transition-normal);
  overflow: hidden;
}

.product-card.is-popular,
.product-card[data-brand="merrymi"] {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 1px rgba(224, 184, 74, 0.08);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 184, 74, 0.42);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-hover);
}

.card-top-badges {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  z-index: 2;
  margin-bottom: 8px;
  height: 28px;
  min-height: 28px;
  max-height: 28px;
}

.card-status-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 0 0 12px;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  align-items: center;
  overflow: hidden;
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background:
    radial-gradient(circle at 50% 60%, rgba(224, 184, 74, 0.08), transparent 65%),
    var(--bg-inset);
  border-radius: 12px;
  padding: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-normal);
}

.card-floating-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.product-card:hover .card-img-wrapper img {
  transform: scale(1.04);
}

.card-brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
  text-transform: none;
  min-height: 2.6em;
}

.card-puffs-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.card-features-list {
  list-style: none;
  margin-bottom: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card-feature-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.card-feature-item::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.card-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-compare-link {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-dim);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
}

.card-compare-link:hover {
  color: var(--gold);
}

/* ==========================================================================
   FEATURED PRODUCT SHOWCASE (Inspired by reference mockup)
   ========================================================================== */
.product-showcase-section {
  padding: 40px 0 60px;
}

.showcase-selector-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.showcase-tab-btn {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.showcase-tab-btn:hover {
  border-color: var(--gold);
  color: var(--text);
  transform: translateY(-2px);
}

.showcase-tab-btn.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* Main 2-column showcase card */
.showcase-main-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  margin-bottom: 60px;
}

/* Left: Gallery Column */
.showcase-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-main-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(224, 184, 74, 0.07), transparent 68%),
    #0c0e12;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.showcase-main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal), opacity 0.25s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.showcase-main-image-box:hover img {
  transform: scale(1.03);
}

.showcase-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.showcase-thumb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.showcase-thumb-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0c0e12;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.showcase-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-thumb-item:hover .showcase-thumb-frame {
  border-color: rgba(224, 184, 74, 0.6);
  transform: translateY(-2px);
}

.showcase-thumb-item.active .showcase-thumb-frame {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(224, 184, 74, 0.35);
}

.showcase-thumb-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  white-space: nowrap;
}

.showcase-thumb-item.active .showcase-thumb-label {
  color: var(--gold);
}

/* Right: Product Info Column */
.showcase-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-brand-tag {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}

.showcase-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: -6px;
}

.showcase-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.showcase-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 1rem;
}

.showcase-rating-score {
  font-weight: 700;
  color: var(--text);
}

.showcase-rating-count {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.showcase-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-old-price {
  font-size: 1.15rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.showcase-current-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: -0.02em;
}

.showcase-save-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.showcase-desc-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.showcase-actions-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.showcase-btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition-normal);
}

.showcase-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  color: #fff;
}

.showcase-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
}

.showcase-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(224, 184, 74, 0.08);
}

.showcase-shipping-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: -4px;
}

/* Trust Badges 2x2 Grid */
.showcase-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.showcase-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.showcase-trust-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.showcase-trust-label {
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.showcase-trust-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ==========================================================================
   "WHY THIS PRODUCT?" SECTION (3 Columns with circular icons)
   ========================================================================== */
.why-feature-section {
  padding: 50px 0 60px;
}

.why-feature-section .section-header-centered {
  text-align: center;
  margin-bottom: 40px;
}

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

.why-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all var(--transition-normal);
}

.why-feature-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.why-feature-circle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(224, 184, 74, 0.1);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
}

.why-feature-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.why-feature-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   CUSTOMER REVIEWS SECTION (3 Cards with avatars & 5 stars)
   ========================================================================== */
.reviews-section {
  padding: 50px 0 60px;
}

.reviews-section .section-header-centered {
  text-align: center;
  margin-bottom: 40px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-normal);
}

.review-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(224, 184, 74, 0.25), rgba(224, 184, 74, 0.08));
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.review-verified {
  font-size: 0.72rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.review-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Responsive showcase adjustments */
@media (max-width: 1024px) {
  .showcase-main-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 28px 22px;
  }
  .why-feature-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* --------------------------------------------------------------------------
   Promo banner
   -------------------------------------------------------------------------- */
.promo-banner-section { margin-bottom: 80px; }

.yellow-banner {
  background:
    linear-gradient(135deg, rgba(224, 184, 74, 0.16), rgba(18, 21, 27, 0.9) 42%),
    var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  color: var(--text);
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
}

.yellow-banner::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
}

.banner-left {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: none;
  line-height: 1.35;
  white-space: normal;
  color: var(--text-muted);
}

.banner-center {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  text-transform: none;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: left;
  border: 0;
  padding: 0;
  color: var(--gold);
}

.banner-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.banner-btn {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}

.banner-btn:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Comparison
   -------------------------------------------------------------------------- */
.comparison-section { padding-bottom: 80px; }

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 880px;
}

.comparison-table th {
  background: var(--bg-inset);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-line);
  white-space: nowrap;
}

.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--text);
  vertical-align: middle;
}

.comparison-table td:nth-child(3),
.comparison-table td span.text-yellow {
  white-space: nowrap !important;
}

.comparison-table tbody tr:hover {
  background: rgba(224, 184, 74, 0.04);
}

.mobile-compare-cards {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.mobile-compare-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.mobile-compare-header {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.mobile-compare-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.mobile-compare-row span.text-yellow { white-space: nowrap !important; }
.mobile-compare-label { color: var(--text-muted); font-weight: 600; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-section { padding-bottom: 80px; }

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item.is-open { border-color: var(--gold-line); }

.faq-question-btn {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  gap: 16px;
}

.faq-question-btn:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(224, 184, 74, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-fast), color var(--transition-fast);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background: rgba(0, 0, 0, 0.16);
}

.faq-answer-content {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer-content ul {
  margin: 10px 0 0 18px;
}

/* --------------------------------------------------------------------------
   Product detail
   -------------------------------------------------------------------------- */
.product-detail-section { padding: 40px 0 80px; }

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.breadcrumbs a:hover { color: var(--gold); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.product-gallery {
  background:
    radial-gradient(circle at 50% 55%, rgba(224, 184, 74, 0.1), transparent 62%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.product-gallery img {
  max-height: 400px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.product-info-col h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--text);
  margin-bottom: 10px;
  text-transform: none;
}

.product-brand-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}

.product-puffs-highlight {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.spec-box {
  background: var(--bg-inset);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.spec-val {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.flavors-section {
  margin-top: 28px;
  margin-bottom: 28px;
}

.flavors-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.flavor-tag {
  background: var(--bg-inset);
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Age gate
   -------------------------------------------------------------------------- */
.age-gate-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 10, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-modal.is-active,
html.age-gate-unverified .age-gate-modal {
  display: flex !important;
}

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.age-icon-18 {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.age-gate-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text);
}

.age-gate-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.age-gate-warning {
  font-size: 0.78rem;
  color: var(--danger);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Mobile bottom nav
   -------------------------------------------------------------------------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 16, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  z-index: 990;
  padding: 8px 12px max(8px, env(safe-area-inset-bottom));
}

.mobile-bottom-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}

.mobile-bottom-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-bottom-item a.active,
.mobile-bottom-item a:hover { color: var(--gold); }

.mobile-nav-icon { font-size: 1.15rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 340px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links a:hover { color: var(--gold); }

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

.footer-18-notice {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Inner-page cards / forms that currently use inline styles */
.poradnik--box {
  margin: 28px 0 0;
  padding: 20px;
  background: rgba(224, 184, 74, 0.07);
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  text-align: left;
}

@media (max-width: 480px) {
  .poradnik--box .btn {
    white-space: normal;
    width: 100%;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav-menu { gap: 0; }
  .nav-link { padding: 8px 8px; font-size: 0.72rem; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .hero-container-centered,
  .hero-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-section,
  .hero-section.hero-centered {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-center-composition {
    min-height: 380px;
  }

  .hero-platform-3d {
    height: 380px;
    max-width: 520px;
  }

  .cluster-device.device-center {
    height: 300px;
    max-height: 300px;
  }

  .cluster-device.device-left,
  .cluster-device.device-right {
    height: 240px;
    max-height: 240px;
  }

  .hero-header-block,
  .hero-copy { text-align: left; }

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

  .yellow-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .banner-right { justify-content: flex-start; }

  .product-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-menu,
  .header-cta { display: none; }

  .hamburger-btn { display: flex; }
}

@media (max-width: 768px) {
  /* Cinematic hero mobile */
  .hero-section.hero-cinematic {
    min-height: auto;
  }

  .hero-ring-wrap {
    width: min(460px, 92vw);
    height: min(460px, 92vw);
    transform: translate(-50%, -54%);
  }

  .hero-cinematic-content {
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 40px;
    flex: none;
  }

  .hero-cinematic-h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-cinematic-desc .hero-br-desk {
    display: none;
  }

  .hero-features-strip { display: none; }

  /* Old hero mobile */
  .hero-section,
  .hero-section.hero-centered {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 36px;
  }

  .hero-center-composition { min-height: 300px; }

  .hero-platform-3d { height: 300px; }

  .hero-devices-cluster { padding-bottom: 36px; }

  .cluster-device.device-center {
    height: 230px;
    max-height: 230px;
  }

  .cluster-device.device-left,
  .cluster-device.device-right {
    height: 180px;
    max-height: 180px;
  }

  .hero-actions-centered,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-main,
  .hero-btn-sec {
    width: 100%;
    justify-content: center;
  }

  .hero-mini-benefits { flex-direction: column; }

  .mini-benefit-item { width: 100%; }

  .benefits-grid,
  .products-grid { grid-template-columns: 1fr; }

  .card-title { min-height: 0; }

  .comparison-table-desktop { display: none; }
  .mobile-compare-cards { display: flex; }

  .category-white-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-pills { width: 100%; }

  .mobile-bottom-nav { display: block; }

  body { padding-bottom: 62px; }

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

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Cinematic hero small mobile */
  .hero-ring-wrap {
    width: min(320px, 88vw);
    height: min(320px, 88vw);
  }

  .hero-header-block .hero-h1,
  .hero-h1 { font-size: 1.85rem; }

  .hero-center-composition { min-height: 250px; }
  .hero-platform-3d { height: 250px; }

  .cluster-device.device-center {
    height: 190px;
    max-height: 190px;
  }

  .cluster-device.device-left,
  .cluster-device.device-right {
    height: 150px;
    max-height: 150px;
  }

  .section-title { font-size: 1.55rem; }
  .bestsellers-title { font-size: 1.4rem; }
}


@media (max-width: 768px) {
  .products-section .container > div[style*="grid-template-columns: 1fr 1fr"],
  .products-section .container > div[style*="repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

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

/* ==========================================================================
   NEW BEST SELLERS SECTION & PRODUCT CARDS (Design Mockup)
   ========================================================================== */
.bestsellers-section {
  padding: 50px 0 60px;
  position: relative;
}

.bestsellers-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .bestsellers-header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .bestsellers-view-all {
    align-self: center;
  }
}

.bestsellers-title-wrap {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.bestsellers-title {
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  display: inline-block;
  max-width: 100%;
  text-transform: uppercase;
  margin: 0;
}

.bestsellers-title .accent-sellers {
  position: relative;
  display: inline-block;
  color: #ff6a00;
}

.bestsellers-title .accent-sellers::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff6a00;
  border-radius: 2px;
}

.bestsellers-view-all {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.bestsellers-view-all:hover {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #ffffff;
}

/* Category Filter Pills */
.bestsellers-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bestsellers-filter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  margin-right: 6px;
}

.bestsellers-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bestsellers-pill:hover,
.bestsellers-pill.active {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(255, 106, 0, 0.35);
}

/* New Product Cards Grid */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

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

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

/* Individual Card (Clean design as in mockup) */
.bs-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.bs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Badge top-left */
.bs-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ff5722;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(255, 87, 34, 0.3);
}

/* Card Image */
.bs-img-wrap {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 10px;
  overflow: hidden;
}

.bs-img-wrap img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.bs-card:hover .bs-img-wrap img {
  transform: scale(1.06);
}

/* Title */
.bs-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.35;
}

/* Rating */
.bs-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.bs-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.bs-rating-count {
  font-size: 0.82rem;
  color: #64748b;
}

/* Price */
.bs-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.bs-price-current {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.bs-price-old {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Button */
.bs-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff5722;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: auto;
  border: none;
}

.bs-btn-cart:hover {
  background: #e64a19;
  color: #ffffff;
}

.bs-sub-link {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 8px;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.bs-sub-link:hover {
  color: #ff5722;
}

/* ==========================================================================
   SPECIAL OFFER BANNER (Design Mockup)
   ========================================================================== */
.bs-special-offer-banner {
  background: linear-gradient(135deg, #0f1c3f 0%, #080f24 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-top: 10px;
}

.bs-banner-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.bs-gift-icon {
  font-size: 3.2rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(255, 106, 0, 0.4));
  animation: giftBounce 3s ease-in-out infinite;
}

@keyframes giftBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bs-banner-texts {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bs-banner-tag {
  color: #ff7a00;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.bs-banner-h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 4px 0;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.bs-banner-sub {
  color: #94a3b8;
  font-size: 0.92rem;
  margin: 0;
}

.bs-banner-btn {
  background: #ff5722;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}

.bs-banner-btn:hover {
  background: #e64a19;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
  color: #ffffff;
}

@media (max-width: 860px) {
  .bs-special-offer-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 20px;
  }
  .bs-banner-left {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .bs-banner-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bs-banner-h3 {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   NEW PRODUCT DETAIL PAGE DESIGN (Mockup: AEROFLOW MAX Style)
   ========================================================================== */
.pdp-white-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 36px;
  margin-bottom: 48px;
}

.pdp-breadcrumbs {
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pdp-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.pdp-breadcrumbs a:hover {
  color: #ff5722;
}

.pdp-breadcrumbs span.current {
  color: #0f172a;
  font-weight: 600;
}

/* 2-Column Product Grid */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 960px) {
  .pdp-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .pdp-white-card {
    padding: 20px;
  }
}

/* Left Gallery */
.pdp-gallery {
  display: flex;
  flex-direction: column;
}

.pdp-main-img-box {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  position: relative;
}

.pdp-main-img-box img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.pdp-main-img-box:hover img {
  transform: scale(1.04);
}

/* Right Info Column */
.pdp-info {
  display: flex;
  flex-direction: column;
}

.pdp-brand-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff5722;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pdp-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin: 0 0 6px 0;
  overflow-wrap: break-word;
}

@media (max-width: 420px) {
  .pdp-title {
    font-size: 1.7rem;
  }
}

.pdp-subtitle {
  font-size: 1.05rem;
  color: #475569;
  font-weight: 500;
  margin: 0 0 14px 0;
}

/* Rating */
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pdp-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.pdp-rating-text {
  font-size: 0.88rem;
  color: #475569;
  font-weight: 600;
}

/* Price */
.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pdp-price-old {
  font-size: 1.05rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.pdp-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: #ff5722;
}

.pdp-discount-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Description */
.pdp-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* CTA Buttons */
.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.pdp-btn-primary {
  background: #ff5722;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 28px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35);
}

.pdp-btn-primary:hover {
  background: #e64a19;
  color: #ffffff;
  transform: translateY(-2px);
}

.pdp-btn-secondary {
  background: #1e293b;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pdp-btn-secondary:hover {
  background: #0f172a;
  color: #ffffff;
}

.pdp-shipping-note {
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 20px;
}

/* Trust Badges 2x2 */
.pdp-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}

/* WHY THIS PRODUCT SECTION */
.pdp-why-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.pdp-section-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.pdp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.pdp-why-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.pdp-why-item:hover {
  transform: translateY(-3px);
}

.pdp-why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pdp-why-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.pdp-why-content p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* CUSTOMER REVIEWS SECTION */
.pdp-reviews-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.pdp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .pdp-reviews-grid {
    grid-template-columns: 1fr;
  }
}

.pdp-review-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pdp-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pdp-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #334155;
  font-weight: 700;
}

.pdp-review-stars {
  color: #f59e0b;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pdp-review-quote {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.pdp-review-text {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 12px 0;
  flex: 1;
}

.pdp-review-author {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Specs & Flavors in PDP */
.pdp-specs-box {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 28px;
  margin-top: 36px;
}

.pdp-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 680px) {
  .pdp-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pdp-spec-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
}

.pdp-spec-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
}

.pdp-spec-val {
  font-size: 1rem;
  color: #0f172a;
  font-weight: 700;
  margin-top: 4px;
}
