/* ===========================================================
   ნატურ შოპი — სტილები v4 (დახვეწილი / elegant)
   ფერები: მწვანე + ოდნავ ყვითელი
   =========================================================== */

:root {
  --green:        #2c8c5a;
  --green-dark:   #1e6d44;
  --green-darker: #11492e;
  --green-soft:   #f0f6f1;
  --green-soft-2: #e0eee5;
  --green-line:   #dbe9e0;
  --gold:         #d9a82c;
  --gold-soft:    #f7eccb;
  --ink:          #1a2b22;
  --ink-2:        #3c4d44;
  --muted:        #7e8e85;
  --line:         #ebf0ec;
  --bg:           #f7faf7;
  --white:        #ffffff;
  --shadow-xs:    0 1px 3px rgba(17,73,46,.05), 0 6px 16px rgba(17,73,46,.05);
  --shadow:       0 8px 30px rgba(17,73,46,.08);
  --shadow-lg:    0 24px 60px rgba(17,73,46,.14);
  --radius:       22px;
  --radius-sm:    14px;
  --radius-lg:    30px;
  --header-h:     76px;
  --ease:         cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Noto Sans Georgian", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Top bar ---------- */
.topbar { background: var(--green-darker); color: #bfe3cd; font-size: 12.5px; position: relative; z-index: 60; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar a { color: #bfe3cd; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 24px; align-items: center; }
.topbar .tb-left a { display: inline-flex; gap: 8px; align-items: center; }
.topbar .tb-social { display: flex; gap: 16px; align-items: center; }
.topbar .tb-social span { opacity: .7; }
.topbar .tb-social a { font-size: 14px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 55; background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; gap: 26px; height: var(--header-h); }

/* ლოგო */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { position: relative; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(140deg, #45c285 0%, #1e6d44 95%); box-shadow: 0 10px 22px rgba(30,109,68,.35), inset 0 1px 0 rgba(255,255,255,.4); }
.logo-mark svg { width: 25px; height: 25px; color: #fff; transform: rotate(-4deg); }
.logo-mark::after { content: ""; position: absolute; top: 8px; right: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 2px rgba(255,255,255,.5); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .lt-name { font-size: 22px; font-weight: 800; letter-spacing: -.3px; color: var(--green-dark); }
.logo-text small { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

.search { flex: 0 1 500px; margin: 0 auto; display: flex; align-items: center; gap: 11px; background: var(--green-soft); border: 1.5px solid transparent; border-radius: 999px; padding: 13px 22px; transition: .25s var(--ease); }
.search:focus-within { border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(44,140,90,.08); }
.search input { border: none; background: none; outline: none; flex: 1; font-size: 14.5px; color: var(--ink); }
.search input::placeholder { color: #9bb0a4; }
.search i { color: var(--green); font-size: 15px; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { position: relative; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: transparent; color: var(--green-darker); font-size: 18px; transition: .22s var(--ease); }
.icon-btn:hover { background: var(--green-soft); color: var(--green-dark); }
.icon-btn.cart { background: var(--green-dark); color: #fff; }
.icon-btn.cart:hover { background: var(--green-darker); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(30,109,68,.3); }
.icon-btn .badge { position: absolute; top: -2px; right: -2px; min-width: 19px; height: 19px; padding: 0 5px; background: var(--gold); color: #4a3800; border-radius: 999px; font-size: 11px; font-weight: 800; display: grid; place-items: center; border: 2px solid #fff; }
.menu-toggle { display: none; } /* მხოლოდ მობილურზე */

/* ---------- მარცხენა ნავიგაციის drawer ---------- */
.nav-overlay { position: fixed; inset: 0; background: rgba(8,28,18,.45); z-index: 150; opacity: 0; visibility: hidden; transition: .3s var(--ease); backdrop-filter: blur(2px); }
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-drawer { position: fixed; top: 0; left: 0; height: 100%; width: min(310px, 84%); background: #fff; z-index: 160; transform: translateX(-100%); transition: .4s var(--ease); display: flex; flex-direction: column; box-shadow: 10px 0 50px rgba(0,0,0,.18); }
.nav-drawer.open { transform: translateX(0); }
.nav-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 18px; border-bottom: 1px solid var(--line); }
.nav-head .logo { gap: 10px; }
.nav-head .logo-mark { width: 40px; height: 40px; }
.nav-head .logo-mark svg { width: 21px; height: 21px; }
.nav-head .lt-name { font-size: 19px; }
.nav-head #navClose { width: 38px; height: 38px; border-radius: 50%; background: var(--green-soft); color: var(--ink-2); font-size: 17px; display: grid; place-items: center; flex-shrink: 0; }
.nav-links { padding: 14px 14px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.nav-links a { display: flex; align-items: center; justify-content: space-between; padding: 16px 14px; border-radius: 14px; font-size: 15.5px; font-weight: 600; color: var(--ink); transition: .18s var(--ease); }
.nav-links a span { display: inline-flex; align-items: center; gap: 14px; }
.nav-links a span > i { width: 22px; text-align: center; color: var(--green); font-size: 16px; }
.nav-links a > i { font-size: 12px; color: var(--muted); }
.nav-links a:active, .nav-links a:hover { background: var(--green-soft); }
.nav-foot { padding: 18px; border-top: 1px solid var(--line); }
.nav-call { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--green-dark); font-size: 15px; }
.nav-call i { width: 20px; }
.nav-social { display: flex; gap: 10px; margin-top: 16px; }
.nav-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; transition: .2s var(--ease); }
.nav-social a:hover { background: var(--green); color: #fff; }

/* ---------- Desktop nav ---------- */
.mainnav { background: transparent; position: relative; z-index: 40; border-bottom: 1px solid var(--line); }
.mainnav .container { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; padding: 4px 0; }
.mainnav a { color: var(--ink-2); font-weight: 500; font-size: 14.5px; padding: 15px 18px; display: flex; align-items: center; gap: 9px; transition: .2s var(--ease); position: relative; }
.mainnav a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 8px; height: 2px; background: var(--green); border-radius: 2px; transform: scaleX(0); transition: transform .25s var(--ease); }
.mainnav a:hover { color: var(--green-dark); }
.mainnav a:hover::after { transform: scaleX(1); }
.mainnav a.active { color: var(--green-dark); font-weight: 600; }
.mainnav a.active::after { transform: scaleX(1); }

/* ---------- Hero slider ---------- */
.hero { padding: 28px 0 8px; }
.slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 21 / 8; }
.slides { display: flex; height: 100%; transition: transform .8s var(--ease); }
.slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; padding: 0 8%; color: #fff; background-size: cover; background-position: center; }
.slide-1 { background-image: linear-gradient(90deg, rgba(10,45,27,.82) 0%, rgba(10,45,27,.4) 45%, rgba(10,45,27,.08) 78%), url("https://media.licdn.com/dms/image/v2/C561BAQG2oj7eDDWtHA/company-background_1536_768/company-background_1536_768/0/1584226390143?e=2147483647&v=beta&t=QVKR39aggycwICgAwtmI9Lcir4C9KU6t930vsToGZ0U"); }
.slide-2 { background-image: linear-gradient(90deg, rgba(10,45,27,.82) 0%, rgba(10,45,27,.4) 45%, rgba(10,45,27,.08) 78%), url("https://images.jdmagicbox.com/comp/vadodara/w7/0265px265.x265.210509120512.t1w7/catalogue/forever-living-products-distributor-vadodara-health-care-product-distributors-30xfg76mk7.jpg?clr="); }
.slide-3 { background-image: linear-gradient(90deg, rgba(10,45,27,.82) 0%, rgba(10,45,27,.4) 45%, rgba(10,45,27,.08) 78%), url("https://www.shopforeverlivingproducts.com/wp-content/uploads/2021/01/drinks_banner_1120x350_1558436877329.jpg.webp"); }
.slide-text { position: relative; z-index: 2; max-width: 56%; }
.slide-text h2 { font-size: clamp(24px, 3.6vw, 46px); line-height: 1.18; font-weight: 700; letter-spacing: -.5px; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.slide-img { display: none; }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center; font-size: 15px; z-index: 5; transition: .22s var(--ease); backdrop-filter: blur(8px); }
.slider-arrow:hover { background: rgba(255,255,255,.95); color: var(--green-dark); border-color: transparent; }
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }
.slider-dots { position: absolute; bottom: 22px; left: 8%; display: flex; gap: 8px; z-index: 5; }
.slider-dots button { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.45); transition: .3s var(--ease); }
.slider-dots button.active { background: #fff; width: 30px; }

/* ---------- Section ---------- */
.section { padding: 44px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.section-head h3 { font-size: 27px; font-weight: 700; color: var(--ink); letter-spacing: -.5px; }
.section-head h3 .he-ico { display: none; }
.section-head .sub { display: block; font-size: 14px; font-weight: 400; color: var(--muted); margin-top: 4px; letter-spacing: 0; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; gap: 0; }
.section-head .link { color: var(--green-dark); font-weight: 600; font-size: 14px; display: inline-flex; gap: 7px; align-items: center; transition: .2s var(--ease); white-space: nowrap; }
.section-head .link:hover { gap: 11px; }

/* ---------- Category circles (round photos) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px; }
.cat-circle { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.cc-img {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: var(--green-soft); display: grid; place-items: center;
  box-shadow: var(--shadow-xs); border: 3px solid #fff;
  outline: 2px solid var(--green-line); outline-offset: -2px;
  transition: .35s var(--ease);
}
.cc-img i { position: absolute; font-size: 30px; color: var(--green); opacity: .55; }
.cc-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat-circle:hover .cc-img { outline-color: var(--green); box-shadow: var(--shadow); transform: translateY(-5px); }
.cat-circle:hover .cc-img img { transform: scale(1.08); }
.cc-name { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.cc-count { font-size: 12px; color: var(--muted); margin-top: -4px; }

/* ---------- Product grid ---------- */
.prod-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.prod-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-xs); transition: .3s var(--ease); display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-line); }
.prod-thumb { position: relative; aspect-ratio: 1; background: var(--green-soft); display: grid; place-items: center; padding: 22px; }
.prod-thumb img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: .4s var(--ease); }
.prod-card:hover .prod-thumb img { transform: scale(1.06); }
.prod-fav { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--muted); display: grid; place-items: center; box-shadow: var(--shadow-xs); font-size: 14px; transition: .2s var(--ease); }
.prod-fav:hover { color: #e0556b; transform: scale(1.1); }
.prod-body { padding: 16px 17px 17px; display: flex; flex-direction: column; flex: 1; }
.prod-body h4 { font-size: 14.5px; font-weight: 500; line-height: 1.45; min-height: 42px; color: var(--ink); }
.prod-rate { display: flex; gap: 2px; color: var(--gold); font-size: 11px; margin-top: 9px; align-items: center; }
.prod-rate span { color: var(--muted); margin-left: 6px; font-size: 12px; }
.prod-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.prod-price { font-size: 19px; font-weight: 700; color: var(--ink); }
.prod-price span { font-size: 12px; font-weight: 500; color: var(--muted); }
.add-cart { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 15px; transition: .25s var(--ease); }
.add-cart:hover { background: var(--green-dark); transform: scale(1.08); }
.add-cart.added { background: var(--gold); }

/* ---------- Promo ---------- */
.promo { background: linear-gradient(120deg, var(--green-darker), var(--green-dark)); border-radius: var(--radius-lg); color: #fff; padding: 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow); overflow: hidden; position: relative; }
.promo::before { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.05); }
.promo h3 { font-size: 27px; margin-bottom: 8px; font-weight: 700; letter-spacing: -.4px; }
.promo p { opacity: .85; font-weight: 400; }
.promo .btn { background: #fff; color: var(--green-dark); font-weight: 600; padding: 15px 32px; border-radius: 999px; transition: .25s var(--ease); z-index: 1; }
.promo .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: center; transition: .25s var(--ease); }
.feature:hover { box-shadow: var(--shadow-xs); }
.feature .f-ico { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; background: var(--green-soft); color: var(--green-dark); flex-shrink: 0; }
.feature b { display: block; font-size: 15px; font-weight: 600; }
.feature small { color: var(--muted); }

/* ---------- Video gallery ---------- */
.video-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.video-grid .video-card:nth-child(-n+3) { grid-column: span 4; }
.video-grid .video-card:nth-child(n+4) { grid-column: span 3; }
.video-card { cursor: pointer; display: block; }
.vc-thumb { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, var(--green), var(--green-darker)); box-shadow: var(--shadow-xs); transition: .3s var(--ease); }
.vc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.video-card:hover .vc-thumb { box-shadow: var(--shadow); transform: translateY(-4px); }
.video-card:hover .vc-thumb img { transform: scale(1.07); }
.vc-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,35,21,.45), transparent 55%); }
.vc-play { position: absolute; inset: 0; margin: auto; width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--green-dark); display: grid; place-items: center; font-size: 19px; padding-left: 3px; z-index: 2; box-shadow: var(--shadow); transition: .25s var(--ease); }
.video-card:hover .vc-play { transform: scale(1.14); background: #fff; }
.vc-info { padding: 12px 4px 0; }
.vc-info h4 { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.35; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-xs); display: flex; flex-direction: column; transition: .25s var(--ease); }
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.rc-quote { position: absolute; top: 22px; right: 22px; font-size: 32px; color: var(--green-soft-2); }
.rc-stars { color: var(--gold); font-size: 13px; display: flex; gap: 2px; margin-bottom: 14px; }
.rc-text { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.rc-author { display: flex; align-items: center; gap: 12px; }
.rc-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #3aa86c, var(--green-dark)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.rc-author b { display: block; font-size: 14.5px; color: var(--ink); }
.rc-author small { color: var(--muted); font-size: 12.5px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-darker); color: #b9ddc8; margin-top: 56px; padding: 58px 0 30px; }
.footer .cols { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 38px; }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: 20px; font-weight: 600; letter-spacing: .2px; }
.footer .logo { margin-bottom: 18px; }
.footer .logo-text .lt-name { color: #fff; }
.footer .logo-text .lt-name b { color: #fff; }
.footer .logo-text small { color: #7bbf98; }
.footer p { font-size: 14px; line-height: 1.8; opacity: .8; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14px; opacity: .82; transition: .2s var(--ease); }
.footer ul a:hover { color: #fff; opacity: 1; padding-left: 5px; }
.footer .contact-line { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; font-size: 14px; opacity: .85; }
.footer .contact-line i { color: #6fcf97; width: 18px; }
.footer .fsocial { display: flex; gap: 11px; margin-top: 18px; }
.footer .fsocial a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .22s var(--ease); }
.footer .fsocial a:hover { background: #fff; color: var(--green-dark); transform: translateY(-3px); }
.footer .copyright { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: 13px; opacity: .6; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 22px 0 0; font-size: 13px; color: var(--muted); display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--green-dark); font-weight: 500; }
.breadcrumb i { font-size: 9px; opacity: .6; }

/* ---------- Category hero ---------- */
.cat-hero { background: linear-gradient(120deg, var(--green-darker), var(--green-dark)); border-radius: var(--radius-lg); color: #fff; padding: 40px; display: flex; align-items: center; gap: 24px; margin-top: 20px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cat-hero::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.05); }
.cat-hero .ch-ico { width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; font-size: 32px; flex-shrink: 0; }
.cat-hero h1 { font-size: 30px; font-weight: 700; letter-spacing: -.4px; }
.cat-hero p { opacity: .82; margin-top: 2px; }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; margin-top: 26px; align-items: start; }
.pd-gallery { background: var(--green-soft); border-radius: var(--radius-lg); padding: 44px; position: relative; display: grid; place-items: center; aspect-ratio: 1; }
.pd-gallery img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pd-video-btn { position: absolute; bottom: 22px; right: 22px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.95); color: var(--ink); padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; box-shadow: var(--shadow); transition: .22s var(--ease); }
.pd-video-btn i { color: #e0556b; font-size: 18px; }
.pd-video-btn:hover { transform: scale(1.04); }
.pd-info { padding-top: 8px; }
.pd-cat-tag { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--green-dark); background: var(--green-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.pd-info h1 { font-size: 34px; color: var(--ink); line-height: 1.2; font-weight: 700; letter-spacing: -.6px; }
.pd-code { color: var(--muted); margin: 14px 0; font-size: 14px; }
.pd-code b { color: var(--ink-2); font-weight: 600; }
.pd-rate-row { display: flex; align-items: center; gap: 8px; color: var(--gold); font-size: 14px; margin-bottom: 6px; }
.pd-rate-row span { color: var(--muted); font-size: 13px; }
.pd-price { font-size: 38px; font-weight: 700; color: var(--ink); margin: 6px 0 26px; letter-spacing: -1px; }
.pd-price small { font-size: 16px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn-primary { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 11px; background: var(--green-dark); color: #fff; font-weight: 600; font-size: 16px; padding: 17px 30px; border-radius: 16px; transition: .25s var(--ease); }
.btn-primary:hover { background: var(--green-darker); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(30,109,68,.28); }
.btn-buy { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 11px; background: var(--gold); color: #4a3800; font-weight: 700; font-size: 16px; padding: 17px 30px; border-radius: 16px; transition: .25s var(--ease); }
.btn-buy:hover { background: var(--yellow-dark, #c99416); filter: brightness(.96); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(217,168,44,.35); }
.btn-fav { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 16px; border: 1.5px solid var(--green-line); color: var(--ink-2); background: #fff; font-weight: 600; font-size: 15px; padding: 16px 24px; transition: .22s var(--ease); }
.btn-fav:hover, .btn-fav.on { border-color: #e0556b; color: #e0556b; background: #fdf2f3; }
.pd-contact { position: relative; border-top: 1px solid var(--line); padding-top: 22px; }
.pd-contact-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 11px; background: var(--green-soft); color: var(--green-dark); font-weight: 700; font-size: 15.5px; padding: 16px; border-radius: 16px; border: 1.5px solid var(--green-line); transition: .2s var(--ease); }
.pd-contact-btn:hover { background: var(--green-soft-2); }
.pd-contact-btn .chev { font-size: 12px; transition: transform .25s var(--ease); }
.pd-contact-menu { position: absolute; left: 0; right: 0; bottom: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; z-index: 20; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s var(--ease); }
.pd-contact-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.pd-contact-menu a { display: flex; align-items: center; gap: 14px; padding: 16px 20px; font-weight: 700; font-size: 15px; color: var(--ink); transition: .15s var(--ease); }
.pd-contact-menu a small { margin-left: auto; font-weight: 500; font-size: 12.5px; color: var(--muted); }
.pd-contact-menu a:hover { background: var(--green-soft); }
.pd-contact-menu a + a { border-top: 1px solid var(--line); }
.pd-contact-menu a i { width: 24px; text-align: center; font-size: 17px; color: var(--green); }
.pd-contact-menu a .fa-whatsapp { color: #25D366; }
.pd-perks { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 22px; }
.pd-perks span { display: inline-flex; align-items: center; gap: 13px; color: var(--ink-2); font-size: 14.5px; padding: 9px 0; }
.pd-perks span i { width: 38px; height: 38px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; font-size: 15px; flex-shrink: 0; }
.pd-desc { margin-top: 50px; }
.pd-desc h3 { font-size: 23px; color: var(--ink); margin-bottom: 18px; font-weight: 700; letter-spacing: -.4px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.pd-desc p { margin-bottom: 16px; color: var(--ink-2); font-size: 15.5px; line-height: 1.8; }
.prod-bullets { margin: 4px 0 22px; padding: 0; list-style: none; display: grid; gap: 11px; }
.prod-bullets li { position: relative; padding-left: 32px; color: var(--ink-2); font-size: 15px; }
.prod-bullets li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--green); font-size: 11px; background: var(--green-soft); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; }
.pd-video { margin-top: 40px; background: linear-gradient(160deg, #fff, var(--green-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.pd-video-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pd-video-badge { width: 50px; height: 50px; border-radius: 50%; background: var(--green-dark); color: #fff; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; box-shadow: 0 8px 18px rgba(30,109,68,.3); }
.pd-video-label h4 { font-size: 18px; font-weight: 700; color: var(--ink); }
.pd-video-label small { color: var(--muted); font-size: 13px; }
.pd-video-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pd-video-frame iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }

/* ---------- Video modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; background: rgba(8,28,18,.85); display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(8px); }
.modal.open { display: flex; }
.modal-inner { width: min(900px, 100%); position: relative; }
.modal-inner iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 18px; }
.modal-close { position: absolute; top: -50px; right: 0; color: #fff; font-size: 28px; }

/* ---------- Quick buy form ---------- */
.qb-overlay { position: fixed; inset: 0; z-index: 210; background: rgba(8,28,18,.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: .3s var(--ease); }
.qb-overlay.open { opacity: 1; visibility: visible; }
.qb-card { width: min(480px, 100%); max-height: 92vh; overflow-y: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transform: translateY(24px) scale(.98); transition: .35s var(--ease); }
.qb-overlay.open .qb-card { transform: translateY(0) scale(1); }
.qb-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 24px 24px 18px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; border-radius: var(--radius-lg) var(--radius-lg) 0 0; z-index: 2; }
.qb-head h3 { font-size: 20px; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.qb-head h3 i { color: var(--gold); }
.qb-head p { font-size: 13px; color: var(--muted); margin-top: 5px; }
.qb-close { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: var(--green-soft); color: var(--ink-2); font-size: 17px; display: grid; place-items: center; transition: .2s var(--ease); }
.qb-close:hover { background: var(--green-soft-2); }
.qb-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 16px; }
.qb-row { display: flex; gap: 12px; }
.qb-row .qb-field { flex: 1; }
.qb-field { display: flex; flex-direction: column; gap: 7px; }
.qb-field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.qb-field input, .qb-field select { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 13px; font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--bg); outline: none; transition: .2s var(--ease); }
.qb-field input::placeholder { color: #a6b6ac; }
.qb-field input:focus, .qb-field select:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(44,140,90,.08); }
.qb-date { display: flex; gap: 10px; }
.qb-date select { flex: 1; cursor: pointer; }
.qb-submit { width: 100%; margin-top: 6px; }
.qb-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 50px 30px 56px; }
.qb-success.show { display: flex; }
.qb-check { width: 88px; height: 88px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-size: 40px; margin-bottom: 22px; animation: qbPop .5s var(--ease) both; }
.qb-check i { animation: qbCheck .4s .2s var(--ease) both; }
.qb-success h3 { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1.3; }
.qb-success p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }
@keyframes qbPop { 0% { transform: scale(0); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
@keyframes qbCheck { 0% { transform: scale(0) rotate(-25deg); opacity: 0; } 100% { transform: scale(1) rotate(0); opacity: 1; } }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(8,28,18,.45); z-index: 150; opacity: 0; visibility: hidden; transition: .3s var(--ease); backdrop-filter: blur(2px); }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(410px, 92%); background: #fff; z-index: 160; transform: translateX(100%); transition: .4s var(--ease); display: flex; flex-direction: column; box-shadow: -10px 0 50px rgba(0,0,0,.18); }
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.cart-head button { color: var(--muted); font-size: 19px; width: 38px; height: 38px; border-radius: 50%; transition: .2s var(--ease); }
.cart-head button:hover { background: var(--green-soft); color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px; }
.cart-item { display: flex; gap: 14px; padding: 14px; border-radius: 16px; background: var(--bg); margin-bottom: 12px; }
.cart-item img { width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 12px; padding: 6px; }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-info h5 { font-size: 14px; font-weight: 500; }
.cart-item .ci-info .ci-price { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.cart-item .ci-old { color: #d24b4b; font-weight: 600; font-size: 12.5px; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.cart-item .ci-new { color: var(--green-dark); font-weight: 800; font-size: 15px; }
.cart-item .ci-badge { background: #fdeaea; color: #d24b4b; font-size: 10.5px; font-weight: 800; padding: 2px 7px; border-radius: 999px; }
.cart-save { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 13.5px; color: #d24b4b; font-weight: 600; }
.cart-save span { display: inline-flex; align-items: center; gap: 7px; }
.cart-save b { font-weight: 800; }
.cart-item .ci-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-item .ci-qty button { width: 28px; height: 28px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-weight: 700; transition: .2s var(--ease); }
.cart-item .ci-qty button:hover { background: var(--green); color: #fff; }
.cart-item .ci-remove { color: #c44; align-self: flex-start; font-size: 14px; }
.cart-empty { text-align: center; color: var(--muted); padding: 64px 20px; }
.cart-empty i { font-size: 52px; color: var(--green-soft-2); margin-bottom: 18px; }
.cart-foot { padding: 22px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; font-size: 19px; font-weight: 700; margin-bottom: 16px; }
.cart-total span { color: var(--green-dark); }
.cart-foot .btn-primary { width: 100%; }

/* ---------- Category bottom sheet ---------- */
.sheet-overlay { position: fixed; inset: 0; background: rgba(8,28,18,.5); z-index: 170; opacity: 0; visibility: hidden; transition: .35s var(--ease); backdrop-filter: blur(3px); }
.sheet-overlay.open { opacity: 1; visibility: visible; }
.cat-sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; background: #fff; border-radius: 28px 28px 0 0; transform: translateY(110%); transition: .45s var(--ease); box-shadow: 0 -18px 50px rgba(0,0,0,.22); max-height: 88vh; display: flex; flex-direction: column; padding-bottom: env(safe-area-inset-bottom); }
.cat-sheet.open { transform: translateY(0); }
.sheet-handle { width: 44px; height: 5px; border-radius: 999px; background: var(--green-soft-2); margin: 12px auto 2px; }
.sheet-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 22px 16px; }
.sheet-head h3 { font-size: 20px; font-weight: 700; color: var(--ink); }
.sheet-head button { width: 38px; height: 38px; border-radius: 50%; background: var(--green-soft); color: var(--ink-2); font-size: 17px; display: grid; place-items: center; }
.sheet-list { overflow-y: auto; padding: 0 22px 14px; }
.sheet-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 4px; border-bottom: 1px solid var(--line); transition: .2s var(--ease); }
.sheet-row:last-child { border-bottom: none; }
.sheet-row:active { background: var(--green-soft); border-radius: 12px; }
.sheet-row .sr-name { font-size: 16px; font-weight: 600; color: var(--ink); }
.sheet-row .sr-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.sheet-row .sr-meta i { font-size: 12px; color: var(--green); }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 96px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 999px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 300; opacity: 0; visibility: hidden; transition: .3s var(--ease); display: flex; gap: 10px; align-items: center; }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast i { color: #6fcf97; }

/* ---------- Fly to cart effect ---------- */
.fly-dot { position: fixed; z-index: 999; width: 48px; height: 48px; border-radius: 50%; background: var(--green-dark); color: #fff; display: grid; place-items: center; font-size: 18px; box-shadow: 0 12px 26px rgba(30,109,68,.45); pointer-events: none; transition: transform .6s cubic-bezier(.45,.05,.3,1), opacity .6s ease-in; will-change: transform, opacity; }
.cart-bump { animation: cartBump .45s var(--ease); }
@keyframes cartBump { 0%,100% { transform: scale(1); } 35% { transform: scale(1.32); } 65% { transform: scale(.92); } }
.btn-primary.done { background: var(--green) !important; }
.btn-primary.done i { color: #fff; }

/* ---------- Mobile bottom nav ---------- */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); display: none; grid-template-columns: repeat(4,1fr); box-shadow: 0 -4px 24px rgba(17,73,46,.08); padding: 10px 6px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--muted); font-weight: 500; padding: 4px 0; position: relative; transition: .2s var(--ease); }
.bottom-nav a i { font-size: 20px; }
.bottom-nav a.active { color: var(--green-dark); font-weight: 600; }
.bottom-nav a .badge { position: absolute; top: -3px; right: 50%; margin-right: -24px; min-width: 18px; height: 18px; padding: 0 4px; background: var(--green-dark); color: #fff; border-radius: 999px; font-size: 10px; font-weight: 700; display: grid; place-items: center; border: 2px solid #fff; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4,1fr); gap: 16px 14px; }
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .features { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .footer .cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mainnav .container { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .mainnav a { white-space: nowrap; }
}

@media (max-width: 768px) {
  :root { --header-h: 58px; }
  body { padding-bottom: 80px; }

  .topbar { display: none; }
  .mainnav { display: none; }

  /* აპის სტილის ჰედერი */
  .header { background: #fff; backdrop-filter: none; padding: 10px 0 12px; border-bottom: 1px solid var(--line); }
  .header .container { flex-wrap: wrap; gap: 12px; height: auto; }
  .logo { gap: 10px; }
  .logo-mark { width: 42px; height: 42px; border-radius: 13px; }
  .logo-mark svg { width: 22px; height: 22px; }
  .logo-text .lt-name { font-size: 18.5px; }
  .logo-text small { font-size: 8.5px; letter-spacing: 1.8px; margin-top: 5px; }
  .header-actions { gap: 12px; margin-left: auto; }   /* მარჯვნივ, გაშლილად */
  .icon-btn { width: 44px; height: 44px; font-size: 19px; border-radius: 12px; }
  .icon-btn.hide-mobile { display: none; }   /* კონტაქტი + კალათა იმალება ზემოთ */
  .menu-toggle { display: grid; }            /* მენიუს იკონი ჩანს */
  .search { order: 3; flex-basis: 100%; max-width: 100%; margin: 0; padding: 12px 18px; }

  /* აპის სტილის ბანერ-სლაიდერი — დაბალი, ლამაზი */
  .hero { padding: 14px 0 2px; }
  .slider { aspect-ratio: 16 / 8; border-radius: 22px; box-shadow: 0 14px 30px rgba(17,73,46,.16); }
  .slide { padding: 0 22px; align-items: center; background-position: center right; }
  .slide-1, .slide-2, .slide-3 { background-image: linear-gradient(100deg, rgba(10,45,27,.92) 6%, rgba(17,73,46,.78) 42%, rgba(17,73,46,.3) 100%), var(--mob-bg); }
  .slide-1 { --mob-bg: url("https://media.licdn.com/dms/image/v2/C561BAQG2oj7eDDWtHA/company-background_1536_768/company-background_1536_768/0/1584226390143?e=2147483647&v=beta&t=QVKR39aggycwICgAwtmI9Lcir4C9KU6t930vsToGZ0U"); }
  .slide-2 { --mob-bg: url("https://images.jdmagicbox.com/comp/vadodara/w7/0265px265.x265.210509120512.t1w7/catalogue/forever-living-products-distributor-vadodara-health-care-product-distributors-30xfg76mk7.jpg?clr="); }
  .slide-3 { --mob-bg: url("https://www.shopforeverlivingproducts.com/wp-content/uploads/2021/01/drinks_banner_1120x350_1558436877329.jpg.webp"); }
  .slide-text { max-width: 76%; }
  .slide-text h2 { font-size: 20px; line-height: 1.3; font-weight: 700; }
  .slider-arrow { display: none; }
  .slider-dots { left: 22px; bottom: 14px; }
  .slider-dots button { width: 7px; height: 7px; background: rgba(255,255,255,.5); }
  .slider-dots button.active { background: #fff; width: 22px; }

  .section { padding: 30px 0; }
  .section-head { margin-bottom: 18px; }
  .section-head h3 { font-size: 22px; }

  .cat-grid { grid-template-columns: repeat(3,1fr); gap: 18px 12px; }
  .cc-img i { font-size: 24px; }
  .cc-name { font-size: 13px; }
  .cc-count { font-size: 11px; }

  .prod-grid { grid-template-columns: repeat(2,1fr); gap: 13px; }
  .prod-body { padding: 13px; }
  .prod-body h4 { font-size: 13px; min-height: 38px; }
  .prod-price { font-size: 17px; }
  .add-cart { width: 40px; height: 40px; }

  .promo { padding: 30px 26px; text-align: center; justify-content: center; }
  .promo h3 { font-size: 22px; }

  .features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature { padding: 18px; flex-direction: column; text-align: center; gap: 11px; }

  .footer { padding: 44px 0 26px; }
  .footer .cols { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer .logo, .footer .contact-line, .footer .fsocial { justify-content: center; }
  .footer ul a:hover { padding-left: 0; }

  /* დეტალური ნახვა — მობილური */
  .pd-grid { grid-template-columns: 1fr; gap: 0; margin-top: 16px; }
  .pd-gallery { aspect-ratio: 1; padding: 30px; border-radius: var(--radius); }
  .pd-info { padding-top: 24px; }
  .pd-info h1 { font-size: 25px; }
  .pd-price { font-size: 30px; margin: 6px 0 22px; }
  .pd-actions { flex-direction: row; flex-wrap: nowrap; gap: 9px; }
  .pd-actions .btn-primary, .pd-actions .btn-buy, .pd-actions .btn-fav {
    flex: 1 1 0; width: auto; min-width: 0;
    flex-direction: column; gap: 6px; padding: 13px 6px;
    font-size: 12px; font-weight: 600; border-radius: 14px; text-align: center; line-height: 1.2;
  }
  .pd-actions .btn-primary i, .pd-actions .btn-buy i, .pd-actions .btn-fav i { font-size: 18px; }
  .pd-actions .btn-primary.done { font-size: 11px; }
  .pd-perks { padding-top: 18px; }
  .pd-video { padding: 16px; }
  .pd-video-frame iframe { aspect-ratio: 16/10; }
  .pd-desc { margin-top: 36px; }
  .pd-desc h3 { font-size: 20px; }
  .pd-desc p { font-size: 14.5px; }

  .cat-hero { padding: 24px; gap: 18px; border-radius: var(--radius); }
  .cat-hero h1 { font-size: 22px; }
  .cat-hero .ch-ico { width: 60px; height: 60px; font-size: 26px; }

  /* ვიდეო გალერეა — ჰორიზონტალური სქროლი (2 ხილული) */
  .video-grid { display: flex; grid-template-columns: none; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; margin: 0 -4px; padding-left: 4px; padding-right: 4px; }
  .video-grid .video-card { flex: 0 0 calc(50% - 6px); scroll-snap-align: start; grid-column: auto !important; }
  .vc-play { width: 46px; height: 46px; font-size: 15px; }
  .vc-info h4 { font-size: 12.5px; }
  .vc-info { padding-top: 9px; }

  /* შეფასებები — ჰორიზონტალური სქროლი */
  .reviews-grid { display: flex; grid-template-columns: none; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .reviews-grid .review-card { flex: 0 0 84%; scroll-snap-align: start; padding: 22px 20px; }

  .video-grid::-webkit-scrollbar, .reviews-grid::-webkit-scrollbar { height: 5px; }
  .video-grid::-webkit-scrollbar-thumb, .reviews-grid::-webkit-scrollbar-thumb { background: var(--green-soft-2); border-radius: 999px; }

  .bottom-nav { display: grid; }
}

@media (min-width: 769px) {
  .cat-sheet, .sheet-overlay { display: none !important; }
}

@media (max-width: 380px) {
  .cat-grid, .prod-grid { gap: 10px; }
  .slide-text h2 { font-size: 22px; }
}
