@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ─────────────────────────────────────────
   ТОКЕНИ
───────────────────────────────────────── */
:root {
  /* Brand green #4FC94F */
  --g:       #4FC94F;
  --g-hover: #3AB43A;
  --g-dark:  #258925;
  --g-900:   #0D3A0D;
  --g-800:   #155015;
  --g-700:   #1E7B1E;
  --g-600:   #2A9A2A;
  --g-100:   #DCF9DC;
  --g-50:    #F0FDF0;

  --gold:    #F5A623;
  --gold-dk: #C8840A;
  --gold-lt: #FEF0D0;

  --red:     #E53935;
  --red-lt:  #FDEAEA;

  /* Surfaces */
  --bg:      #F8F9F7;
  --bg-2:    #F1F3EF;
  --white:   #FFFFFF;
  --border:  #E2E6DF;
  --border2: #CBD1C7;

  /* Text */
  --t-900: #141A12;
  --t-700: #2B3628;
  --t-500: #5A6B56;
  --t-300: #96A890;
  --t-200: #BCC8B7;

  /* Typography */
  --font-h: 'Unbounded', system-ui, sans-serif;
  --font-b: 'Manrope',   system-ui, sans-serif;

  /* Spacing (8px grid) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;

  /* Radii */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 16px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(0,0,0,0.06);
  --sh:    0 4px 16px rgba(0,0,0,0.08);
  --sh-lg: 0 12px 40px rgba(0,0,0,0.12);

  --max-w: 1320px;
  --nav-h: 72px;
}

/* ─────────────────────────────────────────
   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-b); font-size: 15px; line-height: 1.65; color: var(--t-900); background: var(--bg); -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────
   ТИПОГРАФІКА
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  line-height: 1.15;
  font-weight: 700;
  color: var(--t-900);
  text-wrap: balance;
}
h1 { font-size: clamp(1.75rem, 4.5vw, 3.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.4rem,  3.5vw, 2.4rem);  letter-spacing: -0.025em; }
h3 { font-size: clamp(1.1rem,  2.5vw, 1.6rem);  letter-spacing: -0.02em; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }
p  { color: var(--t-700); line-height: 1.75; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--sp-3);
}
@media (min-width: 768px)  { .container { padding: 0 var(--sp-5); } }
@media (min-width: 1400px) { .container { padding: 0 var(--sp-8); } }

/* ─────────────────────────────────────────
   КНОПКИ
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-1);
  font-family: var(--font-b); font-weight: 700; font-size: 14px;
  padding: 13px var(--sp-4); border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.18s ease; white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary  { background: var(--g);     color: #fff;          border-color: var(--g); }
.btn-primary:hover { background: var(--g-hover); border-color: var(--g-hover); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(79,201,79,0.35); }
.btn-outline  { background: transparent;  color: var(--g-700);  border-color: var(--g-700); }
.btn-outline:hover { background: var(--g-50); }
.btn-gold     { background: var(--gold);  color: #fff;          border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-1px); }
.btn-white    { background: #fff;         color: var(--g-700);  border-color: #fff; }
.btn-white:hover  { background: var(--g-50); }
.btn-ghost    { background: transparent;  color: var(--t-700);  border-color: var(--border); }
.btn-ghost:hover  { border-color: var(--border2); background: var(--white); }
.btn-sm  { padding: 9px var(--sp-2);  font-size: 13px; }
.btn-lg  { padding: 15px var(--sp-5); font-size: 15px; }
.btn-xl  { padding: 18px var(--sp-6); font-size: 16px; }
.btn-block { width: 100%; }

/* CART BTN + TOAST */
.nav-cart-btn {
  position: relative;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--t-500); transition: all .15s; flex-shrink: 0;
  text-decoration: none;
}
.nav-cart-btn:hover { border-color: var(--g); color: var(--g-700); background: var(--g-50); }
.nav-cart-btn svg { width: 18px; height: 18px; }
.cart-count-badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--g); color: #fff; border-radius: 100px;
  font-size: 10px; font-weight: 800; line-height: 1;
  display: none; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.va-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--g-900); color: #fff; padding: 12px 20px;
  border-radius: 100px; font-size: 14px; font-weight: 600;
  box-shadow: var(--sh-lg); z-index: 700;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transition: all .3s cubic-bezier(.4,0,.2,1);
}
.va-toast svg { color: var(--g); }
.va-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─────────────────────────────────────────
   SEARCH
───────────────────────────────────────── */
/* Trigger button in nav */
.nav-search-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--t-500); transition: all .15s; flex-shrink: 0;
}
.nav-search-btn:hover { border-color: var(--g); color: var(--g-700); background: var(--g-50); }
.nav-search-btn svg { width: 17px; height: 17px; }

/* Full-screen search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(9,45,14,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 80px; padding-left: 16px; padding-right: 16px;
}
.search-overlay.open { opacity: 1; pointer-events: all; }

.search-box {
  width: 100%; max-width: 680px;
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--sh-lg);
  transform: translateY(-16px); transition: transform .25s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.search-overlay.open .search-box { transform: none; }

.search-input-row {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--border);
}
.search-input-row svg { width: 20px; height: 20px; color: var(--t-300); flex-shrink: 0; margin: 0 14px 0 18px; }
.search-input-field {
  flex: 1; padding: 18px 0; font-family: var(--font-b);
  font-size: 17px; font-weight: 500; border: none; outline: none;
  color: var(--t-900); background: transparent;
}
.search-input-field::placeholder { color: var(--t-200); }
.search-close-btn {
  width: 48px; height: 58px; border: none; background: none;
  cursor: pointer; color: var(--t-300); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: color .15s; flex-shrink: 0;
}
.search-close-btn:hover { color: var(--t-900); }

/* Suggestions list */
.search-results { padding: 8px 0 8px; }
.search-section-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--t-300);
  padding: 8px 18px 4px;
}
.search-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 18px; cursor: pointer; transition: background .12s;
  text-decoration: none;
}
.search-item:hover { background: var(--g-50); }
.search-item-img {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  overflow: hidden; flex-shrink: 0; background: var(--bg-2);
}
.search-item-img img { width: 100%; height: 100%; object-fit: cover; }
.search-item-name { font-size: 14px; font-weight: 700; color: var(--t-900); line-height: 1.3; }
.search-item-cat  { font-size: 12px; color: var(--t-300); margin-top: 2px; }
.search-item-tag  { margin-left: auto; flex-shrink: 0; }
.search-empty { padding: 32px 18px; text-align: center; color: var(--t-300); font-size: 14px; }
.search-empty svg { width: 32px; height: 32px; margin: 0 auto 10px; opacity: .3; display: block; }
.search-footer {
  border-top: 1px solid var(--border); padding: 12px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.search-footer-tip { font-size: 12px; color: var(--t-200); display: flex; align-items: center; gap: 6px; }
.search-kbd { background: var(--bg-2); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; font-family: monospace; font-size: 11px; color: var(--t-500); }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; gap: var(--sp-3);
}
.nav-logo {
  display: flex; align-items: center; gap: var(--sp-1); flex-shrink: 0; text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo-fallback {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 40px; height: 40px; background: var(--g); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; height: 22px; }
.nav-logo-text .name { font-family: var(--font-h); font-weight: 800; font-size: 14px; color: var(--t-900); line-height: 1.1; letter-spacing: -0.02em; }
.nav-logo-text .sub  { font-size: 9px;  font-weight: 500; color: var(--t-300); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: none; flex: 1; justify-content: center; }
@media (min-width: 1100px) {
  .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
  .nav-links > li { position: relative; }
  .nav-links > li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 7px 14px; font-size: 13px; font-weight: 600;
    color: var(--t-700); border-radius: var(--r-sm); transition: all 0.15s;
    cursor: pointer;
  }
  .nav-links > li > a:hover, .nav-links > li > a.active { color: var(--g-700); background: var(--g-50); }
  .nav-links .has-dd > a::after {
    content: ''; width: 6px; height: 6px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px); margin-left: 2px;
    transition: transform .2s;
  }
  .nav-links .has-dd:hover > a::after { transform: rotate(225deg) translateY(2px); }
  .nav-dd {
    position: absolute; top: calc(100% + 4px); left: 0;
    padding: 16px 8px;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--r); box-shadow: var(--sh-lg);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: all .18s; list-style: none; z-index: 80;
  }
  .nav-links .has-dd:hover .nav-dd { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-dd::before {
    content: ''; position: absolute; top: -6px; left: 0; right: 0; height: 6px;
  }
  .nav-dd.dd-mega {
    display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 8px 16px; min-width: 520px;
  }
  .nav-dd.dd-simple { min-width: 240px; }
  .nav-dd .dd-group { padding: 0 8px; }
  .nav-dd .dd-group-title {
    display: block; font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--g-700); padding: 6px 8px 10px;
    border-bottom: 1px solid var(--border); margin-bottom: 6px;
  }
  .nav-dd a {
    display: block; padding: 7px 10px;
    font-size: 13px; font-weight: 500;
    color: var(--t-700); border-radius: var(--r-sm);
    line-height: 1.4;
  }
  .nav-dd a:hover { background: var(--g-50); color: var(--g-700); }
/* Mobile menu sub-groups */
.mobile-menu nav .mm-group { display: block; padding: 8px 24px 4px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--g-600); }
.nav-right { display: flex; align-items: center; gap: var(--sp-2); margin-left: auto; }
.nav-phone-block { display: none; flex-direction: column; align-items: flex-end; line-height: 1.2; }
@media (min-width: 768px) { .nav-phone-block { display: flex; } }
.nav-phone-main { font-family: 'Unbounded', sans-serif !important; font-weight: 600; font-size: 14px; color: var(--t-900); letter-spacing: -0.01em; }
.nav-phone-sub  { font-family: 'Manrope', sans-serif; font-size: 10px; color: var(--t-300); font-weight: 500; }

.nav-burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--t-900); border-radius: 2px; transition: all 0.2s; }
@media (min-width: 1100px) { .nav-burger { display: none; } }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 500; background: var(--white);
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: var(--sp-3) var(--sp-3); border-bottom: 1px solid var(--border); }
.mobile-menu-close { background: none; border: none; cursor: pointer; font-size: 22px; color: var(--t-700); }
.mobile-menu nav { padding: var(--sp-3); }
.mobile-menu nav a { display: block; font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--t-900); padding: var(--sp-2) 0; border-bottom: 1px solid var(--border); letter-spacing: -0.02em; }
.mobile-menu-cta { padding: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-2); }

/* ─────────────────────────────────────────
   BADGES
───────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; line-height: 1.2; vertical-align: middle; white-space: nowrap; }
.badge svg { width: 11px; height: 11px; flex-shrink: 0; }
.badge-green   { background: var(--g-100); color: var(--g-700); }
.badge-gold    { background: linear-gradient(135deg, #FFF3DC 0%, #FFE5B4 100%); color: #8B5A1A; box-shadow: inset 0 0 0 1px rgba(212,160,80,.25); }
.badge-hot     { background: linear-gradient(135deg, #FFE8DC 0%, #FFD0B5 100%); color: #B33A1A; box-shadow: inset 0 0 0 1px rgba(220,80,40,.2); }
.badge-hot svg { color: #E8552B; }
.badge-red     { background: var(--red-lt);  color: var(--red); }
.badge-gray    { background: var(--bg-2);    color: var(--t-500); }
.badge-instock { background: #E8F9E8; color: #1A7A1A; }

/* ─────────────────────────────────────────
   SECTION UTILITY
───────────────────────────────────────── */
.section-label {
  font-family: var(--font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.section-label.green { color: var(--g-600); }
.section-label.gold  { color: var(--gold-dk); }
.section-label.white { color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────
   PRODUCT CARD
───────────────────────────────────────── */
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s;
  text-decoration: none; display: block; color: inherit;
}
.product-card:hover { border-color: var(--border2); box-shadow: var(--sh); transform: translateY(-3px); }
.product-card-img { aspect-ratio: 1; overflow: hidden; background: var(--bg-2); position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge { position: absolute; top: 12px; left: 12px; }
.product-card-body { padding: var(--sp-2) var(--sp-3); }
.product-card-cat  { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t-300); margin-bottom: var(--sp-1); }
.product-card-name { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--t-900); margin-bottom: var(--sp-1); line-height: 1.35; letter-spacing: -0.02em; }
.product-card-desc { font-size: 13px; color: var(--t-500); line-height: 1.55; margin-bottom: var(--sp-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-1); }
.product-card-price { font-family: var(--font-h); font-size: 15px; font-weight: 800; color: var(--g-700); letter-spacing: -0.02em; }
.product-card-price span { font-size: 11px; font-weight: 400; color: var(--t-300); }
.product-card-cta  { font-size: 12px; font-weight: 700; color: var(--g-700); padding: 7px 14px; border: 1.5px solid var(--g-100); border-radius: var(--r-sm); transition: all 0.15s; white-space: nowrap; }
.product-card:hover .product-card-cta { background: var(--g); color: #fff; border-color: var(--g); }

/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--t-300); flex-wrap: wrap; padding: var(--sp-2) 0; }
.breadcrumb a { color: var(--t-500); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--g-700); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: var(--t-700); font-weight: 600; }

/* ─────────────────────────────────────────
   TABS
───────────────────────────────────────── */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: var(--sp-4); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { padding: var(--sp-2) var(--sp-3); font-family: var(--font-b); font-size: 14px; font-weight: 700; color: var(--t-500); border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.tab:hover { color: var(--t-900); }
.tab.active { color: var(--g-700); border-bottom-color: var(--g); }

/* ─────────────────────────────────────────
   ACCORDION
───────────────────────────────────────── */
.acc { border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; margin-bottom: var(--sp-1); }
.acc-head { display: flex; justify-content: space-between; align-items: center; padding: 14px var(--sp-2); cursor: pointer; background: var(--bg); transition: background 0.15s; user-select: none; }
.acc-head:hover { background: var(--g-50); }
.acc-head-left { font-size: 14px; font-weight: 700; color: var(--t-900); display: flex; align-items: center; gap: var(--sp-1); }
.acc-arrow { transition: transform 0.22s; color: var(--t-300); font-size: 13px; }
.acc.open .acc-arrow { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc.open .acc-body { max-height: 800px; }
.acc-inner { padding: var(--sp-2); border-top: 1px solid var(--border); }

/* ─────────────────────────────────────────
   FORM
───────────────────────────────────────── */
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--t-700); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 11px 14px; font-family: var(--font-b); font-size: 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--white);
  color: var(--t-900); transition: border-color 0.15s, box-shadow 0.15s; outline: none;
  line-height: 1.4;
}
.form-input:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(79,201,79,0.12); }
.form-input::placeholder { color: var(--t-200); }

/* Normalize <select> so it matches <input> height exactly */
select.form-input {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  cursor: pointer;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%235A6B56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
select.form-input::-ms-expand { display: none; }
textarea.form-input { line-height: 1.55; resize: vertical; min-height: 96px; }

/* QTY */
.qty-wrap { display: flex; border: 1.5px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.qty-btn { width: 44px; height: 48px; background: var(--bg); border: none; cursor: pointer; font-size: 20px; font-weight: 300; color: var(--t-700); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qty-btn:hover { background: var(--g-50); color: var(--g-700); }
.qty-val { width: 56px; height: 48px; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); text-align: center; font-family: var(--font-h); font-size: 16px; font-weight: 700; outline: none; -moz-appearance: textfield; }
.qty-val::-webkit-outer-spin-button, .qty-val::-webkit-inner-spin-button { -webkit-appearance: none; }

/* VARIANT PILLS */
.vpill {
  min-width: 68px; padding: 9px 14px; text-align: center;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer; transition: all 0.15s; background: var(--white);
  font-family: var(--font-b); font-size: 14px; font-weight: 700; color: var(--t-700);
}
.vpill:hover { border-color: var(--g); color: var(--g-700); }
.vpill.active { background: var(--g); color: #fff; border-color: var(--g); }
.vpill.out { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.vpill-label { font-size: 11px; font-weight: 400; display: block; opacity: 0.8; }

/* ─────────────────────────────────────────
   DELIVERY / PAYMENT LISTS
───────────────────────────────────────── */
.d-list, .p-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.d-item, .p-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--t-700); line-height: 1.55; }
.d-ico, .p-ico { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.d-item.highlight { color: var(--g-700); font-weight: 700; }

/* META TABLE */
.meta-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.meta-cell { background: var(--white); padding: 12px 14px; }
.meta-key { font-size: 11px; font-weight: 700; color: var(--t-300); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.meta-val { font-size: 14px; font-weight: 700; color: var(--t-900); }
.meta-val a { color: var(--g-700); }

/* ─────────────────────────────────────────
   SPEC & DOSAGE TABLES
───────────────────────────────────────── */
.spec-tbl { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.spec-tbl th { background: var(--g-900); color: #fff; text-align: left; padding: 11px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.spec-tbl tr { border-bottom: 1px solid var(--border); }
.spec-tbl tr:last-child { border-bottom: none; }
.spec-tbl td { padding: 12px 16px; font-size: 14px; }
.spec-tbl td:first-child { color: var(--t-500); font-weight: 600; width: 45%; background: var(--bg); }
.spec-tbl td:last-child  { color: var(--t-900); font-weight: 700; }

.dosage-tbl { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.dosage-tbl th { background: var(--g-900); color: #fff; padding: 11px 14px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.dosage-tbl td { padding: 11px 14px; border-bottom: 1px solid var(--border); font-size: 13px; }
.dosage-tbl tr:last-child td { border-bottom: none; }
.dosage-tbl tr:nth-child(even) td { background: var(--bg); }

/* ─────────────────────────────────────────
   NOTICE
───────────────────────────────────────── */
.notice { padding: 14px var(--sp-2); border-radius: var(--r-sm); font-size: 14px; line-height: 1.6; }
.notice-warning { background: #FFF8E1; border-left: 3px solid var(--gold);    color: #5A4200; }
.notice-info    { background: var(--g-50); border-left: 3px solid var(--g);   color: var(--g-800); }

/* ─────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────── */
.trust-strip { display: flex; flex-wrap: wrap; gap: var(--sp-3); padding-top: var(--sp-2); border-top: 1px solid var(--border); margin-top: var(--sp-2); }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--t-500); }
.trust-item svg { width: 18px; height: 18px; color: var(--g); flex-shrink: 0; }

/* ─────────────────────────────────────────
   TOAST
───────────────────────────────────────── */
.toast {
  position: fixed; bottom: var(--sp-4); right: var(--sp-4); z-index: 999;
  background: var(--g-900); color: #fff; padding: 14px var(--sp-3);
  border-radius: var(--r); box-shadow: var(--sh-lg);
  font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: var(--sp-1);
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none; max-width: 360px;
}
.toast.show { transform: none; opacity: 1; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--g-900); padding: var(--sp-8) 0 var(--sp-4); }
.footer h5 { font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: var(--sp-2); }
.footer a  { color: rgba(255,255,255,0.5); font-size: 14px; display: block; margin-bottom: 10px; transition: color 0.15s; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: var(--sp-5); margin-bottom: var(--sp-6); }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo-name { font-family: var(--font-h); font-size: 18px; font-weight: 900; color: #fff; margin-bottom: var(--sp-1); letter-spacing: -0.03em; }
.footer-bottom { padding-top: var(--sp-3); border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   UTILS
───────────────────────────────────────── */
hr { border: none; border-top: 1px solid var(--border); }
.text-green { color: var(--g-700); }
