/* ============================================================
   TAKOVA Clinic & Shop — premium light theme
   ============================================================ */

:root {
  --bg: #faf7f1;
  --bg-soft: #f3eee4;
  --card: #ffffff;
  --ink: #1c1b19;
  --ink-soft: #55514a;
  --muted: #8a8579;
  --line: #e7e0d3;
  --gold: #b08d57;
  --gold-soft: #d9c6a3;
  --green-deep: #23362c;
  --radius: 20px;
  --shadow-sm: 0 2px 10px rgba(28, 27, 25, .05);
  --shadow-md: 0 12px 40px rgba(28, 27, 25, .08);
  --shadow-lg: 0 30px 80px rgba(28, 27, 25, .14);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-serif);
  font-size: 23px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .14em;
  line-height: 1.1;
}
.logo-text small { display: block; font-family: var(--font-sans); font-size: 9px; letter-spacing: .3em; font-weight: 500; color: var(--muted); }

.main-nav { display: flex; gap: 6px; margin: 0 auto; }
.main-nav a {
  padding: 9px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.main-nav a:hover { color: var(--ink); background: rgba(176, 141, 87, .12); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.lang-switch {
  display: flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 999px;
  color: var(--muted);
  transition: all .25s;
}
.lang-btn.is-active { background: var(--ink); color: var(--bg); }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cart-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  display: grid; place-items: center;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--bg);
  transform: scale(0);
  transition: transform .25s;
}
.cart-count.is-visible { transform: scale(1); }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 30px) 0 40px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(217, 198, 163, .34), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(176, 141, 87, .12), transparent 55%),
    linear-gradient(180deg, #fbf8f2, var(--bg));
}
.hero-decor { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; }
.hero-decor-1 { width: 420px; height: 420px; background: rgba(233, 214, 183, .55); top: -140px; right: -120px; }
.hero-decor-2 { width: 300px; height: 300px; background: rgba(176, 141, 87, .16); bottom: -90px; left: 30%; }
.hero-decor-3 { width: 200px; height: 200px; background: rgba(250, 247, 241, .8); top: 30%; left: -80px; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }

.hero-badge {
  display: inline-flex;
  padding: 8px 18px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-bottom: 26px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { max-width: 560px; color: var(--ink-soft); font-size: 17.5px; font-weight: 300; margin-bottom: 34px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-note { color: var(--muted); font-size: 13.5px; letter-spacing: .04em; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn-dark { background: var(--ink); color: var(--bg); box-shadow: 0 10px 30px rgba(28, 27, 25, .22); }
.btn-dark:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(28, 27, 25, .28); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-block { width: 100%; }

.hero-visual { position: relative; height: 540px; }
.orb {
  position: absolute;
  border-radius: 50%;
  background: var(--card);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(28, 27, 25, .04);
  overflow: hidden;
  animation: float 9s ease-in-out infinite;
}
.orb img { width: 100%; height: 100%; object-fit: cover; }
.orb-1 { width: 300px; height: 300px; top: 30px; right: 60px; animation-delay: 0s; }
.orb-2 { width: 210px; height: 210px; top: 300px; right: 320px; animation-delay: 1.4s; }
.orb-3 { width: 170px; height: 170px; top: 60px; right: 330px; animation-delay: 2.6s; }
.orb-4 { width: 150px; height: 150px; top: 350px; right: 40px; animation-delay: .8s; }
.orb-5 { width: 120px; height: 120px; top: 180px; right: 30px; animation-delay: 3.4s; }
.orb-label {
  position: absolute;
  bottom: 20px; left: 30px;
  background: var(--ink);
  color: var(--bg);
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: float 9s ease-in-out infinite;
  animation-delay: 2s;
}
.orb-label strong { display: block; font-family: var(--font-serif); font-size: 34px; font-weight: 600; line-height: 1; }
.orb-label span { font-size: 12.5px; color: rgba(250, 247, 241, .75); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: rgba(250, 247, 241, .82);
  padding: 15px 0;
  white-space: nowrap;
}
.ticker-track { display: inline-block; padding-left: 100%; animation: ticker 38s linear infinite; }
.ticker-track span { font-size: 14px; letter-spacing: .28em; text-transform: uppercase; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- Sections ---------- */
section { padding: 60px 0; }

.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -.01em;
}
.section-sub { margin-top: 18px; color: var(--ink-soft); font-weight: 300; font-size: 17px; }

/* ---------- About ---------- */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
.about-text p { color: var(--ink-soft); font-size: 17px; font-weight: 300; margin-bottom: 14px; }
.about-consult {
  display: flex; gap: 16px;
  margin-top: 30px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(176, 141, 87, .1), rgba(217, 198, 163, .16));
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
}
.about-consult svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.about-consult p { margin: 0; font-size: 15.5px; color: var(--ink); }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(176, 141, 87, .12);
  color: var(--gold);
  margin-bottom: 16px;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); }
.services-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.svc-tab {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all .25s;
}
.svc-tab:hover { border-color: var(--gold); color: var(--ink); }
.svc-tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* kept */
.services-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 34px;
  min-height: 220px;
}
.svc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 48px; }
.svc-list li {
  padding: 12px 4px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color .2s, padding-left .2s;
}
.svc-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: .6;
}
.svc-list li:hover { color: var(--ink); padding-left: 10px; }

/* ---------- Shop ---------- */
.shop { background: var(--bg); }

.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.shop-search {
  position: relative;
  flex: 1 1 260px;
  max-width: 360px;
}
.shop-search svg {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.shop-search input {
  width: 100%;
  padding: 13px 16px 13px 46px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.shop-search input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(176, 141, 87, .12); }
.shop-search input::placeholder { color: var(--muted); }

.shop-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all .22s;
}
.cat-chip:hover { border-color: var(--gold); }
.cat-chip.is-active { background: var(--green-deep); border-color: var(--green-deep); color: var(--bg); }

.shop-sort { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.shop-sort label { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.shop-sort select {
  padding: 11px 38px 11px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8579' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color .25s;
}
.shop-sort select:focus { border-color: var(--gold); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  animation: cardIn .5s ease both;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.product-img { aspect-ratio: 1; background: linear-gradient(180deg, #fdfbf7, #f6f1e8); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .5s; }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-price { margin-top: auto; }
.product-cat { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.product-name { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.product-desc { font-size: 12.5px; font-weight: 300; color: var(--ink-soft); line-height: 1.55; }
.product-price { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--ink); }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { padding: 11px 14px; font-size: 13px; flex: 1; }
.product-actions .btn-buy { flex: 0 0 auto; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.shop-empty { text-align: center; padding: 70px 0; color: var(--muted); font-size: 16px; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(176, 141, 87, .12);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 23px; height: 23px; }
.contact-card strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.contact-card small { color: var(--muted); font-size: 14px; }
.contact-note { margin-top: 8px; color: var(--muted); font-size: 14.5px; font-weight: 300; padding-left: 8px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.92); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(250, 247, 241, .8); padding: 46px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.site-footer .logo { margin-bottom: 4px; }
.site-footer .logo-mark { background: var(--bg); color: var(--ink); }
.site-footer .logo-text small { color: rgba(250, 247, 241, .5); }
.site-footer p { font-size: 13.5px; font-weight: 300; }
.footer-rights { color: rgba(250, 247, 241, .45); font-size: 12.5px !important; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: transform .25s;
  opacity: 0;
  pointer-events: none;
}
.wa-float.is-visible { opacity: 1; pointer-events: auto; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Cart modal ---------- */
.cart-modal { position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.cart-modal.is-open { visibility: visible; opacity: 1; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(28, 27, 25, .45); backdrop-filter: blur(3px); }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100%);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-lg);
}
.cart-modal.is-open .cart-panel { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 30px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; }
.cart-close { font-size: 30px; line-height: 1; color: var(--muted); transition: color .2s, transform .2s; width: 36px; height: 36px; border-radius: 50%; }
.cart-close:hover { color: var(--ink); transform: rotate(90deg); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 30px; display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex; gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.cart-item img { width: 62px; height: 62px; object-fit: contain; border-radius: 12px; background: #f6f1e8; padding: 6px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info strong { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.cart-item-info small { color: var(--muted); font-size: 12.5px; }
.cart-item-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.cart-item-foot .price { font-family: var(--font-serif); font-size: 15.5px; font-weight: 600; }
.cart-qty { display: flex; align-items: center; gap: 10px; }
.cart-qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 15px;
  transition: background .2s;
}
.cart-qty button:hover { background: var(--bg-soft); }
.cart-remove { color: var(--muted); font-size: 13px; text-decoration: underline; transition: color .2s; }
.cart-remove:hover { color: #c0392b; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 15px; }
.cart-foot { padding: 24px 30px; border-top: 1px solid var(--line); background: var(--card); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total span { color: var(--muted); font-size: 14.5px; }
.cart-total strong { font-family: var(--font-serif); font-size: 26px; font-weight: 600; }
.cart-clear { margin-top: 12px; width: 100%; text-align: center; color: var(--muted); font-size: 13px; text-decoration: underline; }
.cart-clear:hover { color: #c0392b; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--ink);
  color: var(--bg);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  opacity: 0;
  transition: transform .35s, opacity .35s;
  pointer-events: none;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 460px; max-width: 620px; }
  .hero { padding-top: calc(var(--header-h) + 30px); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  section { padding: 48px 0; }
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 99;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { padding: 14px 10px; font-size: 17px; border-radius: 12px; }
  .burger { display: flex; }
  .svc-list { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  /* kept */
.services-panel { padding: 28px 22px; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .shop-search { max-width: none; }
  .shop-sort { margin-left: 0; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .product-body { padding: 14px 14px 16px; }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .hero-visual { height: 400px; }
  .orb-1 { width: 230px; height: 230px; right: 30px; }
  .orb-2 { width: 160px; height: 160px; right: 220px; top: 250px; }
  .orb-3 { width: 130px; height: 130px; right: 230px; top: 40px; }
  .orb-4 { width: 110px; height: 110px; top: 280px; right: 20px; }
  .orb-5 { display: none; }
  .orb-label { bottom: 0; left: 10px; padding: 14px 18px; }
  .orb-label strong { font-size: 26px; }
  .hero-title { font-size: 44px; }
  .hero-cta .btn { width: 100%; }
  .lang-btn { padding: 5px 10px; }
  .cart-panel { width: 100%; }
}

/* ---------- Product modal ---------- */
.product-modal { position: fixed; inset: 0; z-index: 210; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.product-modal.is-open { visibility: visible; opacity: 1; }
.product-modal-panel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(.96);
  width: min(880px, calc(100vw - 40px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--bg);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 44px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.product-modal.is-open .product-modal-panel { transform: translate(-50%, -50%) scale(1); }
.product-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 24px;
  color: var(--muted);
  display: grid; place-items: center;
  z-index: 5;
  transition: transform .25s, color .25s;
}
.product-modal-close:hover { color: var(--ink); transform: rotate(90deg); }
.product-modal-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: center; }
.product-modal-img {
  border-radius: 22px;
  background: linear-gradient(180deg, #fdfbf7, #f3ede2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-modal-img img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 30px; }
.product-modal-info { display: flex; flex-direction: column; gap: 14px; }
.product-modal-name { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px); font-weight: 600; line-height: 1.15; }
.product-modal-price { font-size: 24px; }
.product-modal-desc { color: var(--ink-soft); font-size: 15px; font-weight: 300; line-height: 1.7; }
.product-modal-actions { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .product-modal-panel { padding: 28px 22px; }
  .product-modal-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-modal-img img { aspect-ratio: 1; max-width: 280px; margin: 0 auto; }
  .product-modal-actions .btn { flex: 1; }
}
