/* ============================================================
   MUSTAFA PREMIUM — Gold Luxury Design System v22
   Dark luxury · Futuristic minimal · Editorial premium
============================================================ */

/* ── TOKENS ── */
:root {
  --bg:      #0A0A0A;
  --bg1:     #0D0D0E;
  --bg2:     #111114;
  --bg3:     #161618;
  --bg4:     #1C1C1F;
  --bg5:     #222226;

  --gold:    #C9A96E;
  --gold-l:  #D4B57E;
  --gold-d:  #A8894A;
  --gold-a:  rgba(201,169,110,0.10);
  --gold-b:  rgba(201,169,110,0.06);
  --gold-g:  rgba(201,169,110,0.22);
  --border:  rgba(201,169,110,0.12);
  --border2: rgba(201,169,110,0.22);

  --text:    #F5F2EC;
  --text2:   #C4BAA8;
  --text3:   #8A7F72;
  --text4:   #4A4540;

  --green:   #4ade80;
  --amber:   #fb923c;
  --red:     #f87171;
  --blue:    #5b8af0;

  --ease:    cubic-bezier(0.22,1,0.36,1);
  --ease-b:  cubic-bezier(0.34,1.56,0.64,1);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201,169,110,0.20);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.playfair, h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
}
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all .28s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.40);
}
.btn-primary:hover::after {
  animation: shimmer .55s ease forwards;
}
.btn-primary:active { transform: translateY(0) scale(0.97); transition-duration: .08s; }

@keyframes shimmer {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(300%)  skewX(-18deg); }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(201,169,110,0.40);
  background: var(--gold-b);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: scale(0.97); transition-duration: .08s; }

/* ── PAGE LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border2);
  animation: loader-pulse 1.5s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%,100% { opacity: 0.6; transform: scale(0.96); }
  50%      { opacity: 1;   transform: scale(1);    }
}
.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-l));
  border-radius: 2px;
  transition: width .4s var(--ease);
}
.loader-text {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text3);
  text-transform: uppercase;
}

/* ── TOAST ── */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text2);
  animation: toast-in .28s var(--ease);
  backdrop-filter: blur(12px);
}
.toast.out { animation: toast-out .25s ease forwards; }
@keyframes toast-in  { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
@keyframes toast-out { to   { opacity:0; transform:translateY(4px); } }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--gold-b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-img { width: 28px; height: 28px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.nav-logo-sub {
  font-size: 8.5px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
  transform-origin: left;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text3);
  transition: color .2s, background .2s;
}
.nav-icon-btn:hover { color: var(--text); background: var(--bg3); }
.nav-tg { color: var(--text3); }
.nav-cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 9px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ease-b);
}
.cart-badge.bump { transform: scale(1.35); }

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.lang-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text4);
  transition: color .2s;
  padding: 2px;
}
.lang-btn.active { color: var(--gold); }
.lang-sep { font-size: 10px; color: var(--text4); }

/* Hidden admin buttons */
.btn-icon, .btn-add { display: none !important; }
.btn-icon.hidden, .btn-add.hidden { display: none !important; }
.btn-icon:not(.hidden) {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--text3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.btn-add:not(.hidden) {
  display: flex !important;
  align-items: center;
  padding: 6px 12px;
  font-size: 11px;
  background: var(--gold);
  color: #0A0A0A;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.admin-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text4);
}
#admin-dot.on { background: var(--green); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 4px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text2);
  border-radius: 2px;
  transition: all .25s var(--ease);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mm-inner { padding: 32px 24px; display: flex; flex-direction: column; height: 100%; }
.mm-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mm-link {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text3);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color .2s, padding-left .2s;
}
.mm-link:hover { color: var(--text); padding-left: 8px; }
.mm-footer { padding-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.mm-tg {
  font-size: 13px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mm-lang { display: flex; align-items: center; gap: 8px; }
.mm-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mm-overlay.show { opacity: 1; visibility: visible; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 45%,
    rgba(10,10,10,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-left { max-width: 580px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-line { display: block; }
.hero-line-gold {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text2);
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%,100% { opacity: 0.4; transform: scaleY(0.8); }
  50%      { opacity: 1;   transform: scaleY(1); }
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text3);
  text-transform: uppercase;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 1;
  min-width: 120px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  cursor: default;
  transition: background .25s var(--ease);
}
.trust-item:hover { background: var(--gold-b); }
.trust-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-a);
  border: 1px solid var(--border2);
  border-radius: 8px;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .25s, box-shadow .25s;
}
.trust-item:hover .trust-icon {
  background: var(--gold-g);
  box-shadow: 0 0 12px rgba(201,169,110,0.20);
}
.trust-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2px;
  transition: color .2s;
}
.trust-item:hover .trust-title { color: var(--gold); }
.trust-sub {
  font-size: 10.5px;
  color: var(--text3);
}
.trust-sub a { color: var(--gold); }
.trust-sub a:hover { text-decoration: underline; }

/* ── CATEGORIES ── */
.categories-section {
  padding: 96px 0;
  background: var(--bg);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: all .28s var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.cat-card:hover {
  background: var(--bg3);
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4), var(--shadow-gold);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-a);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--gold);
  transition: background .25s, box-shadow .25s;
}
.cat-card:hover .cat-card-icon {
  background: var(--gold-g);
  box-shadow: 0 0 16px rgba(201,169,110,0.25);
}
.cat-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
}
.cat-card-sub {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.4;
}
.cat-card-count {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-a);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 20px;
}
.cat-card-all {
  background: var(--gold-b);
  border-color: var(--border2);
}
.cat-card-all .cat-card-title { color: var(--gold); }

/* ── CATALOG ── */
.catalog-section {
  padding: 0 0 96px;
  background: var(--bg);
}
.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.catalog-sub {
  font-size: 13px;
  color: var(--text3);
  margin-top: 4px;
  margin-bottom: 0;
}
.catalog-controls { display: flex; align-items: center; gap: 16px; }
.see-all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--gold);
  transition: opacity .2s;
  white-space: nowrap;
}
.see-all:hover { opacity: 0.75; }
.sort-select {
  height: 36px;
  padding: 0 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text2);
  font-size: 12px;
  cursor: pointer;
  transition: border-color .2s;
}
.sort-select:hover { border-color: var(--border2); }

/* Category pill filters */
.cat-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cat-pill {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text3);
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--border2); color: var(--text2); }
.cat-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0A0A;
}

/* Legacy sidebar compatibility */
.sidebar, nav.sidebar { display: none !important; }
.layout { display: block !important; }
.main { margin: 0 !important; }

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ── PRODUCT CARD ── */
.p-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all .3s var(--ease);
  animation: card-in .4s var(--ease) both;
  position: relative;
  display: flex;
  flex-direction: column;
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.p-card:hover {
  border-color: var(--border2);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-gold);
}
.p-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg3);
  overflow: hidden;
}
.p-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.p-card:hover .p-img img { transform: scale(1.05); }
.p-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg4) 100%);
  display: flex; align-items: center; justify-content: center;
}
.p-disc {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 9px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--r-xs);
  z-index: 1;
}
.p-sold {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text3);
  text-transform: uppercase;
  z-index: 1;
}
.p-admin-bar {
  display: none;
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  flex-direction: column;
  gap: 4px;
}
.admin-mode .p-admin-bar { display: flex; }
.p-btn-edit, .p-btn-del {
  padding: 4px 8px;
  font-size: 10px;
  border-radius: var(--r-xs);
  backdrop-filter: blur(8px);
}
.p-btn-edit { background: rgba(201,169,110,0.85); color: #0A0A0A; font-weight: 600; }
.p-btn-del  { background: rgba(248,113,113,0.85); color: #fff; }
.p-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.p-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 5px; }
.p-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}
.p-oldp {
  font-size: 12px;
  color: var(--text4);
  text-decoration: line-through;
}
.p-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 6px;
  line-height: 1.4;
  flex: 1;
}
.p-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text4);
  margin-bottom: 12px;
  min-height: 16px;
}
.p-stock::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text4);
  flex-shrink: 0;
}
.p-stock.ok { color: var(--green); }
.p-stock.ok::before { background: var(--green); box-shadow: 0 0 6px rgba(74,222,128,0.5); }
.p-stock.low { color: var(--amber); }
.p-stock.low::before { background: var(--amber); }
.p-stock.no { color: var(--red); }
.p-stock.no::before { background: var(--red); }
.p-action { height: 40px; position: relative; margin-top: auto; }
.p-add-btn {
  position: absolute; inset: 0;
  width: 100%;
  background: var(--gold);
  color: #0A0A0A;
  border: none;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
  box-shadow: 0 0 20px rgba(201,169,110,0.20);
}
.p-add-btn:hover:not(.sold) {
  background: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.p-add-btn:active:not(.sold) { transform: scale(0.97); transition-duration: .08s; }
.p-add-btn.sold {
  background: var(--bg3);
  color: var(--text4);
  cursor: not-allowed;
  box-shadow: none;
}
.p-add-btn.hide { opacity: 0; pointer-events: none; transform: scale(0.9); }
.p-qty {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: all .22s var(--ease);
}
.p-qty.show { opacity: 1; pointer-events: all; transform: scale(1); }
.q-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  color: var(--gold);
  transition: background .2s;
}
.q-btn:hover { background: var(--gold-a); }
.q-val { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }

/* Skeleton */
.skel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.skel-img { aspect-ratio: 1/1; background: var(--bg3); animation: skel-pulse 1.5s ease infinite; }
.skel-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.skel-line { height: 12px; background: var(--bg3); border-radius: 4px; animation: skel-pulse 1.5s ease infinite; }
.skel-w60 { width: 60%; }
.skel-w80 { width: 80%; }
.skel-w40 { width: 40%; }
@keyframes skel-pulse { 0%,100% { opacity:.4; } 50% { opacity:.8; } }

/* Empty state */
.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
}
.empty-ico { font-size: 40px; margin-bottom: 16px; }
.empty-title { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 10px; }
.empty-desc { font-size: 14px; color: var(--text3); margin-bottom: 20px; }
.empty-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: #0A0A0A;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
}

/* ── SCIENCE SECTION ── */
.science-section {
  padding: 96px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.science-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.science-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 40px;
}
.science-steps { display: flex; flex-direction: column; gap: 20px; }
.science-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px;
  border-left: 2px solid var(--border);
  transition: border-color .2s;
}
.science-step:hover { border-left-color: var(--gold); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.step-title { font-weight: 600; color: var(--text); margin-bottom: 3px; font-size: 14px; }
.step-sub { font-size: 12px; color: var(--text3); }

.science-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .25s var(--ease);
}
.stat-card:hover {
  border-color: var(--border2);
  background: var(--bg3);
  box-shadow: var(--shadow-gold);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text3); }
.science-gold-line {
  height: 2px;
  background: linear-gradient(90deg, var(--gold-d), var(--gold), transparent);
  border-radius: 2px;
  margin-top: 32px;
}

/* ── TELEGRAM CTA ── */
.tg-section {
  padding: 80px 0;
  background: var(--bg);
}
.tg-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.tg-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-b) 0%, transparent 60%);
  pointer-events: none;
}
.tg-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-a);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  color: var(--gold);
  flex-shrink: 0;
}
.tg-body { flex: 1; }
.tg-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.tg-desc { font-size: 14px; color: var(--text2); }

/* ── FAQ ── */
.faq-section {
  padding: 96px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 15px;
  color: var(--text2);
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--text); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-chevron { flex-shrink: 0; transition: transform .25s var(--ease); color: var(--text3); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; line-height: 1.7; color: var(--text3); }
.faq-a a { color: var(--gold); }
.faq-a a:hover { text-decoration: underline; }

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 80px 0;
  background: var(--bg);
}
.nl-inner {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.nl-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}
.nl-desc { font-size: 14px; color: var(--text2); margin-bottom: 32px; }
.nl-form { display: flex; gap: 10px; }
.nl-input {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
}
.nl-input:focus { border-color: var(--gold); }
.nl-input::placeholder { color: var(--text4); }

/* ── FOOTER ── */
.footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { border-radius: 8px; border: 1px solid var(--border); }
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
}
.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-tagline { font-size: 13px; line-height: 1.7; color: var(--text3); margin-bottom: 20px; }
.footer-tg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--gold);
  transition: opacity .2s;
}
.footer-tg:hover { opacity: 0.75; }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 18px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-link {
  font-size: 13px;
  color: var(--text3);
  padding: 5px 0;
  transition: color .2s;
}
.footer-link:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text4); }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-a);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── OVERLAYS ── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.overlay.show { opacity: 1; visibility: visible; }

/* Cart Drawer */
.cart-drawer {
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg1);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.overlay.show .cart-drawer { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
}
.drawer-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--text3);
  transition: background .2s, color .2s;
}
.drawer-close:hover { background: var(--bg3); color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text3);
  font-size: 14px;
  text-align: center;
}
.cart-empty-ico { font-size: 36px; opacity: 0.4; }
.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.cart-footer.hidden { display: none; }
.cart-pay-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text3); }
.pay-opts { display: flex; gap: 8px; }
.pay-opt {
  flex: 1;
  padding: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all .2s;
}
.pay-opt:hover { border-color: var(--border2); color: var(--text); }
.pay-opt.sel { background: var(--gold-a); border-color: var(--gold); color: var(--gold); }
.btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-checkout:hover { background: var(--gold-l); transform: translateY(-1px); }
.cart-trust { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text3); justify-content: center; }

/* Cart items */
.ci {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.ci-thumb, .ci-ph {
  width: 60px; height: 60px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--bg3);
  flex-shrink: 0;
}
.ci-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ci-name { font-size: 13px; color: var(--text2); font-weight: 500; }
.ci-price { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); }
.ci-ctrl { display: flex; align-items: center; gap: 10px; }
.ci-qb {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gold);
  transition: background .2s;
}
.ci-qb:hover { background: var(--gold-a); }
.ci-q { font-size: 13px; font-weight: 600; min-width: 16px; text-align: center; }
.ci-remove { margin-left: auto; color: var(--text4); font-size: 13px; transition: color .2s; }
.ci-remove:hover { color: var(--red); }

/* Search overlay */
#overlay-search { justify-content: center; align-items: flex-start; padding-top: 120px; }
.search-panel {
  width: 100%;
  max-width: 600px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 8px;
  transform: translateY(-20px);
  transition: transform .3s var(--ease);
}
.overlay.show .search-panel { transform: translateY(0); }
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text3);
}
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text);
}
.search-input::placeholder { color: var(--text4); }
.search-clear {
  color: var(--text4);
  transition: color .2s;
}
.search-clear:hover { color: var(--text); }
.search-close {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  color: var(--text3);
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  transition: color .2s;
}
.search-close:hover { color: var(--text); }

/* Product modal */
#overlay-product { justify-content: center; align-items: center; }
.product-modal {
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: scale(0.96);
  transition: transform .3s var(--ease);
}
.overlay.show .product-modal { transform: scale(1); }
.modal-close { position: absolute; top: 20px; right: 20px; }
.modal-tg-row { margin-bottom: 24px; }
.modal-tg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text2);
  font-size: 13px;
  transition: border-color .2s;
}
.modal-tg:hover { border-color: var(--border2); }
.modal-tg strong { display: block; font-weight: 600; color: var(--text); }
.modal-tg small { font-size: 11px; color: var(--gold); }
#modal-body { margin-bottom: 24px; }
.modal-img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--r-lg);
  object-fit: cover;
  background: var(--bg3);
  margin-bottom: 24px;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}
.modal-cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.modal-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.modal-price { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--text); }
.modal-oldp { font-size: 16px; color: var(--text4); text-decoration: line-through; }
.modal-stock { font-size: 13px; margin-bottom: 20px; }
.modal-desc { font-size: 14px; color: var(--text2); line-height: 1.7; }
#modal-add-wrap { display: flex; gap: 12px; align-items: center; }
.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0 14px;
  height: 46px;
  flex-shrink: 0;
}
#modal-qty-val { font-size: 15px; font-weight: 600; min-width: 20px; text-align: center; }
.modal-add-btn { flex: 1; height: 46px; justify-content: center; }
.btn-modal-add {
  flex: 1;
  height: 46px;
  background: var(--gold);
  color: #0A0A0A;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-modal-add:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-modal-add.sold {
  background: var(--bg3);
  color: var(--text4);
  cursor: not-allowed;
}

/* Admin panel */
#overlay-admin { justify-content: center; align-items: center; }
.admin-panel {
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow-y: auto;
  padding: 28px;
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.admin-title { font-family: 'Playfair Display', serif; font-size: 20px; }
.admin-field { margin-bottom: 16px; }
.admin-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text3); margin-bottom: 6px; }
.admin-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.admin-input:focus { border-color: var(--gold); }
.admin-textarea { height: auto; padding: 10px 12px; resize: vertical; }
.admin-select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
}
.admin-actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.btn-danger {
  padding: 11px 20px;
  background: rgba(248,113,113,0.15);
  color: var(--red);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.btn-danger:hover { background: rgba(248,113,113,0.25); }
.admin-img-preview img { max-width: 100%; border-radius: var(--r-sm); margin-top: 8px; }
.admin-stats { margin-top: 20px; font-size: 12px; color: var(--text3); }
.admin-login { display: flex; gap: 10px; margin-top: 20px; }

/* Quiz */
#overlay-quiz { justify-content: center; align-items: center; }
.quiz-panel {
  width: 100%;
  max-width: 580px;
  max-height: 88vh;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: scale(0.96);
  transition: transform .3s var(--ease);
}
.overlay.show .quiz-panel { transform: scale(1); }
.quiz-meta { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.quiz-progress { height: 2px; background: var(--bg3); border-radius: 2px; margin-bottom: 28px; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold-d), var(--gold)); border-radius: 2px; transition: width .4s var(--ease); }
.quiz-question { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; margin-bottom: 28px; line-height: 1.4; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.bq-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--text2);
  cursor: pointer;
  text-align: left;
  transition: all .2s var(--ease);
}
.bq-opt:hover { border-color: var(--border2); color: var(--text); background: var(--bg3); transform: translateX(4px); }
.bq-opt-icon { font-size: 18px; flex-shrink: 0; }
.quiz-nav { display: flex; justify-content: flex-end; margin-top: 24px; }
.quiz-back { display: none; }
.quiz-back.visible { display: flex; }
.quiz-result-head { text-align: center; margin-bottom: 24px; }
.quiz-result-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; }
#bq-result-cards { display: flex; flex-direction: column; gap: 12px; }
.bq-rec-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  align-items: center;
}
.bq-rec-emoji { font-size: 24px; flex-shrink: 0; }
.bq-rec-name { font-weight: 600; color: var(--text); margin-bottom: 3px; }
.bq-rec-why { font-size: 12px; color: var(--text3); }

/* ── REVEAL ANIMATIONS ── */
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.revealed { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .science-inner { gap: 48px; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-sep { display: none; }
  .trust-grid { justify-content: flex-start; gap: 8px; }
  .trust-item { min-width: calc(50% - 12px); flex: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(40px, 10vw, 60px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .science-inner { grid-template-columns: 1fr; gap: 40px; }
  .science-stats { grid-template-columns: repeat(2, 1fr); }
  .tg-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .catalog-header { flex-direction: column; align-items: flex-start; }
  .cat-filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .nl-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-item { min-width: 100%; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .p-price { font-size: 15px; }
  .hero-scroll-hint { display: none; }
  .footer-bottom { flex-direction: column; }
}
