/* ===== Variables ===== */
:root {
  /* Яскравий лісовий зелений — під стилістику hero-section1 */
  --green-900: #163A0A;
  --green-800: #1F5210;
  --green-700: #2E7018;
  --green-600: #3E8A22;
  --green-500: #52A030;
  --green-100: #E8F5DF;
  /* Bold оранжевий як діагональні смуги банера */
  --orange-700: #C45C00;
  --orange-600: #E06A00;
  --orange-500: #F57C00;
  --orange-100: #FFF3E5;
  /* Чисті нейтральні фони */
  --cream-50: #F8FAF5;
  --cream-100: #F0F5EB;
  --cream-200: #E2ECD8;
  --cream-300: #CCDFC0;
  --text: #181E12;
  --text-muted: #5A6652;
  --text-light: #8A9880;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow: 0 2px 14px rgba(0,0,0,0.11);
  --shadow-lg: 0 6px 32px rgba(0,0,0,0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream-50);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Announce Bar (Marquee) ===== */
.announce-bar {
  background: var(--green-900);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  height: 40px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 101;
}
.marquee-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-item {
  flex-shrink: 0;
  padding-right: 80px;
}
.announce-bar strong,
.announce-bar .countdown-timer {
  color: var(--orange-500);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Social Proof Popup ===== */
.social-proof {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 300;
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 14px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 310px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
  transform: translateX(calc(-100% - 30px));
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
  color: white;
  font-size: 14px;
  line-height: 1.4;
  pointer-events: none;
}
.social-proof.active {
  transform: translateX(0);
  pointer-events: auto;
}
.sp-icon { font-size: 20px; flex-shrink: 0; }
.sp-text { opacity: 0.92; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 40px;
  z-index: 100;
  background: var(--green-800);
  color: white;
  padding: 14px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo span { color: var(--orange-500); }
.header-phone {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.header-phone:hover { color: white; }
.header-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), background var(--transition);
}
.header-social-link:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .header-socials { display: none; }
}
.btn-header {
  background: var(--orange-500);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-header:hover { background: var(--orange-600); }

/* ===== Hero ===== */
.hero {
  background: url('/images/hero-section1.webp') center center / cover no-repeat;
  color: white;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,42,8,0.82) 0%, rgba(16,42,8,0.60) 45%, rgba(16,42,8,0.0) 75%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,114,12,0.2);
  border: 1px solid rgba(232,114,12,0.4);
  color: #FFB86C;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 .highlight { color: var(--orange-500); }
.hero-desc {
  font-size: 18px;
  opacity: 0.82;
  margin-bottom: 34px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--orange-500);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat-num { font-size: 30px; font-weight: 800; color: var(--orange-500); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 13px; opacity: 0.68; }

/* ===== Section ===== */
.section { padding: 64px 0; }
.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
}

/* ===== Catalog ===== */
.catalog { background: var(--cream-100); }
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  background: white;
  border: 2px solid var(--cream-300);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab:hover { border-color: var(--orange-500); color: var(--text); }
.tab.active { background: var(--green-800); border-color: var(--green-800); color: white; }

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: white;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.15s ease;
  padding: 8px;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* ===== Card Carousel ===== */
.card-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.card-carousel-track::-webkit-scrollbar { display: none; }
.card-carousel-img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  object-fit: contain;
  padding: 8px;
  width: 100%;
  height: 100%;
  transition: none;
}
.card-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 5px;
  z-index: 2;
  pointer-events: none;
}
.card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.2s;
}
.card-dot.active { background: var(--green-600); transform: scale(1.3); }
.card-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.82);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 20px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  color: var(--text);
  box-shadow: 0 1px 6px rgba(0,0,0,0.18);
  padding: 0;
  transition: background 0.15s;
}
.card-carousel-arrow:active { background: rgba(255,255,255,1); }
.card-carousel-prev { left: 6px; }
.card-carousel-next { right: 6px; }
@media (max-width: 768px) {
  .card-carousel-dots { display: flex; }
  .card-carousel-arrow { display: flex; }
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, var(--cream-100), var(--cream-200));
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.badge-orange { background: var(--orange-500); color: white; }
.badge-green  { background: var(--green-600); color: white; }
.badge-red    { background: #e03131; color: white; }
.badge-blue   { background: #1971c2; color: white; }
.badge-purple { background: #7048e8; color: white; }
.badge-teal   { background: #0c8599; color: white; }
.badge-dark   { background: #212529; color: white; }

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.product-features {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 6px;
}
.price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-current {
  font-size: 26px;
  font-weight: 800;
  color: #d4000a;
  line-height: 1;
}
.price-currency { font-size: 14px; font-weight: 600; }
.product-savings {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.savings-pct {
  background: #d4000a;
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: .3px;
}
.savings-amt {
  font-size: 13px;
  font-weight: 600;
  color: #d4000a;
}
.product-btns { display: flex; gap: 8px; }
.btn-order {
  flex: 1;
  background: var(--green-800);
  color: white;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-order:hover { background: var(--green-900); }

.btn-cart-add {
  flex-shrink: 0;
  background: var(--orange-700);
  color: white;
  border: none;
  padding: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.btn-cart-add:hover { background: var(--orange-600); }
.product-qty-ctrl {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid var(--green-500);
  border-radius: 8px;
  padding: 6px 8px;
  background: white;
}
.product-qty-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  border: 1.5px solid var(--cream-300);
  background: var(--cream-100);
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition);
}
.product-qty-btn:hover { background: var(--green-700); color: white; border-color: var(--green-700); }
.product-qty-num { font-size: 15px; font-weight: 700; min-width: 20px; text-align: center; color: var(--green-700); }

/* ===== Benefits ===== */
.benefits { background: var(--green-900); color: white; }
.benefits-title {
  font-size: 24px; font-weight: 800; text-align: center;
  margin-bottom: 36px; color: white; letter-spacing: -0.3px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 20px 22px;
  transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.10); }
.benefit-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon-wrap--np     { background: #E30613; }
.benefit-icon-wrap--orange { background: var(--orange-600); }
.benefit-icon-wrap--green  { background: var(--green-600); }
.benefit-text { flex: 1; min-width: 0; }
.benefit-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.benefit-desc  { font-size: 13px; opacity: 0.68; line-height: 1.5; }

/* ===== Delivery ===== */
.delivery { background: var(--cream-50); }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.delivery-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-500);
}
.delivery-card-icon { font-size: 28px; margin-bottom: 10px; }
.delivery-card-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.delivery-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== Reviews ===== */
.reviews { background: var(--cream-100); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #F59E0B; font-size: 17px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-muted); }


/* ===== Footer ===== */
.footer {
  background: var(--green-900);
  color: white;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; opacity: 0.5; }
.footer-socials { display: flex; gap: 14px; align-items: center; }
.footer-socials a {
  opacity: 0.5;
  color: white;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.footer-socials a:hover { opacity: 1; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; opacity: 0.55; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; }

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.22s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-title { font-size: 20px; font-weight: 800; }
.modal-product-name { font-size: 14px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.modal-close {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }
.modal-box--wide { max-width: 640px; }

.modal-gallery { padding: 16px 24px 0; }
.gallery-main-wrap {
  position: relative;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--cream-200);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.gallery-arrow:hover { background: white; }
.gallery-prev { left: -14px; }
.gallery-next { right: -14px; }
.gallery-arrow[hidden] { display: none !important; }
.gallery-main {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-100);
}
.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--cream-200);
}
.modal-qty-label { font-size: 14px; color: var(--text-muted); }
.modal-qty-ctrl { display: flex; align-items: center; gap: 12px; }
.modal-qty-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1.5px solid var(--cream-300);
  background: white;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.modal-qty-btn:hover { border-color: var(--green-800); }
.modal-qty-num { font-size: 16px; font-weight: 700; min-width: 24px; text-align: center; }
.btn-modal-cart {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-700);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-modal-cart:hover { background: var(--orange-600); }
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--cream-100);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--cream-300) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--cream-300); border-radius: 2px; }
.gallery-thumb {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--cream-100);
  transition: border-color var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active { border-color: var(--orange-500); }
.gallery-thumb:hover:not(.active) { border-color: var(--cream-300); }
.gallery-thumb-video { position: relative; }
.gallery-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  pointer-events: none;
}
.gallery-video-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.gallery-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .85;
}
.gallery-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  pointer-events: none;
}

.modal-features-wrap {
  padding: 0 0 4px;
  border-bottom: 1px solid var(--cream-200);
}
.modal-features-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  padding: 14px 20px 10px;
}
.modal-features-label svg { opacity: 0.5; flex-shrink: 0; }
.modal-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.modal-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 13.5px;
  transition: background var(--transition);
}
.modal-features li:nth-child(even) { background: var(--cream-50); }
.modal-features li:hover { background: var(--cream-100); }
.feat-label {
  color: var(--text-muted);
  font-weight: 400;
  flex-shrink: 0;
  min-width: 0;
  white-space: nowrap;
}
.feat-dots {
  flex: 1;
  min-width: 16px;
  border-bottom: 1.5px dotted var(--cream-300);
  height: 0;
  align-self: center;
}
.feat-value {
  font-weight: 700;
  color: var(--green-800);
  text-align: right;
  flex-shrink: 0;
}
.feat-full {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
  width: 100%;
}
.feat-full::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--green-100);
}
.modal-body { padding: 20px 24px 28px; }
.one-click-hint {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 24px 16px;
  line-height: 1.5;
}

/* ===== Form ===== */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-input,
.form-textarea {
  width: 100%;
  border: 2px solid var(--cream-300);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--green-500); }
.form-input.error { border-color: #DC2626; }
.form-textarea { resize: vertical; min-height: 80px; }
.field-error {
  display: none;
  color: #DC2626;
  font-size: 13px;
  margin-top: 5px;
}
.form-error {
  color: #DC2626;
  font-size: 13px;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: #FEF2F2;
  border-radius: 6px;
  border: 1px solid #FECACA;
}
.btn-submit {
  width: 100%;
  background: var(--green-700);
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: background var(--transition);
  margin-top: 4px;
}
.btn-submit:hover:not(:disabled) { background: var(--green-800); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.form-note a { color: var(--green-600); text-decoration: underline; }

/* ===== Cart Header Button ===== */
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-cart-header {
  position: relative;
  background: var(--cream-100);
  border: 2px solid var(--cream-200);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}
.btn-cart-header:hover { border-color: var(--green-500); background: white; }
.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--orange-500);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
@keyframes badge-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  70%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}
.cart-badge.badge-pulse { animation: badge-pulse 0.35s ease; }

/* ===== Cart Drawer ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 250;
  backdrop-filter: blur(2px);
}
.cart-overlay.active { display: block; }
.cart-drawer {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 420px;
  max-width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -4px 0 32px rgba(0,0,0,0.18);
  animation: cartSlideIn 0.24s ease;
}
@keyframes cartSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 2px solid var(--cream-200);
  flex-shrink: 0;
}
.cart-title { font-size: 20px; font-weight: 800; }
.cart-close {
  background: none; border: none;
  font-size: 26px; color: var(--text-muted);
  cursor: pointer; line-height: 1; padding: 0;
  transition: color var(--transition);
}
.cart-close:hover { color: var(--text); }
.cart-items { flex: 1 1 auto; overflow-y: auto; min-height: 0; padding: 4px 0; }
.cart-empty {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
  padding: 24px;
  text-align: center;
}
.cart-empty-icon { font-size: 52px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--cream-100);
}
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 8px; overflow: hidden;
  flex-shrink: 0; background: var(--cream-100);
  position: relative;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-emoji {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-size: 26px;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 13px; font-weight: 600;
  line-height: 1.3; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { font-size: 12px; color: var(--text-muted); }
.cart-item-price b { color: var(--text); }
.cart-qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cart-qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px; border: 1.5px solid var(--cream-300);
  background: white; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.cart-qty-btn:hover { border-color: var(--green-500); background: var(--cream-100); }
.cart-qty-num { font-size: 14px; font-weight: 700; min-width: 18px; text-align: center; }
.cart-item-remove {
  background: none; border: none;
  color: var(--text-muted); cursor: pointer;
  padding: 4px; display: flex; align-items: center;
  flex-shrink: 0; transition: color var(--transition);
}
.cart-item-remove:hover { color: #DC2626; }
.cart-footer {
  flex: 0 0 auto;
  overflow-y: auto;
  max-height: 62vh;
  border-top: 2px solid var(--cream-200);
  padding: 20px 24px 28px;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-200);
  font-size: 17px; font-weight: 700;
}
.cart-total-row strong { color: var(--orange-700); font-size: 20px; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 104px;
  right: 24px;
  background: var(--green-700);
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  transform: translateY(-12px);
  transition: all 0.3s ease;
  max-width: min(320px, calc(100vw - 48px));
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #DC2626; }

/* ===== Checkout Section ===== */
[hidden] { display: none !important; }

.checkout { background: var(--cream-100); }
.checkout-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.checkout-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  order: 1;
}
.checkout-summary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 0;
  box-shadow: var(--shadow);
  order: 2;
  position: sticky;
  top: 80px;
  overflow: hidden;
}
.checkout-summary-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); padding: 0 20px; }
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  padding: 14px 20px 0;
  border-top: 2px solid var(--cream-200);
  font-weight: 700;
  font-size: 16px;
}
.checkout-summary-total strong { color: var(--orange-700); }
.checkout-empty-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px 28px;
  gap: 6px;
}
.checkout-empty-icon { font-size: 36px; margin-bottom: 4px; }
.checkout-empty-title { font-size: 16px; font-weight: 700; color: var(--text); margin: 0; }
.checkout-empty-sub { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.checkout-empty-btn {
  margin-top: 12px;
  background: var(--orange-500);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.checkout-empty-btn:hover { background: var(--orange-600); }

/* NP autocomplete */
.delivery-toggle {
  display: flex;
  background: var(--cream-100);
  border: 1.5px solid var(--cream-200);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
  width: fit-content;
}
.delivery-type-btn {
  padding: 7px 16px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.delivery-type-btn.active { background: var(--green-700); color: white; }
.np-field { position: relative; }
.np-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  z-index: 200;
  padding: 4px;
}
.np-drop-item {
  padding: 9px 12px;
  font-size: 14px;
  color: var(--text);
  border-radius: 7px;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1.4;
}
.np-drop-item:hover { background: var(--green-100); color: var(--green-700); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-phone { display: none; }
  .btn-header { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero-stats { gap: 28px; }
  .section { padding: 48px 0; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 10px; }
  .benefit-card { padding: 14px 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .logo { font-size: 18px; }
  .btn-cart-header { padding: 7px 9px; }
  .btn-cart-header svg { width: 20px; height: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .category-tabs { gap: 6px; }
  .tab { padding: 8px 14px; font-size: 13px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .delivery-grid { grid-template-columns: 1fr; }
  .checkout-inner { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: 1; }
  .checkout-form { padding: 20px; order: 2; }
}

/* ===== Mobile Bottom Toolbar ===== */
/* ===== Mobile toolbar ===== */
.mobile-toolbar { display: none; }

/* ===== Mobile header cart button ===== */
.btn-header-mobile-cart {
  display: none;
}

/* ===== Float contact widget ===== */
.float-contact {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}
.float-contact .float-toggle,
.float-contact.open .float-contact-links {
  pointer-events: auto;
}
.float-contact-links {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.2s, transform 0.2s;
}
.float-contact.open .float-contact-links {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.float-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: opacity 0.15s, transform 0.15s;
}
.float-contact-link:hover { opacity: 0.88; transform: scale(1.03); }
.float-contact-link .fc-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}
.float-contact-link--phone { background: var(--green-700); }
.float-contact-link--tg    { background: #229ED9; }
.float-contact-link--vb    { background: #7360F2; }
.float-contact-link--ig    { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.float-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-700);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: white;
  transition: background 0.15s, transform 0.2s;
  flex-shrink: 0;
}
.float-toggle:hover  { background: var(--green-800); }
.float-toggle .icon-open  { display: block; }
.float-toggle .icon-close { display: none;  }
.float-contact.open .float-toggle { background: var(--green-900); transform: rotate(45deg); }
.float-contact.open .float-toggle .icon-open  { display: none;  }
.float-contact.open .float-toggle .icon-close { display: block; }

@media (max-width: 768px) {
  .btn-header-mobile-cart {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--orange-500);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
    white-space: nowrap;
  }
  .btn-header-mobile-cart:active { opacity: 0.8; }
  .float-contact {
    right: 16px;
    align-items: flex-end;
  }
}
