/* ============================================================
   SKIPERSHOP.BY — Main Stylesheet
   Mobile-first, performance-focused
   ============================================================ */

/* ---- Variables ---- */
:root {
  --green:        #2a6a25;
  --green-dark:   #1c4d19;
  --green-light:  #e8f0e6;
  --green-hover:  #358030;
  --dark:         #1a1a1a;
  --text:         #2e2e2e;
  --muted:        #606060;
  --bg:           #ffffff;
  --bg-alt:       #f5f7f4;
  --bg-dark:      #1a1a1a;
  --border:       #dde4da;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.08);
  --shadow:       0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:    0 4px 24px rgba(0,0,0,0.14);
  --radius:       8px;
  --radius-lg:    14px;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, sans-serif;
  --header-h:     60px;
  --bottom-bar-h: 60px;
  --transition:   0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-bottom: var(--bottom-bar-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1 { font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--dark); }
h2 { font-size: clamp(1.3rem, 4vw, 2rem);   font-weight: 700; line-height: 1.25; color: var(--dark); }
h3 { font-size: clamp(1.05rem, 3vw, 1.35rem); font-weight: 600; line-height: 1.3; color: var(--dark); }
h4 { font-size: 1rem; font-weight: 600; color: var(--dark); }
p  { color: var(--text); }

/* ---- Layout Utilities ---- */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 16px; }
.section    { padding: 48px 0; }
.section-sm { padding: 32px 0; }
.section-lg { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 32px; }
.section-title p { color: var(--muted); margin-top: 8px; font-size: 1rem; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  font-size: 0.95rem; font-weight: 600; line-height: 1;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--green-hover); border-color: var(--green-hover);
}
.btn-outline {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--green-light);
}
.btn-dark {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.btn-dark:hover { background: #333; border-color: #333; }
.btn-white {
  background: #fff; color: var(--green); border-color: #fff;
}
.btn-white:hover { background: var(--green-light); }
.btn-ghost-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-phone { background: #28a745; color: #fff; border-color: #28a745; }
.btn-phone:hover { background: #218838; }
.btn-telegram { background: #0088cc; color: #fff; border-color: #0088cc; }
.btn-telegram:hover { background: #006fa3; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1da851; }

/* ---- Header ---- */
.site-header, .header {
  position: sticky; top: 0; z-index: 100;
  background: #1e1e1e;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  height: var(--header-h);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.header-logo {
  font-size: 18px; font-weight: 900;
  color: #fff; letter-spacing: -.02em;
  text-decoration: none; flex-shrink: 0;
}
.header-logo span { color: #f07800; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--green); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1rem; letter-spacing: -1px;
}
.logo-text { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.1; }
.logo-sub  { font-size: 0.65rem; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.header-phone {
  display: none;
  flex-direction: column; align-items: flex-end;
  text-decoration: none;
}
.header-phone .phone-num {
  font-size: 1rem; font-weight: 700; color: #fff;
}
.header-phone .phone-label {
  font-size: 0.7rem; color: rgba(255,255,255,.5);
}
.header-phone-wrap {
  display: none;
  flex-direction: column; align-items: flex-end;
}
.header-phone-wrap .header-phone {
  display: flex; font-size: 1rem; font-weight: 700; color: #fff;
  text-decoration: none; white-space: nowrap;
}
.header-phone-label {
  font-size: 0.7rem; color: rgba(255,255,255,.5);
}
.header-cta {
  display: none;
  background: #f07800; color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: 50px;
  white-space: nowrap; transition: background .2s;
  text-decoration: none;
}
.header-cta:hover { background: #c85f00; }

.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px; border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.burger span {
  display: block; width: 100%; height: 2px; background: #fff;
  transition: var(--transition); border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav Drawer ---- */
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; opacity: 0; transition: opacity 0.3s;
}
.nav-overlay.open { display: block; opacity: 1; }
.nav-drawer {
  position: fixed; top: 0; left: -280px; bottom: 0; width: 280px;
  background: #1e1e1e; z-index: 201;
  transition: left 0.3s ease; overflow-y: auto;
  display: flex; flex-direction: column;
}
.nav-drawer.open { left: 0; }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-drawer-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.1); font-size: 1.2rem; color: #fff;
}
.nav-drawer ul { padding: 12px 0; flex: 1; }
.nav-drawer ul li a {
  display: block; padding: 12px 20px;
  font-weight: 500; color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.nav-drawer ul li a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-drawer ul li a.active { color: #f07800; font-weight: 700; }
.nav-drawer-phone {
  padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.1);
}
.nav-drawer-phone a {
  display: block; font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.nav-drawer-phone .label { font-size: 0.8rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }

/* ---- Desktop Nav ---- */
.site-nav { display: none; }

/* ---- Mobile Bottom Bar ---- */
.mobile-bottom-bar {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99; background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
  height: var(--bottom-bar-h);
}
.mobile-bottom-bar a {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  font-size: 0.65rem; font-weight: 600; color: var(--muted);
  border-right: 1px solid var(--border);
  text-decoration: none; transition: var(--transition);
  padding: 4px;
}
.mobile-bottom-bar a:last-child { border-right: none; }
.mobile-bottom-bar a:nth-child(1) { color: #28a745; }
.mobile-bottom-bar a:nth-child(2) { color: #0088cc; }
.mobile-bottom-bar a:nth-child(3) { background: var(--green); color: #fff; }
.mobile-bottom-bar a:hover { opacity: 0.85; }
.mobile-bottom-bar .bar-icon { font-size: 1.3rem; line-height: 1; }

/* ---- Hero (Homepage) ---- */
.hero {
  background: linear-gradient(135deg, #1c3d18 0%, #2a6a25 50%, #1a4d16 100%);
  color: #fff; padding: 48px 0 40px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: #fff; font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero h1 { color: #fff; margin-bottom: 12px; }
.hero h1 span { color: #a8e6a0; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.6; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.hero-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 24px;
}
.hero-benefit {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.9);
}
.hero-benefit .icon { font-size: 1.1rem; flex-shrink: 0; }
.hero-scroll {
  text-align: center; margin-top: 16px;
}
.hero-scroll a {
  color: rgba(255,255,255,0.7); font-size: 0.8rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.hero-scroll a:hover { color: #fff; }

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--bg-alt); border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex; overflow-x: auto; gap: 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.trust-strip .container::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 600; color: var(--text);
}
.trust-item .icon { font-size: 1.2rem; color: var(--green); }

/* ---- Section / Benefits Grid ---- */
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.benefit-card {
  background: var(--bg-alt); border-radius: var(--radius); padding: 20px 16px;
  border: 1px solid var(--border); transition: var(--transition);
}
.benefit-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.benefit-icon { font-size: 2rem; margin-bottom: 10px; }
.benefit-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.benefit-card p  { font-size: 0.82rem; color: var(--muted); }

/* ---- Product Cards ---- */
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.product-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); border-color: #c0cfc0; transform: translateY(-2px); }
.product-card-img {
  aspect-ratio: 4/3; background: var(--bg-alt);
  overflow: hidden; position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: contain; padding: 16px;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img .img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: var(--muted); font-size: 0.75rem; text-align: center; padding: 16px;
}
.product-card-img .img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.4; }
.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  background: var(--green-light); color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.product-card h3 {
  font-size: 0.95rem; font-weight: 700; line-height: 1.3;
}
.product-card-features {
  flex: 1;
}
.product-card-features li {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 0.78rem; color: var(--muted); line-height: 1.4; margin-bottom: 3px;
}
.product-card-features li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.product-card-actions {
  display: flex; flex-direction: column; gap: 7px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff; text-align: center; padding: 40px 16px;
  border-radius: var(--radius-lg); margin: 0 16px;
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-banner-btns { display: flex; flex-direction: column; gap: 10px; }

/* ---- Why Us ---- */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-alt); border-radius: var(--radius); padding: 18px;
  border: 1px solid var(--border);
}
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-card h3 { font-size: 1rem; margin-bottom: 4px; }
.why-card p  { font-size: 0.85rem; color: var(--muted); }

/* ---- Payment & Delivery Strip ---- */
.pay-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.pay-item {
  background: var(--bg-alt); border-radius: var(--radius); padding: 16px;
  border: 1px solid var(--border); text-align: center;
}
.pay-item .icon { font-size: 1.6rem; margin-bottom: 6px; }
.pay-item h4 { font-size: 0.85rem; margin-bottom: 2px; }
.pay-item p  { font-size: 0.75rem; color: var(--muted); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; font-weight: 600; font-size: 0.95rem;
  background: #fff; cursor: pointer; gap: 12px; width: 100%;
  text-align: left; transition: var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-arrow {
  font-size: 0.8rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  background: var(--bg-alt);
}
.faq-answer-inner {
  padding: 0 16px 16px; font-size: 0.9rem; color: var(--muted); line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px;
}
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-sub  { color: #a8e6a0; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 10px; line-height: 1.6; }
.footer-nav h4, .footer-contact h4 {
  color: #fff; font-size: 0.9rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-nav ul li a:hover { color: #a8e6a0; }
.footer-contact .contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; margin-bottom: 10px; color: rgba(255,255,255,0.7);
}
.footer-contact .contact-item a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact .contact-item a:hover { color: #a8e6a0; }
.footer-contact .contact-icon { flex-shrink: 0; }
.footer-messengers { display: flex; gap: 10px; margin-top: 14px; }
.footer-messengers a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; font-size: 1rem;
  transition: var(--transition);
}
.footer-messengers .tg  { background: #0088cc; color: #fff; }
.footer-messengers .wa  { background: #25d366; color: #fff; }
.footer-messengers .ig  { background: #e1306c; color: #fff; }
.footer-messengers a:hover { opacity: 0.85; transform: scale(1.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; }

/* ---- Product Hero (Product Pages) ---- */
.product-hero {
  background: var(--bg-alt); padding: 24px 0 32px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 500; }
.product-hero-grid {
  display: flex; flex-direction: column; gap: 24px;
}
.product-main-img {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.product-main-img img {
  width: 100%; height: 100%; object-fit: contain; padding: 20px;
}
.product-img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--muted); font-size: 0.8rem; text-align: center; padding: 20px;
}
.product-img-placeholder .ph-big { font-size: 4rem; opacity: 0.25; }
.product-category-tag {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: 0.75rem; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.product-hero-info h1 { margin-bottom: 16px; }
.product-quick-features {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
}
.product-quick-feature {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  font-size: 0.85rem;
}
.product-quick-feature .icon { font-size: 1.1rem; color: var(--green); flex-shrink: 0; }
.product-quick-feature strong { color: var(--dark); }
.product-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.product-messenger-row { display: flex; gap: 10px; }
.product-messenger-row .btn { flex: 1; font-size: 0.82rem; padding: 11px 12px; }
.product-trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.trust-mini {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 8px; text-align: center;
}
.trust-mini .icon { font-size: 1.3rem; margin-bottom: 4px; }
.trust-mini p { font-size: 0.7rem; color: var(--muted); line-height: 1.3; }

/* ---- Product Anchors ---- */
.product-anchors {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: var(--header-h); z-index: 50;
}
.product-anchors .container {
  display: flex; overflow-x: auto; gap: 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.product-anchors .container::-webkit-scrollbar { display: none; }
.anchor-link {
  display: block; padding: 14px 18px; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); border-bottom: 2px solid transparent;
  white-space: nowrap; transition: var(--transition);
}
.anchor-link:hover { color: var(--green); border-bottom-color: var(--green); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.gallery-item {
  background: var(--bg-alt); border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; position: relative; border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.75rem; flex-direction: column; gap: 6px;
}
.gallery-ph .ph-icon { font-size: 1.8rem; opacity: 0.3; }

/* ---- Specs Table ---- */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
  padding: 10px 12px; font-size: 0.9rem; vertical-align: top;
}
.specs-table td:first-child {
  color: var(--muted); font-weight: 500; width: 50%;
  background: var(--bg-alt);
}
.specs-table td:last-child { color: var(--dark); font-weight: 500; }
.specs-table tr:nth-child(even) td:last-child { background: rgba(255,255,255,0.5); }

/* ---- Features Cards ---- */
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.feature-card {
  background: var(--bg-alt); border-radius: var(--radius); padding: 16px;
  border: 1px solid var(--border);
}
.feature-card .icon { font-size: 1.5rem; margin-bottom: 8px; }
.feature-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.feature-card p  { font-size: 0.8rem; color: var(--muted); }

/* ---- Description ---- */
.description-block { margin-bottom: 24px; }
.description-block h3 { margin-bottom: 10px; }
.description-block p  { font-size: 0.95rem; color: var(--text); line-height: 1.7; }

/* ---- Video Block ---- */
.video-grid { display: flex; flex-direction: column; gap: 20px; }
.video-item { }
.video-wrapper {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius-lg); overflow: hidden; background: #000;
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.video-preview {
  position: absolute; inset: 0; background: var(--bg-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; gap: 12px;
}
.video-preview .play-btn {
  width: 60px; height: 60px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; transition: var(--transition);
}
.video-preview:hover .play-btn { transform: scale(1.1); background: var(--green-hover); }
.video-preview p { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-align: center; padding: 0 20px; }
.video-placeholder {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  border: 2px dashed var(--border); padding: 32px 16px; text-align: center;
}
.video-placeholder .icon { font-size: 2.5rem; color: var(--muted); margin-bottom: 10px; }
.video-placeholder p { font-size: 0.85rem; color: var(--muted); }

/* ---- Kit List ---- */
.kit-list { display: flex; flex-direction: column; gap: 6px; }
.kit-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px; background: var(--bg-alt);
  border-radius: var(--radius); border: 1px solid var(--border);
  font-size: 0.9rem;
}
.kit-list li::before { content: '📦'; flex-shrink: 0; }

/* ---- Lead Form ---- */
.lead-form-section {
  background: linear-gradient(135deg, #1c3d18 0%, #2a6a25 100%);
  color: #fff; padding: 40px 0;
}
.lead-form-section h2 { color: #fff; }
.lead-form-section p  { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.lead-form {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 1rem; background: #fff; color: var(--text);
  transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(42,106,37,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--green); cursor: pointer;
}
.form-checkbox label {
  font-size: 0.78rem; color: var(--muted); line-height: 1.5; cursor: pointer;
}
.form-checkbox label a { color: var(--green); text-decoration: underline; }
.form-submit-hint {
  font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 10px;
}

/* ---- Trust Block (Product Page) ---- */
.trust-block-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.trust-block-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px; background: var(--bg-alt); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.trust-block-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.trust-block-item h4 { font-size: 0.85rem; margin-bottom: 2px; }
.trust-block-item p  { font-size: 0.75rem; color: var(--muted); }

/* ---- Related Products ---- */
.related-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

/* ---- Inline CTA ---- */
.inline-cta {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; border: 1px solid var(--border);
  margin: 24px 0;
}
.inline-cta h3 { margin-bottom: 8px; }
.inline-cta p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.inline-cta-btns { display: flex; flex-direction: column; gap: 10px; }

/* ---- Page Hero (Inner Pages) ---- */
.page-hero {
  background: var(--bg-dark); color: #fff;
  padding: 40px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* ---- Payment Page ---- */
.payment-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
.payment-card {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border);
}
.payment-card h3 { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.payment-card h3 .icon { font-size: 1.4rem; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.method-badge {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 12px; font-size: 0.82rem; font-weight: 600; color: var(--text);
}
.steps-list { counter-reset: steps; display: flex; flex-direction: column; gap: 12px; }
.step-item {
  display: flex; gap: 14px; align-items: flex-start;
  counter-increment: steps;
}
.step-num {
  width: 32px; height: 32px; background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; flex-shrink: 0;
}
.step-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.step-item p  { font-size: 0.85rem; color: var(--muted); }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.contact-card {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border);
}
.contact-card h3 { margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.contact-card h3 .icon { font-size: 1.3rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 0.9rem;
}
.contact-detail .label { color: var(--muted); font-size: 0.8rem; margin-bottom: 2px; }
.contact-detail .value { font-weight: 600; color: var(--dark); }
.contact-detail a.value { color: var(--green); }
.messenger-btns { display: flex; flex-direction: column; gap: 10px; }

/* ---- About Page ---- */
.about-values { display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--bg-alt); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-icon { font-size: 1.8rem; flex-shrink: 0; }
.value-item h3 { font-size: 1rem; margin-bottom: 4px; }
.value-item p  { font-size: 0.85rem; color: var(--muted); }

/* ---- Privacy Page ---- */
.privacy-content h2 { margin-top: 32px; margin-bottom: 12px; font-size: 1.2rem; }
.privacy-content h3 { margin-top: 20px; margin-bottom: 8px; font-size: 1rem; }
.privacy-content p  { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 10px; }
.privacy-content ul { margin: 10px 0 14px 20px; }
.privacy-content ul li {
  list-style: disc; font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 4px;
}

/* ---- Thank You Page ---- */
.thanks-page {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 16px;
}
.thanks-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px 24px;
  text-align: center; max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.thanks-icon { font-size: 3rem; margin-bottom: 16px; }
.thanks-card h1 { font-size: 1.6rem; margin-bottom: 10px; }
.thanks-card p  { color: var(--muted); margin-bottom: 24px; }

/* ---- Modal ---- */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 24px;
  max-width: 420px; width: 100%; position: relative; text-align: center;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--bg-alt); color: var(--muted);
  font-size: 1.1rem; transition: var(--transition);
}
.modal-close:hover { background: var(--border); }
.modal h2 { margin: 12px 0 8px; }
.modal p  { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ---- Utilities ---- */
.bg-alt { background: var(--bg-alt); }
.divider { height: 1px; background: var(--border); margin: 8px 0; }
.tag { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: 0.75rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; }
.price-block { margin: 12px 0; }
.price-label { font-size: 0.78rem; color: var(--muted); }
.price-main { font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.price-hint { font-size: 0.8rem; color: var(--muted); }
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   RESPONSIVE — TABLET 768px+
   ============================================================ */
@media (min-width: 768px) {
  :root { --header-h: 68px; }
  body { padding-bottom: 0; }
  .mobile-bottom-bar { display: none; }
  .burger { display: none; }
  .nav-drawer, .nav-overlay { display: none !important; }

  .site-nav {
    display: flex; align-items: center; gap: 4px; flex: 1; margin: 0 8px;
  }
  .site-nav a {
    padding: 8px 12px; font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,.75); border-radius: 8px; transition: var(--transition);
    white-space: nowrap;
  }
  .site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
  .site-nav a.active { color: #fff; font-weight: 600; }

  .header-nav {
    display: flex; align-items: center; gap: 4px; flex: 1; margin: 0 8px;
    list-style: none;
  }
  .header-nav a {
    padding: 8px 12px; font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,.75); border-radius: 8px; transition: var(--transition);
    white-space: nowrap;
  }
  .header-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
  .header-nav a.active { color: #fff; font-weight: 600; }

  .header-phone-wrap { display: flex; }
  .header-phone { display: flex; }
  .header-cta { display: flex; }

  .hero { padding: 72px 0 60px; }
  .hero-ctas { flex-direction: row; }
  .hero-benefits { grid-template-columns: repeat(3, 1fr); }

  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { margin: 0 24px; }
  .cta-banner-btns { flex-direction: row; justify-content: center; }

  .product-hero-grid { flex-direction: row; align-items: flex-start; gap: 32px; }
  .product-main-img { flex: 0 0 42%; max-width: 42%; }
  .product-hero-info { flex: 1; }
  .product-quick-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-messenger-row .btn { font-size: 0.85rem; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-block-grid { grid-template-columns: repeat(4, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 2fr 1fr 2fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .payment-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .pay-grid { grid-template-columns: repeat(4, 1fr); }
  .inline-cta-btns { flex-direction: row; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — DESKTOP 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .container { padding: 0 24px; }
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .section-lg { padding: 96px 0; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { gap: 24px; }
  .product-main-img { flex: 0 0 48%; max-width: 48%; }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .related-grid { grid-template-columns: repeat(4, 1fr); }
  .video-grid { flex-direction: row; }
  .video-grid .video-item { flex: 1; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-ctas { flex-direction: row; flex-wrap: wrap; }
  .product-ctas .btn { flex: 1; min-width: 180px; }
  .hero-ctas .btn { min-width: 200px; }
}

/* ---- Print ---- */
@media print {
  .site-header, .mobile-bottom-bar, .site-footer,
  .product-anchors, .lead-form-section { display: none; }
  body { padding: 0; }
}
