/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #030305;
  --bg-card:     #0a0a10;
  --accent:      #e2f411;
  --accent-dim:  #b8c50d;
  --text:        #ffffff;
  --text-muted:  #8a8a9a;
  --text-mut_2:  #f5e5b3;
  --gold:        #c9a84c;
  --gold-muted:  #7a6130;
  --input-bg:    #ffffff;
  --input-text:  #1a1a1a;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-glow: 0 0 60px rgba(226, 244, 17, 0.12);
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:  Georgia, "Times New Roman", Times, serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-system);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

/* --- Smoky Ambient Background (CSS only, zero images) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%,  rgba(226,244,17,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 80%,  rgba(100,80,200,0.10)  0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 50%,  rgba(20,10,60,0.55)    0%, transparent 80%),
    radial-gradient(ellipse 80% 40% at 10% 90%,  rgba(201,168,76,0.06)  0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* --- Layout --- */
.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 16px 0 40px;
}

.card {
  width: 100%;
  max-width: 450px;
  padding: 0 20px;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(226,244,17,0.35);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

/* --- Hero / Headline --- */
.hero {
  text-align: center;
  padding-top: 28px;
}

.headline {
  font-size: clamp(1.55rem, 5.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text);
}

.brand-name {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent);
  display: inline-block;
  font-size: 1.15em;
  letter-spacing: 0.01em;
}

.subheadline {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 360px;
  margin: 0 auto;
}

/* --- Price Block --- */
.price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 24px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.4);
}

.price-new {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.price-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(226,244,17,0.12);
  color: var(--accent);
  border: 1px solid rgba(226,244,17,0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.price-block--badge-only {
  justify-content: center;
}

/* --- Secondary Price Row --- */
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 24px 0 14px;
  padding: 0 4px;
}

.price-row-old {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.4);
}

.price-row-new {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(226,244,17,0.35);
}

.product-image-wrap--secondary {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* --- Product Image --- */
.product-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.product-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  /* box-shadow:
    0 0 0 1px rgba(226,244,17,0.08),
    0 8px 32px rgba(0,0,0,0.6),
    0 0 80px rgba(226,244,17,0.08); */
  position: relative;
  z-index: 1;
}

.phones-image {
  width: 15%;
  position: relative;
  z-index: 1;
}

.image-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(226,244,17,0.18) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

/* --- Trust Row --- */
.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 28px;
  padding: 14px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--accient);
  text-align: center;
  flex: 1;
}

.trust-icon {
  font-size: 1.1rem;
}

/* --- Form Section --- */
.form-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 24px 20px 28px;
}

.form-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.form-scarcity {
  font-size: 0.8rem;
  text-align: center;
  color: rgba(226, 244, 17, 0.55);
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-bottom: 18px;
}

.field-group {
  margin-bottom: 14px;
}

.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  background: var(--input-bg);
  color: var(--input-text);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-system);
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder {
  color: #9a9a9a;
}

input[type="text"]:focus,
input[type="tel"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226,244,17,0.15);
}

input[type="text"].error,
input[type="tel"].error {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255,77,77,0.12);
}

/* --- Submit Button --- */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  margin-top: 20px;
  background: var(--accent);
  color: #0a0a00;
  font-family: var(--font-system);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.submit-btn:hover {
  background: #eeff33;
  box-shadow: 0 4px 24px rgba(226,244,17,0.35);
}

.submit-btn:active {
  transform: scale(0.98);
}

.submit-btn:disabled {
  background: #555;
  color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.submit-btn:hover:not(:disabled) .btn-arrow {
  transform: translateX(4px);
}

/* --- Form Disclaimer --- */
.form-disclaimer {
  margin-top: 12px;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  opacity: 0.7;
}

/* --- Responsive tweaks for very small screens --- */
@media (max-width: 360px) {
  .card { padding: 0 14px; }
  .headline { font-size: 1.4rem; }
  .trust-item { font-size: 0.62rem; }
  .form-section { padding: 20px 14px 22px; }
}

/* --- Desktop: constrain to 450px, center --- */
@media (min-width: 451px) {
  .page-wrapper {
    padding: 32px 20px 60px;
  }
}

/* --- Section Divider (form → reviews) --- */
.section-divider {
  margin: 32px 0 28px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(226, 244, 17, 0.18) 30%,
    rgba(226, 244, 17, 0.18) 70%,
    transparent
  );
}

/* --- Chat Reviews Slider --- */
.reviews-section {
  margin-top: 0;
  margin-bottom: 28px;
}

.reviews-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

/* The scrollable track */
.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* iOS momentum */
  scrollbar-width: none;             /* Firefox */
  gap: 12px;
  padding-bottom: 4px;               /* room for box-shadow */

  /* Negative margin trick: let slides bleed edge-to-edge
     while the card still has its 20px side padding */
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Hide scrollbar — WebKit */
.slider-track::-webkit-scrollbar {
  display: none;
}

/* Each slide */
/* Контейнер слайдера */
.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  width: 100%;
  border-radius: 16px;
}

/* Кожен окремий слайд */
.slide {
  flex: 0 0 100%; /* Кожен слайд займає строго 100% ширини контейнера */
  max-width: 100%;
  scroll-snap-align: center;
  box-sizing: border-box;
}

/* Картинка всередині слайда */
.slide-img {
  width: 100%;
  height: auto;
  max-height: 550px; /* Обмеження по висоті, щоб картинка не була гігантською */
  object-fit: cover;  /* Акуратне кадрування без спотворення пропорцій */
  border-radius: 16px;
  display: block;
}

/* Navigation dots row */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Active dot: pill shape in accent yellow */
.dot-active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
  transform: none;
}

/* On wider viewports keep the slider centred */
@media (min-width: 451px) {
  .slide {
    flex: 0 0 78%;
  }
}

/* --- FAQ Accordion --- */
.faq-section {
  margin-bottom: 8px;
}

.faq-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(226, 244, 17, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(226, 244, 17, 0.38);
  box-shadow: 0 0 0 1px rgba(226, 244, 17, 0.08);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-system);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
}

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

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

/* Arrow icon */
.faq-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

/* Answer panel — uses max-height animation for smooth slide */
.faq-answer {
  white-space: pre-line;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  padding: 0 16px;
}

/* display:block is set via JS by removing [hidden]; CSS drives the motion */
.faq-answer:not([hidden]) {
  max-height: 300px;  /* safely larger than any answer */
  padding: 0 16px 16px;
}

/* Override UA [hidden] so we can still animate */
.faq-answer[hidden] {
  display: block !important;
  visibility: visible;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 12px;
}

/* --- Live Order Notification Toast --- */
#notification-toast {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 9999;
  max-width: 300px;
  width: calc(100vw - 32px);

  /* Glassmorphism */
  background: rgba(26, 26, 31, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(226, 244, 17, 0.25);
  border-radius: 12px;
  padding: 11px 14px;

  /* Typography */
  font-size: 0.78rem;
  line-height: 1.45;
  color: #e8e8f0;
  font-family: var(--font-system);

  /* Subtle left accent bar */
  box-shadow:
    inset 3px 0 0 rgba(226, 244, 17, 0.55),
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.4);

  /* Animation state machine via opacity + transform */
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.38s;
  visibility: hidden;
  pointer-events: none;
}

/* Fully hidden (default) — no layout space consumed */
.toast-hidden {
  opacity: 0 !important;
  transform: translateY(12px) !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Visible state — JS adds this class */
.toast-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s !important;
  pointer-events: auto !important;
}

/* Inner layout: icon + text */
.toast-inner {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.toast-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.45;
  margin-top: 1px;
}

/* .toast-body {} */

.toast-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.toast-message {
  display: block;
  color: #d8d8e8;
}

.toast-time {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 4px;
  opacity: 0.75;
}

/* Cap width on desktop so it never overlaps the card badly */
@media (min-width: 451px) {
  #notification-toast {
    max-width: 280px;
    width: 280px;
  }
}

/* --- Site Footer --- */
.site-footer {
  text-align: center;
  padding: 20px 20px 28px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: rgba(226, 244, 17, 0.7);
  text-decoration-color: rgba(226, 244, 17, 0.4);
  outline: none;
}

.footer-link:active {
  color: var(--accent);
}

/* --- Reduce motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* =============================================
   FRAGRANCE DESCRIPTION & OLFACTORY PYRAMID
   Append after .trust-icon block / before .form-section
   ============================================= */
.fragrance-section {
  margin-bottom: 28px;
  padding: 22px 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fragrance-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(226,244,17,0.25);
  margin-bottom: 12px;
}

.fragrance-description {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mut_2);
  text-align: center;
  max-width: 380px;
  margin: 0 auto 20px;
}

.pyramid-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pyramid-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pyramid-card:hover {
  border-color: rgba(226,244,17,0.4);
  background: rgba(226,244,17,0.04);
}

.pyramid-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.15rem;
  border-radius: 50%;
  background: rgba(226,244,17,0.08);
  border: 1px solid rgba(226,244,17,0.25);
  box-shadow: 0 0 18px rgba(226,244,17,0.12);
}

.pyramid-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.pyramid-level {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.pyramid-notes {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text);
}

/* --- Mobile fine-tuning (320px–450px) --- */
@media (max-width: 380px) {
  .fragrance-section  { padding: 18px 14px 20px; }
  .fragrance-title    { font-size: 0.92rem; }
  .fragrance-description { font-size: 0.82rem; }
  .pyramid-card        { padding: 12px 10px; gap: 10px; }
  .pyramid-icon        { width: 34px; height: 34px; font-size: 1rem; }
  .pyramid-level       { font-size: 0.72rem; }
  .pyramid-notes       { font-size: 0.78rem; }
}

    .unboxing-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px 20px 20px;
      gap: 24px;
    }

    .unboxing-title {
      text-align: center;
      font-size: clamp(16px, 4.5vw, 22px);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.04em;
      text-align: center;
      margin: 0;
    }

    .unboxing-wrapper {
      width: 100%;
      max-width: 360px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(226, 244, 17, 0.28);
      box-shadow:
        0 0 0 1px rgba(226, 244, 17, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(226, 244, 17, 0.08);
    }

    .unboxing-video {
      display: block;
      width: 100%;
      height: auto;
      background: #0a0a0c;
    }
    .chars-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px 20px 20px;
      gap: 20px;
    }

    .chars-title {
      font-size: clamp(17px, 4.5vw, 22px);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.03em;
      text-align: center;
      margin: 0;
    }

    .chars-table {
      width: 100%;
      max-width: 460px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(226, 244, 17, 0.14);
      box-shadow:
        0 0 0 1px rgba(226, 244, 17, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 48px rgba(226, 244, 17, 0.05);
    }

    .chars-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 14px 20px;
      background: rgba(14, 14, 18, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: background 0.18s ease;
    }

    .chars-row:nth-child(even) {
      background: rgba(22, 22, 28, 0.72);
    }

    .chars-row:hover {
      background: rgba(226, 244, 17, 0.04);
    }

    .chars-row--last {
      border-bottom: none;
    }

    .chars-label {
      flex: 0 0 140px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.5;
    }

    .chars-value {
      flex: 1;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.55;
      text-align: right;
    }

    .chars-sub {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.42);
      margin-top: 2px;
    }

    .chars-value--accent {
      color: #e2f411;
      letter-spacing: 0.02em;
    }

    @media (max-width: 400px) {
      .chars-row {
        flex-direction: column;
        gap: 4px;
        padding: 14px 16px;
      }
      .chars-label {
        flex: none;
      }
      .chars-value {
        text-align: left;
      }
    }

  /* <!-- ── Spacing tightening overrides ── --> */
    .section-divider {
      margin: 16px 0 14px;
    }

    .reviews-section {
      margin-bottom: 16px;
    }

/* Contact block styles  */
    .contact-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 28px 20px 24px;
      gap: 16px;
    }

    .contact-title {
      font-size: clamp(15px, 4vw, 19px);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.04em;
      text-align: center;
      margin: 0;
    }

    .contact-card {
      width: 100%;
    }

    .unboxing-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px 20px 20px;
      gap: 24px;
    }

    .unboxing-title {
      text-align: center;
      font-size: clamp(16px, 4.5vw, 22px);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.04em;
      text-align: center;
      margin: 0;
    }

    .unboxing-wrapper {
      width: 100%;
      max-width: 360px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(226, 244, 17, 0.28);
      box-shadow:
        0 0 0 1px rgba(226, 244, 17, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(226, 244, 17, 0.08);
    }

    .unboxing-video {
      display: block;
      width: 100%;
      height: auto;
      background: #0a0a0c;
    }

    .chars-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px 20px 20px;
      gap: 20px;
    }

    .chars-title {
      font-size: clamp(17px, 4.5vw, 22px);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.03em;
      text-align: center;
      margin: 0;
    }

    .chars-table {
      width: 100%;
      max-width: 460px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(226, 244, 17, 0.14);
      box-shadow:
        0 0 0 1px rgba(226, 244, 17, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 48px rgba(226, 244, 17, 0.05);
    }

    .chars-row {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 14px 20px;
      background: rgba(14, 14, 18, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: background 0.18s ease;
    }

    .chars-row:nth-child(even) {
      background: rgba(22, 22, 28, 0.72);
    }

    .chars-row:hover {
      background: rgba(226, 244, 17, 0.04);
    }

    .chars-row--last {
      border-bottom: none;
    }

    .chars-label {
      flex: 0 0 140px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.5;
    }

    .chars-value {
      flex: 1;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.55;
      text-align: right;
    }

    .chars-sub {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.42);
      margin-top: 2px;
    }

    .chars-value--accent {
      color: #e2f411;
      letter-spacing: 0.02em;
    }

    @media (max-width: 400px) {
      .chars-row {
        flex-direction: column;
        gap: 4px;
        padding: 14px 16px;
      }
      .chars-label {
        flex: none;
      }
      .chars-value {
        text-align: left;
      }
    }

    .section-divider {
      margin: 16px 0 14px;
    }

    .reviews-section {
      margin-bottom: 16px;
    }

    .contact-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 28px 20px 24px;
      gap: 16px;
    }

    .contact-title {
      font-size: clamp(15px, 4vw, 19px);
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 0.04em;
      text-align: center;
      margin: 0;
    }

    .contact-card {
      width: 100%;
      max-width: 460px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(226, 244, 17, 0.14);
      background: rgba(14, 14, 18, 0.72);
      box-shadow:
        0 0 0 1px rgba(226, 244, 17, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(226, 244, 17, 0.04);
    }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .contact-row:last-child {
      border-bottom: none;
    }

    .contact-row-icon {
      flex-shrink: 0;
      font-size: 20px;
      line-height: 1.4;
    }

    .contact-row-body {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .contact-row-label {
      text-transform: lowercase;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
    }

    .contact-row-value {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.5;
    }

    .contact-row-value a {
      color: #e2f411;
      text-decoration: none;
      transition: opacity 0.18s ease;
    }

    .contact-row-value a:hover {
      opacity: 0.78;
      text-decoration: underline;
      text-decoration-color: rgba(226, 244, 17, 0.4);
      text-underline-offset: 3px;
    }

    .contact-hours-highlight {
      color: #e2f411;
      font-weight: 700;
    }

    .contact-reassurance {
      width: 100%;
      max-width: 460px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: rgba(226, 244, 17, 0.05);
      border: 1px solid rgba(226, 244, 17, 0.12);
      border-radius: 12px;
      padding: 14px 18px;
    }

    .contact-reassurance-icon {
      flex-shrink: 0;
      font-size: 18px;
      line-height: 1.4;
    }

    .contact-reassurance-text {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
    }

    .contact-reassurance-text strong {
      color: rgba(255, 255, 255, 0.88);
      font-weight: 600;
    }

    .discount-badge {
      text-align: center;
      white-space: pre-line;
      width: max-content;
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      /* background: rgba(226,244,17,0.12); */
      color: var(--accent);
      /* border: 1px solid rgba(226,244,17,0.3); */
      padding: 4px 10px;
      border-radius: 100px;
      position: absolute;
      top: 17px;  
      left: 68%;           
      transform: translateX(-50%);
      z-index: 10
    }

    .discount-badge_2 {
      text-transform: lowercase;
      font-size: 0.4rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      /* background: rgba(226,244,17,0.12); */
      color: #ff9900;
      /* border: 1px solid rgba(226,244,17,0.3); */
      padding: 4px 10px;
      border-radius: 100px;
      position: absolute;
      top: 98px;  
      left: 131;           
      transform: translateX(-50%);
      z-index: 9
    }

    .discount-badge_3 {
      text-transform: lowercase;
      font-size: 0.4rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      /* background: rgba(226,244,17,0.12); */
      color: #ff9900;
      /* border: 1px solid rgba(226,244,17,0.3); */
      padding: 4px 10px;
      border-radius: 100px;
      position: absolute;
      top: 93px;  
      left: 85%;           
      transform: translateX(-50%);
      z-index: 9
    }

    /* ── Promo Timer Block ── */
    .promo-timer-block {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 16px 20px;
      margin: 20px 0;
      text-align: center;
      backdrop-filter: blur(10px);
    }

    .promo-timer-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: #e2f411; /* Акцентний жовтий/зелений колір */
      border-radius: 50%;
      box-shadow: 0 0 10px #e2f411;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(0.95); opacity: 0.8; }
      50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px #e2f411; }
      100% { transform: scale(0.95); opacity: 0.8; }
    }

    .promo-timer-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Countdown Grid */
    .countdown-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .time-card {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(226, 244, 17, 0.2);
      border-radius: 10px;
      padding: 8px 12px;
      min-width: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .time-value {
      font-size: 1.4rem;
      font-weight: 800;
      color: #e2f411; /* Колір таймера */
      font-family: monospace, sans-serif;
      line-height: 1.1;
    }

    .time-label {
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 4px;
      text-transform: lowercase;
    }

    .time-separator {
      font-size: 1.2rem;
      font-weight: bold;
      color: #e2f411;
      margin-bottom: 12px;
    }

    .text-emoji {
      display: inline-block;
      height: 3em;           /* Висота дорівнює 1.2 розміру поточного шрифту */
      width: auto;
      vertical-align: middle;  /* Вирівнювання по центру текстового рядка */
      margin: 0 2px;          /* Невеликий відступ ліворуч і праворуч */
    }

    /* Контейнер із рамкою та напівпрозорим фоном */
    .zsu-discount-block {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 24px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(226, 244, 17, 0.3); /* Рамка з акцентним кольором */
      border-radius: var(--radius-md, 12px);
      text-align: center;
    }

    /* Стилі для заголовка всередині рамки */
    .zsu-title {
      display: block;
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--accient, #e2f411); /* Жовтий/зелений акцентний колір */
      letter-spacing: 0.05em;
      margin-bottom: 6px;
      text-transform: uppercase;
    }

    /* Основний текст */
    .zsu-text {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.4;
      margin: 0;
    }

    .why-section {
      margin-bottom: 24px;
      padding: 22px 18px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(226, 244, 17, 0.15);
      border-radius: var(--radius-lg);
    }

    .why-title {
      font-size: 1rem;
      font-weight: 700;
      text-align: center;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .why-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .why-card {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 14px;
      background: rgba(14, 14, 18, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
    }

    .why-icon {
      font-size: 1.25rem;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .why-content h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 2px;
    }

    .why-content p {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.45;
    }

    /*  */
    /*  */
    /*  */
    /* Стилі для блоку Акції */
    .promotions-section {
      padding: 60px 20px;
      background-color: #0b0f19; /* Темний фоновий колір сайту */
      color: #ffffff;
      text-align: center;
    }

    .promotions-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .promotions-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .promotions-subtitle {
      color: #9ca3af;
      font-size: 1.1rem;
      margin-bottom: 40px;
    }

    .promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    /* Картка акції */
    .promo-card {
      background: #111827;
      border: 1px solid #1f2937;
      border-radius: 16px;
      padding: 35px 25px 30px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .promo-card:hover {
      transform: translateY(-5px);
      border-color: #3b82f6;
      box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    }

    /* Бейдж акції */
    .promo-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #2563eb;
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 4px 16px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .promo-name {
      font-size: 1.4rem;
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 12px;
    }

    .promo-desc {
      color: #9ca3af;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    /* Ціни */
    .promo-price-box {
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .old-price {
      color: #6b7280;
      text-decoration: line-through;
      font-size: 1.1rem;
    }

    .new-price {
      color: #3b82f6;
      font-size: 1.8rem;
      font-weight: 700;
    }

    /* Кнопка */
    .promo-btn {
      display: inline-block;
      background: #2563eb;
      color: #ffffff;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .promo-btn:hover {
      background: #1d4ed8;
    }

    /* Спеціальні стилі для ЗСУ картки */
    .zsu-card {
      border-color: #15803d;
      background: linear-gradient(180deg, #111827 0%, #062312 100%);
    }

    .zsu-card:hover {
      border-color: #22c55e;
      box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
    }

    .zsu-badge {
      background: #16a34a;
    }

    .zsu-price {
      color: #22c55e;
    }

    .zsu-btn {
      background: #16a34a;
    }

    .zsu-btn:hover {
      background: #15803d;
    }
    
        /* ── Блок "Як ми працюємо" ── */
    .how-we-work-card {
      border: 1px solid rgba(255, 123, 0, 0.4);
      background: rgba(18, 18, 22, 0.6);
      border-radius: 16px;
      padding: 18px 16px;
      margin: 16px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .hww-title {
      color: #ff7b00;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
      text-align: center;
    }
    
    .hww-steps {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .hww-step {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .hww-num {
      width: 24px;
      height: 24px;
      background: #ff7b00;
      color: #000000;
      font-weight: 800;
      font-size: 13px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .hww-text {
      color: #e2e8f0;
      font-size: 13px;
      line-height: 1.4;
      text-align: left;
    }
    
    .hww-link {
      color: #0088cc;
      font-weight: 700;
      text-decoration: underline;
      transition: color 0.2s ease;
    }
    
    .hww-link:hover {
      color: #33a6ff;
    }

    /* Адаптивність для мобільних */
    @media (max-width: 600px) {
      .promotions-title {
        font-size: 1.8rem;
      }
      .promo-card {
        padding: 30px 20px 25px;
      }
    }