/* ИВА Маркет — design tokens & base */
:root {
  --color-bg: #f6f8f7;
  --color-surface: #ffffff;
  --color-text: #1a2420;
  --color-muted: #5c6b66;
  --color-accent: #0d5c4a;
  --color-accent-hover: #0a4a3b;
  --color-accent-soft: #e8f3ef;
  --color-border: #dde5e1;
  --color-hero-bg: linear-gradient(145deg, #0d5c4a 0%, #147a63 45%, #1a9a7d 100%);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(13, 92, 74, 0.12);
  --shadow-sm: 0 4px 16px rgba(26, 36, 32, 0.06);
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --header-h: 80px;
  --hero-video-sticky-top: calc(var(--header-h) + 96px);
  --max: 1200px;
  --z-header: 100;
  --z-overlay: 200;
  --z-drawer: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

body.is-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 92, 74, 0.35);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(13, 92, 74, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--ghost:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 0.85rem;
}

/* Prices — keep amount and ₽ on one line */
.price-nowrap,
.price__old,
.price__current,
.price__values,
.packages__card-price,
.packages__card-price-old,
.packages__extras-price-wrap,
.pricing__btn,
.site-footer__cta-btn,
.site-footer__cta-old,
.calculator__result-value,
.calculator__savings-value,
.calculator__field-value,
.about__stat-value {
  white-space: nowrap;
}
