/* ============================================================
   ViLgrand VBH14072 — Landing Page Styles
   Brand palette: deep green #1C3D22 | cream #F0E8C8 | gold #C4A030
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #1A1A1A;
  background: #FAF6EE;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* === VARIABLES === */
:root {
  --orange:       #596c24;
  --orange-dark:  #445218;
  --orange-light: #e4ecc8;
  --orange-grad:  linear-gradient(to bottom right, #6d8644 0%, #263b1b 100%);
  --dark:         #1A1A1A;
  --gray:         #555550;
  --light-gray:   #888880;
  --bg:           #FAF6EE;
  --bg-alt:       #fbf6ec;
  --border:       #c5a562;
  --green:        #596c24;
  --gold:         #c5a562;
  --gold-light:   #fbf6ec;
  --max-w:        600px;
}

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

/* === SECTION ALTERNATION === */
.section-alt { background: var(--bg-alt); }

/* === EYEBROW === */
.eyebrow-wrap { text-align: center; margin-bottom: 8px; }
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--orange); background: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 4px 12px; border-radius: 20px;
}
.eyebrow-green {
  color: var(--green); background: #E8F5E9;
}

/* === SECTION TITLES === */
.section-title {
  font-size: 28px; font-weight: 800;
  line-height: 1.2; text-align: center;
  margin-bottom: 12px; color: #111;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 15px; color: var(--gray);
  text-align: center; line-height: 1.65;
  margin-bottom: 20px;
}

/* === FADE-UP ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  height: 60px;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 12px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header-icon-btn {
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.header-phone-btn {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.site-logo {
  font-size: 19px; font-weight: 900; letter-spacing: -0.5px; color: #111;
}
.site-logo span { color: var(--orange); }
.site-logo-sub {
  font-size: 9px; font-weight: 400; color: var(--light-gray);
  display: block; line-height: 1; margin-top: -1px; letter-spacing: 0.3px;
}

/* ================================================================
   MOBILE MENU
   ================================================================ */
.menu-overlay {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.5);
}
.menu-overlay.open { display: block; }

.mobile-menu {
  position: fixed; top: 0; left: -290px; bottom: 0;
  width: 280px; z-index: 200;
  background: var(--bg);
  transition: left 0.28s ease;
  overflow-y: auto;
  padding-bottom: 24px;
  box-shadow: 2px 0 20px rgba(0,0,0,0.15);
}
.mobile-menu.open { left: 0; }
body.menu-open { overflow: hidden; }

.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-head .site-logo { font-size: 17px; }
.menu-close-btn {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--bg-alt);
}
.mobile-menu-list { list-style: none; padding: 4px 0; }
.mobile-menu-list li { border-bottom: 1px solid var(--border); }
.menu-link { display: block; padding: 9px 20px; font-size: 15px; font-weight: 500; color: #111; }
.mobile-menu-contacts {
  padding: 16px 20px;
  margin-top: 8px;
}
.mobile-menu-contacts-title {
  font-size: 11px; color: var(--light-gray);
  text-transform: uppercase; letter-spacing: 0.6px;
  display: block; margin-bottom: 8px;
}
.mobile-menu-address {
  display: block; font-size: 13px; color: var(--gray); margin-bottom: 6px;
}
.mobile-menu-phone {
  display: block; font-size: 16px; font-weight: 700; color: #111; margin-bottom: 8px;
}
.menu-order-btn {
  display: block; width: calc(100% - 32px); margin: 16px 16px 0;
  background: var(--orange-grad); color: #fff;
  text-align: center; padding: 14px;
  border-radius: 10px; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
}

/* ================================================================
   HERO
   ================================================================ */
.hero-img-placeholder {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  background: #EFEFEF; position: relative; overflow: hidden;
}
.hero-img-placeholder img { width: 100%; display: block; }

.img-ph {
  background: linear-gradient(145deg, #EDE5C2 0%, #D8CE98 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 20px; gap: 12px; width: 100%;
  min-height: 320px;
}
.img-ph-icon { display: flex; align-items: center; justify-content: center; opacity: 0.85; }
.img-ph-label {
  font-size: 13px; color: #999; text-align: center;
  line-height: 1.5; max-width: 240px;
}

.hero-hit-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--dark); color: #fff;
  font-size: 11px; font-weight: 800; line-height: 1.2;
  padding: 6px 10px; border-radius: 10px; text-align: center;
  border: 1.5px solid var(--gold);
  box-shadow: 0 2px 8px rgba(28,61,34,0.4);
}

/* ================================================================
   PRICE + TIMER
   ================================================================ */
.price-section { background: var(--bg); padding: 20px 16px 0; }
.price-inner { max-width: var(--max-w); margin: 0 auto; }
.price-timer-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }

.price-col { flex: 1; }
.price-line-1 { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.old-price { font-size: 16px; color: #999; text-decoration: line-through; font-weight: 400; }
.discount-badge {
  background: var(--orange-grad); color: #fff;
  font-size: 13px; font-weight: 800;
  padding: 2px 8px; border-radius: 6px;
}
.current-price {
  font-size: 38px; font-weight: 900; color: #DC2E32;
  line-height: 1; letter-spacing: -1.5px;
}
.economy { font-size: 13px; color: var(--gold); margin-top: 4px; font-weight: 700; }

.timer-col { text-align: center; flex-shrink: 0; }
.timer-title { font-size: 11px; color: var(--gray); margin-bottom: 6px; }
.countdown-timer { display: flex; gap: 4px; justify-content: center; }
.countdown-box {
  display: flex; flex-direction: column; align-items: center;
  background: var(--gold-light); border-radius: 8px; padding: 6px 8px; min-width: 44px;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.countdown-value {
  font-size: 22px; font-weight: 800; color: var(--orange);
  line-height: 1; letter-spacing: -1px; display: block;
}
.countdown-value.pop { animation: cPop 0.15s ease; }
@keyframes cPop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }
.countdown-label { font-size: 9px; color: var(--gray); margin-top: 2px; }

.price-feature-text {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 12px 0 0; font-size: 13px; color: var(--gray); line-height: 1.5;
}
.price-feature-text svg { flex-shrink: 0; margin-top: 1px; }

/* ================================================================
   CTA BUTTONS & BLOCKS
   ================================================================ */
.hero-cta-block { padding: 16px 16px 0; background: var(--bg); }
.hero-cta-btn {
  display: block; width: 100%; text-align: center;
  background: var(--orange-grad); color: #fff;
  font-size: 16px; font-weight: 800; padding: 17px 16px;
  border-radius: 12px; letter-spacing: 0.3px;
  animation: btnPulse 2.5s infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(124,152,76,0.35); }
  50%      { box-shadow: 0 6px 28px rgba(124,152,76,0.55); }
}
.hero-cta-stock {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; color: var(--gray); margin-top: 10px; padding-bottom: 16px;
}
.hero-cta-stock-badge {
  background: var(--orange-grad); color: #fff;
  font-weight: 700; padding: 1px 8px; border-radius: 10px;
}

.cta-block { padding: 24px 16px; }
.btn-primary {
  display: block; width: 100%; text-align: center;
  background: var(--orange-grad); color: #fff;
  font-size: 15px; font-weight: 800; padding: 15px 16px;
  border-radius: 10px; letter-spacing: 0.2px;
  box-shadow: 0 3px 12px rgba(124,152,76,0.35);
  border: none; cursor: pointer;
}
.stock-text {
  text-align: center; font-size: 13px; color: var(--gray); margin-top: 8px;
}
.stock-text .highlight {
  background: var(--orange-grad); color: #fff;
  font-weight: 700; padding: 1px 8px; border-radius: 10px;
}

/* ================================================================
   TRUST BADGES
   ================================================================ */
.trust-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; padding: 12px 16px;
  background: var(--bg);
  max-width: var(--max-w);
  margin: 0 auto;
}
.trust-item {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 10px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.trust-icon { flex-shrink: 0; }
.trust-item-title { font-size: 12px; font-weight: 700; color: #111; line-height: 1.3; }
.trust-item-sub { font-size: 11px; color: var(--light-gray); margin-top: 2px; }

/* ================================================================
   PAIN POINTS
   ================================================================ */
.pain-section { padding: 32px 0; }
.pain-grid { display: flex; flex-direction: column; margin-bottom: 20px; }
.pain-card {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
  padding: 18px 0;
  background: transparent; border: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
}
.pain-card:last-child { border-bottom: none; }
.pain-card:nth-child(even) { flex-direction: row-reverse; }
.pain-card-img { flex-shrink: 0; display: block; }
.pain-card-img img { width: 130px; height: 130px; object-fit: cover; border-radius: 14px; display: block; }
.pain-card:nth-child(2) .pain-card-img img { object-position: 65% center; }
.pain-card-img-ph { flex-shrink: 0; width: 130px; height: 130px; border-radius: 14px; background: var(--gold-light); border: 1.5px dashed var(--gold); }
.pain-card-body { flex: 1; }
.pain-card-title { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.pain-card-sub { font-size: 13px; color: var(--gray); line-height: 1.5; }
.pain-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 36px; }
.pain-solution {
  background: var(--orange-grad); border-radius: 12px;
  padding: 20px; text-align: center; color: #fff;
  border: 1.5px solid var(--gold);
}
.pain-solution-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.8; margin-bottom: 8px;
}
.pain-solution-title { font-size: 21px; font-weight: 800; line-height: 1.3; margin-bottom: 6px; }
.pain-solution-sub { font-size: 13px; opacity: 0.9; line-height: 1.5; }

/* ================================================================
   7-В-1 SECTION
   ================================================================ */
.seven-section { padding: 32px 0; }
.attachments-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin: 20px 0;
}
.attach-item {
  background: var(--gold-light); border: 1.5px solid var(--gold); border-radius: 12px;
  padding: 16px 12px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.attach-item.featured {
  grid-column: span 2;
  flex-direction: row; text-align: left; gap: 14px;
  background: var(--gold-light); border-color: var(--gold);
  padding: 16px;
}
.attach-icon { display: flex; align-items: center; justify-content: center; }
.attach-num {
  font-size: 10px; font-weight: 700; color: var(--orange);
  background: var(--orange-light); padding: 2px 6px; border-radius: 10px;
}
.attach-label { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.attach-sub { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* ================================================================
   FEATURE (HELPER) SECTIONS
   ================================================================ */
.helper-section { padding: 32px 0; }
.helper-img-wrap { margin: 18px -16px; overflow: hidden; }
.helper-img-wrap img { width: 100%; display: block; }
.helper-img-wrap .img-ph { min-height: 220px; }
.helper-text {
  font-size: 14px; color: var(--gray); line-height: 1.7; margin-top: 4px;
}
.feature-badge {
  display: inline-block;
  background: var(--orange-grad); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 10px;
  border: 1.5px solid var(--gold);
}
.feature-list { list-style: none; margin: 14px 0 8px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--dark); line-height: 1.5;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-grad); color: #fff;
  font-size: 12px; font-weight: 900; flex-shrink: 0; margin-top: 0px;
}
.highlight-box {
  background: var(--gold-light); border: 1.5px solid var(--gold);
  border-radius: 12px; padding: 14px 16px; margin-top: 16px;
  display: flex; gap: 10px; align-items: flex-start;
}
.highlight-box-icon { flex-shrink: 0; display: flex; align-items: center; }
.highlight-box-title { font-size: 15px; font-weight: 800; color: var(--orange); }
.highlight-box-sub { font-size: 13px; color: var(--gray); margin-top: 2px; line-height: 1.5; }

/* ================================================================
   DISHES SECTION
   ================================================================ */
.dishes-section { padding: 32px 0; }
.dishes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0;
}
.dish-card {
  background: var(--gold-light); border: 1.5px solid var(--gold);
  border-radius: 12px; padding: 16px 12px; text-align: center;
}
.dish-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.dish-name { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 3px; }
.dish-sub { font-size: 11px; color: var(--light-gray); line-height: 1.4; }

/* ================================================================
   KIT SECTION
   ================================================================ */
.kit-section { padding: 32px 0 0; }
.kit-list-section { padding: 0 0 32px; background: #fff; }
.kit-list { list-style: none; }
.kit-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: #111; line-height: 1.5;
}
.kit-list li:last-child { border-bottom: none; }
.kit-num {
  color: var(--orange); font-weight: 800; flex-shrink: 0;
  min-width: 24px; font-size: 12px; text-align: center;
  background: var(--orange-light); border-radius: 6px;
  padding: 1px 4px; margin-top: 1px;
}
.kit-mission {
  font-size: 14px; color: var(--gray); text-align: center;
  margin-top: 20px; line-height: 1.65; background: var(--orange-light);
  border-radius: 12px; padding: 16px;
}

/* ================================================================
   SPECS
   ================================================================ */
.specs-section { padding: 32px 0; }
.specs-list { list-style: none; }
.specs-list li {
  display: flex; gap: 8px; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.specs-list li:last-child { border-bottom: none; }
.spec-dot { width: 5px; height: 5px; background: var(--orange-grad); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.spec-label { color: var(--gray); flex-shrink: 0; }
.spec-value { font-weight: 600; color: #111; }

/* ================================================================
   RATING
   ================================================================ */
.rating-section { padding: 32px 16px; background: var(--bg); text-align: center; }
.rating-label { font-size: 14px; color: var(--gray); margin-bottom: 10px; }
.stars-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 6px; }
.stars { font-size: 28px; color: #FFB800; letter-spacing: 2px; }
.rating-score { font-size: 34px; font-weight: 900; }
.rating-sub { font-size: 13px; color: var(--light-gray); margin-bottom: 16px; }
.sold-badge {
  display: inline-block; font-size: 15px; font-weight: 600;
  background: var(--gold-light); border: 1px solid var(--gold);
  padding: 10px 18px; border-radius: 10px; margin-bottom: 20px;
}
.sold-num { color: var(--dark); font-weight: 800; }
.trust-card {
  background: var(--gold-light); border: 1.5px solid var(--gold);
  border-radius: 12px; padding: 16px;
  text-align: left; font-size: 14px; color: var(--gray);
  line-height: 1.7; margin-bottom: 20px;
}
.trust-card p + p { margin-top: 8px; }

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-section { padding: 32px 0; }
.reviews-total {
  text-align: center; font-size: 14px; color: var(--gray); margin-bottom: 20px;
}
.review-card {
  background: var(--gold-light); border: 1.5px solid var(--gold); border-radius: 14px;
  padding: 18px; margin-bottom: 12px;
}
.review-header { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-grad); color: #fff;
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta { flex: 1; }
.review-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.review-verified { font-size: 11px; color: var(--green); display: block; margin-bottom: 3px; }
.review-stars-row { display: flex; align-items: center; gap: 8px; }
.review-stars { color: #FFB800; font-size: 13px; }
.review-date { font-size: 12px; color: var(--light-gray); }
.review-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.review-text { font-size: 14px; color: var(--gray); line-height: 1.65; }
.review-photos { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 12px; }
.review-photos img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; }

/* ================================================================
   WARRANTY
   ================================================================ */
.warranty-section { padding: 32px 0; }
.warranty-card {
  background: var(--gold-light); border: 1.5px solid var(--gold); border-radius: 14px; overflow: hidden;
}
.warranty-body { padding: 20px; }
.warranty-head {
  display: flex; gap: 12px; align-items: center; margin-bottom: 16px;
}
.warranty-shield { display: flex; align-items: center; }
.warranty-head-text strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.warranty-head-text span { font-size: 13px; color: var(--gray); }
.warranty-list { list-style: none; display: grid; gap: 10px; }
.warranty-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--dark); line-height: 1.55;
}
.wl-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange-grad); color: #fff;
  font-size: 11px; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

/* ================================================================
   CONTACT CARD
   ================================================================ */
.contact-card-block {
  background: var(--bg-alt); border-radius: 12px; padding: 16px; margin-top: 20px;
}
.contact-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 8px;
}
.contact-text { font-size: 14px; color: #111; line-height: 1.55; }
.contact-text-strong { font-weight: 700; }
.contact-icons { display: flex; gap: 12px; }
.contact-icon-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.contact-icon-img {
  width: 42px; height: 42px; border-radius: 12px; overflow: hidden;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.contact-icon-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-icon-label { font-size: 10px; color: var(--gray); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { padding: 32px 0; }
.faq-list { margin-top: 20px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question button {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; text-align: left;
}
.faq-question button span { font-size: 15px; font-weight: 600; color: #111; flex: 1; line-height: 1.4; }
.faq-icon { transition: transform 0.25s ease; flex-shrink: 0; color: var(--orange); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 0 16px;
  font-size: 14px; color: var(--gray); line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* ================================================================
   HOW TO ORDER
   ================================================================ */
.how-section { padding: 32px 0; }
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: flex; gap: 14px; align-items: flex-start; padding-bottom: 20px;
}
.how-step-left {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.how-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange-grad); color: #fff;
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.how-step-line {
  width: 2px; flex: 1; min-height: 20px; margin-top: 6px;
  background: var(--border);
}
.how-step:last-child .how-step-line { display: none; }
.how-card { flex: 1; padding-top: 4px; }
.how-card-head { display: flex; gap: 8px; align-items: center; margin-bottom: 5px; }
.how-card-icon { display: flex; align-items: center; }
.how-card-title { font-size: 15px; font-weight: 700; }
.how-card-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ================================================================
   ORDER FORM
   ================================================================ */
.order-section { padding: 32px 0; }
.order-title { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.order-subtitle {
  font-size: 14px; color: var(--gray); text-align: center;
  margin-bottom: 24px; line-height: 1.6;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark);
}
.form-group input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--gold); border-radius: 10px;
  font-size: 15px; color: var(--dark); background: var(--gold-light);
  outline: none; transition: border-color 0.2s;
  font-family: inherit;
}
.form-group input:focus { border-color: var(--orange); }
.order-btn {
  width: 100%; padding: 17px;
  background: var(--orange-grad); color: #fff;
  border: none; border-radius: 12px;
  font-size: 16px; font-weight: 800; cursor: pointer;
  letter-spacing: 0.3px; margin-top: 8px;
  font-family: inherit;
  animation: btnPulse 2.5s infinite;
}
.order-btn:disabled {
  background: #ccc; animation: none; cursor: not-allowed;
}
.order-form-note {
  font-size: 12px; color: var(--light-gray); text-align: center;
  margin-top: 12px; line-height: 1.5;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: linear-gradient(to bottom right, #4d6130 0%, #162210 100%); color: #fff; padding: 32px 16px 28px; }
.site-footer .container { padding: 0; }
.footer-logo { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.footer-logo span { color: rgba(255,255,255,0.75); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-block { margin-bottom: 20px; }
.footer-label {
  font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase;
  letter-spacing: 0.6px; margin-bottom: 8px; display: block;
}
.footer-address { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.footer-phone { font-size: 18px; font-weight: 700; color: #fff; }
.social-row { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s;
}
.social-link svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.footer-links {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; margin-top: 20px;
}
.footer-links button {
  background: none; border: none; cursor: pointer;
  text-align: left; font-size: 13px; color: rgba(255,255,255,0.6);
  padding: 0; text-decoration: underline; font-family: inherit;
}

/* ================================================================
   MODALS
   ================================================================ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.6);
  align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; width: 100%; max-width: var(--max-w);
  max-height: 85vh; border-radius: 20px 20px 0 0;
  padding: 24px 20px; overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: #f0f0f0; border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 20px; display: flex; align-items: center; justify-content: center; color: #555;
}
.modal-title { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.modal-body { font-size: 14px; color: var(--gray); line-height: 1.8; }
.modal-body h3 { font-size: 15px; font-weight: 700; color: #111; margin: 16px 0 8px; }
.modal-body ul { padding-left: 20px; margin: 6px 0; }
.modal-body li { margin-bottom: 6px; }
.modal-body p { margin-bottom: 10px; }

/* ================================================================
   STICKY BUY BAR
   ================================================================ */
.sticky-buy {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--bg); border-top: 2px solid var(--gold);
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-buy.visible { transform: translateY(0); }
.sticky-buy-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
}
.sticky-price-wrap { flex: 1; }
.sticky-price { font-size: 22px; font-weight: 900; }
.sticky-instock { display: block; font-size: 11px; color: var(--green); font-weight: 600; margin-top: 1px; }
.sticky-btn {
  background: var(--orange-grad); color: #fff;
  padding: 13px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 800; white-space: nowrap;
  text-decoration: none; display: block;
}
body.has-sticky { padding-bottom: 68px; }

/* ================================================================
   TOAST NOTIFICATIONS
   ================================================================ */
.toast-wrap {
  position: fixed; bottom: 80px; left: 16px; right: 16px;
  max-width: calc(var(--max-w) - 32px); margin: 0 auto; z-index: 1000;
  pointer-events: none;
}
.toast {
  background: var(--bg); border-radius: 12px;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.3s ease;
}
@keyframes toastIn {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.toast.hiding { animation: toastOut 0.3s ease forwards; }
@keyframes toastOut {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(16px); opacity: 0; }
}
.toast-icon { display: flex; align-items: center; }
.toast-content { flex: 1; }
.toast-name { font-size: 13px; font-weight: 700; }
.toast-sub { font-size: 12px; color: var(--gray); }
.toast-time { font-size: 11px; color: var(--light-gray); white-space: nowrap; }

/* ================================================================
   UA BADGE
   ================================================================ */
.ua-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: #E8F5E9; color: #2E7D32;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}

/* ================================================================
   RESULTS SLIDER
   ================================================================ */
.results-section { padding: 32px 0 24px; }
.results-track {
  display: flex; overflow-x: auto; gap: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 16px 4px;
  scrollbar-width: none;
  max-width: var(--max-w); margin: 0 auto;
}
.results-track::-webkit-scrollbar { display: none; }
.result-card {
  flex: 0 0 72%; scroll-snap-align: start;
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.result-card .img-ph,
.result-card img { aspect-ratio: 1/1; width: 100%; object-fit: cover; display: block; }
.result-body { padding: 14px; }
.result-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.result-sub { font-size: 13px; color: var(--gray); line-height: 1.5; }
.results-dots { display: flex; justify-content: center; gap: 6px; padding: 12px 0 0; }
.results-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: transform .2s, background .2s;
}
.results-dot.active { background: var(--orange-grad); transform: scale(1.3); }

/* ================================================================
   GALLERY (product photos slider)
   ================================================================ */
.gallery-section { padding: 32px 0; }
.gallery-track {
  display: flex; overflow-x: auto; gap: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px;
  scrollbar-width: none;
  max-width: var(--max-w); margin: 0 auto;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 75%; scroll-snap-align: center;
  border-radius: 12px; overflow: hidden;
  background: var(--bg-alt);
}
.gallery-slide img { width: 100%; display: block; object-fit: cover; }
.gallery-slide .img-ph { min-height: 200px; }
.gallery-dots { display: flex; justify-content: center; gap: 6px; padding: 12px 0 0; }
.gallery-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gallery-dot.active { background: var(--orange-grad); transform: scale(1.3); }

/* ================================================================
   COMPARE / VALUE
   ================================================================ */
.value-compare-section { padding: 32px 0; }
.value-highlight {
  background: var(--bg-alt); border-radius: 12px; padding: 20px;
  text-align: center; margin: 16px 0;
}
.value-highlight-title { font-size: 28px; font-weight: 900; color: var(--orange); }
.value-highlight-sub { font-size: 14px; color: var(--gray); margin-top: 4px; }

/* ================================================================
   REELS / VIDEO SECTION
   ================================================================ */
.video-section { width: 100%; background: var(--bg); padding: 32px 0 12px; }
.video-section .section-title { margin-bottom: 10px; }
.video-section .section-subtitle { margin-bottom: 20px; }

.reels-row {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 16px 8px;
  margin: 0 -16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels-row::-webkit-scrollbar { display: none; }
.reel-card {
  position: relative;
  flex: 0 0 158px;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  scroll-snap-align: center;
  transition: flex-basis 0.35s ease, filter 0.3s ease;
}
.reel-card.playing { flex-basis: 250px; }
.reels-row.has-playing .reel-card:not(.playing) { filter: blur(3px); }
.reel-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  background: rgba(0,0,0,0.15);
  transition: opacity 0.2s;
}
.reel-play-btn.hidden { opacity: 0; pointer-events: none; }
.reel-play-circle {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--orange-grad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-play-circle svg { width: 17px; height: 17px; margin-left: 2px; }
.reel-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.reel-controls.hidden { display: none; }
.icon-sound.hidden, .icon-muted.hidden { display: none; }
.reel-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--orange-grad);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reel-btn svg path, .reel-btn svg polygon { fill: white; }
.reel-btn svg line { stroke: white; stroke-width: 2; fill: none; }
