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

:root {
  --green: #1c8465;
  --green-dark: #145240;
  --green-deep: #0d2f26;
  --mint: #e6fcf5;
  --ink: #1c2434;
  --muted: #5b6573;
  --line: rgba(28, 36, 52, 0.1);
  --paper: #f4f7f5;
  --white: #ffffff;
  --lime: #b8e000;
  --radius: 4px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Top demo strip */
.demo-strip {
  background: linear-gradient(90deg, #06251d, #0d3d30 45%, #145240);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.45rem 1rem;
}

.demo-strip strong {
  color: #b8f5df;
  font-weight: 600;
}

/* App-like header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0.65rem 0 0.55rem;
  background: transparent;
  border-bottom: none;
  transition: padding 0.25s ease;
}

.site-header > .wrap {
  position: relative;
}

.site-header.is-scrolled {
  padding-top: 0.4rem;
}

.site-header.is-scrolled .app-bar {
  box-shadow: 0 14px 40px rgba(13, 47, 38, 0.14);
  border-color: rgba(28, 132, 101, 0.18);
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 0.5rem 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow:
    0 10px 30px rgba(20, 40, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  padding-right: 0.25rem;
}

.logo img {
  height: 34px;
  width: auto;
}

.logo-chip {
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid rgba(28, 132, 101, 0.18);
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-inline: auto;
  padding: 0.2rem;
  background: rgba(244, 247, 245, 0.85);
  border: 1px solid rgba(28, 36, 52, 0.06);
  border-radius: 16px;
}

.nav-pill {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 0;
  height: calc(100% - 0.4rem);
  border-radius: 12px;
  background: linear-gradient(145deg, #1c8465, #145240);
  box-shadow: 0 8px 18px rgba(28, 132, 101, 0.28);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), width 0.28s cubic-bezier(.2,.8,.2,1);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.nav-pill.is-ready { opacity: 1; }

.nav-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-item:hover { color: var(--ink); }

.nav-item.is-active,
.nav-item:hover.is-active {
  color: #fff;
}

.nav:hover .nav-item.is-active { color: var(--muted); }
.nav:hover .nav-item:hover { color: #fff; }

.nav-ico {
  display: grid;
  place-items: center;
  opacity: 0.9;
}

.app-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.app-icon-btn,
.hu-btn.app-icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(28, 36, 52, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.app-icon-btn:hover,
.hu-btn.app-icon-btn:hover {
  transform: translateY(-1px);
  color: var(--green);
  border-color: rgba(28, 132, 101, 0.28);
  background: var(--mint);
}

.app-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 40px;
  padding: 0 0.95rem;
  border-radius: 14px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2fa37d, #1c8465 55%, #145240);
  box-shadow: 0 8px 18px rgba(28, 132, 101, 0.28);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.app-call:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(28, 132, 101, 0.34);
}

.header-phone { display: none; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 36, 52, 0.08);
  padding: 0;
  cursor: pointer;
  place-items: center;
  gap: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Expandable search */
.app-search {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 0.15rem);
  padding: 0 0 0.75rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.app-search.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.app-search-inner {
  pointer-events: auto;
}

.app-search-form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(28, 132, 101, 0.18);
  box-shadow: 0 16px 40px rgba(13, 47, 38, 0.14);
  backdrop-filter: blur(14px);
}

.app-search-ico { color: var(--green); display: grid; place-items: center; }

.app-search-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  min-width: 0;
}

.app-search-go {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.app-search-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: var(--paper);
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
}

/* Mobile app dock */
.app-dock {
  display: none;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
}

.hu-btn {
  position: relative;
}

.hu-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fa37d, #145240);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(28, 132, 101, 0.35);
}

.hu-count[hidden] { display: none; }

@media (max-width: 1100px) {
  .nav-txt { display: none; }
  .nav-item { padding: 0.55rem 0.7rem; }
  .app-call span { display: none; }
  .app-call { width: 40px; padding: 0; justify-content: center; }
}

/* Hero — one composition, full-bleed */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-2%, 1%, 0); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 47, 38, 0.88) 0%, rgba(13, 47, 38, 0.55) 48%, rgba(13, 47, 38, 0.2) 100%),
    linear-gradient(0deg, rgba(13, 47, 38, 0.75) 0%, transparent 45%);
}

.hero-content {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 4rem;
}

.hero-brand {
  display: block;
  height: clamp(48px, 8vw, 72px);
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  animation: rise 0.8s ease both;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
  max-width: 11ch;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: rise 0.9s ease 0.08s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 2rem;
  animation: rise 1s ease 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 1.05s ease 0.22s both;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--green-deep);
}

.btn-primary:hover {
  background: #c8f020;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Section common */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section-head .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Categories */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cat {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.cat:hover img {
  transform: scale(1.06);
}

.cat-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(13, 47, 38, 0.92));
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Service band */
.service {
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.service::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(184, 224, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.service h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
}

.service p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

.service-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.service-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-points strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.service-points span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  background: var(--lime);
  border-radius: 1px;
}

/* Promo */
.promo {
  background:
    linear-gradient(135deg, rgba(28, 132, 101, 0.08), transparent),
    var(--white);
  border-block: 1px solid var(--line);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-code {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green-dark);
}

.promo-code em {
  font-style: normal;
  color: var(--green);
  background: var(--mint);
  padding: 0.15em 0.4em;
}

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-list {
  display: grid;
  gap: 1.25rem;
}

.contact-item dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.contact-item dd {
  margin: 0;
  font-size: 1.15rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--green);
}

.map-panel {
  min-height: 280px;
  background:
    linear-gradient(160deg, var(--mint), #d7ebe3),
    var(--mint);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--line);
}

.map-panel strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.map-panel span {
  color: var(--muted);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.75rem;
  font-size: 0.92rem;
  background:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(46, 196, 152, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 18%, rgba(28, 132, 101, 0.55), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(13, 90, 72, 0.55), transparent 55%),
    linear-gradient(145deg, #06251d 0%, #0d3d30 38%, #145240 68%, #0a2a22 100%);
}

.footer-glow {
  pointer-events: none;
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    linear-gradient(115deg, transparent 20%, rgba(230, 252, 245, 0.08) 48%, transparent 72%);
  transform: rotate(-4deg);
  filter: blur(2px);
}

.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
  gap: 2rem 1.75rem;
  margin-bottom: 2.75rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  margin: 0 0 1.25rem;
  max-width: 34ch;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.fs-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.fs-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, #2fa37d, #1c8465);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(28, 132, 101, 0.35);
  color: #fff;
}

.footer-col h3 {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
  color: #b8f5df;
  transform: translateX(3px);
}

.fi {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #7ed9b8;
}

.fi-lg {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(47, 163, 125, 0.35), rgba(28, 132, 101, 0.15));
  border-color: rgba(126, 217, 184, 0.25);
  color: #c9ffe8;
}

.footer-contacts .fc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contacts .fc-item span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.35;
}

.footer-contacts .fc-item small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(184, 245, 223, 0.7);
}

.footer-contacts .fc-static {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.35rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-note a {
  color: #9ef0d0;
  text-decoration: none;
  border-bottom: 1px solid rgba(158, 240, 208, 0.35);
}

.footer-note a:hover {
  color: #fff;
}


@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .site-footer {
    padding: 3.25rem 0 1.5rem;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .cats {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .contacts-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.55rem;
    margin: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(28, 132, 101, 0.14);
    box-shadow: 0 22px 50px rgba(13, 47, 38, 0.18);
    backdrop-filter: blur(16px);
    z-index: 70;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-pill { display: none; }

  .nav-item {
    padding: 0.85rem 0.95rem;
    color: var(--ink);
  }

  .nav-item.is-active {
    color: #fff;
    background: linear-gradient(135deg, #2fa37d, #145240);
  }

  .menu-toggle {
    display: grid;
  }

  .app-call span {
    display: none;
  }

  .app-call {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .logo-chip { display: none; }

  .app-dock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 1.4rem));
    z-index: 80;
    padding: 0.45rem 0.35rem 0.5rem;
    border-radius: 22px;
    background: rgba(10, 32, 27, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 52px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Sora', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.15s, transform 0.15s;
  }

  .dock-item.is-active {
    color: #9ef0d0;
  }

  .dock-ico {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
  }

  .dock-fab {
    transform: translateY(-14px);
  }

  .dock-fab-btn {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, #2fa37d, #145240);
    box-shadow: 0 10px 24px rgba(28, 132, 101, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.18);
  }

  body {
    padding-bottom: 5.5rem;
  }

  .toast {
    bottom: 5.5rem;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 4rem 0 3rem;
  }

  .cats {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .hero-actions {
    animation: none;
  }
}

/* ===== Catalog & product cards ===== */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.crumbs a:hover { color: var(--green); }

.catalog-hero {
  padding: 2.75rem 0 0.5rem;
  background:
    linear-gradient(180deg, rgba(28, 132, 101, 0.06), transparent);
}

.catalog-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.catalog-lead {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.catalog-lead a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.p-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.p-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 100%;
}

.p-card:hover {
  border-color: rgba(28, 132, 101, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(28, 36, 52, 0.08);
}

.p-card-media {
  aspect-ratio: 1;
  background: #f0f4f2;
  overflow: hidden;
}

.p-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.p-card:hover .p-card-media img {
  transform: scale(1.04);
}

.p-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.p-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.p-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}

h2.p-card-title { font-size: 1rem; }
h3.p-card-title { font-size: 0.92rem; }

.p-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.55rem;
}

.p-card-price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
}

.p-card-stock {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--mint);
  padding: 0.2rem 0.45rem;
}

/* Product page */
.product-page {
  padding: 1.5rem 0 4rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.product-gallery {
  background: var(--white);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.product-price {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-dark);
}

.product-sku {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid rgba(28, 132, 101, 0.35);
}

.btn-outline:hover {
  border-color: var(--green);
  background: var(--mint);
}

.product-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.product-bullets li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
}

.product-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 7px;
  height: 7px;
  background: var(--green);
}

.related h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 960px) {
  .p-grid,
  .p-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .p-grid,
  .p-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===== Catalog filter sidebar ===== */
.catalog-section { padding-top: 1.5rem; }

.catalog-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.btn-filter-mobile {
  display: none;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1rem;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-height: calc(100vh - 110px);
  overflow: auto;
}

.filter-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-sidebar-head h2 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.filter-block-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.f-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.65rem 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.f-search-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(28, 132, 101, 0.12);
}

.f-search-icon {
  color: var(--green);
  font-size: 1rem;
}

.f-search-wrap input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font: inherit;
  font-size: 0.92rem;
}

.f-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.f-check {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.4rem;
  cursor: pointer;
  transition: background 0.15s;
}

.f-check:hover { background: var(--mint); }

.f-check input { position: absolute; opacity: 0; pointer-events: none; }

.f-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(28, 132, 101, 0.45);
  background: #fff;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

.f-check input:checked + .f-box {
  background: var(--green);
  border-color: var(--green);
}

.f-check input:checked + .f-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.f-label { font-size: 0.9rem; font-weight: 500; }

.f-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--paper);
  padding: 0.12rem 0.4rem;
  min-width: 1.4rem;
  text-align: center;
}

.f-check input:checked ~ .f-count {
  background: var(--mint);
  color: var(--green-dark);
}

.f-price-vals {
  display: flex;
  justify-content: space-between;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.85rem;
}

.f-range {
  position: relative;
  height: 28px;
  margin-bottom: 0.85rem;
  --range-left: 0%;
  --range-right: 100%;
}

.f-range::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 4px;
  background: #e2e8e5;
}

.f-range::after {
  content: '';
  position: absolute;
  left: var(--range-left);
  right: calc(100% - var(--range-right));
  top: 12px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #2fa37d);
}

.f-range input[type="range"] {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 28px;
  margin: 0;
  background: none;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}

.f-range input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  box-shadow: 0 2px 8px rgba(28, 132, 101, 0.25);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.f-range input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  cursor: pointer;
}

.f-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.f-chip {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: 0.15s;
}

.f-chip:hover,
.f-chip.is-active {
  border-color: var(--green);
  background: var(--mint);
  color: var(--green-dark);
}

.f-select {
  width: 100%;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.btn-reset-filters {
  margin-top: 0.25rem;
  width: 100%;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem;
  border: 1px dashed rgba(28, 132, 101, 0.4);
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  transition: 0.15s;
}

.btn-reset-filters:hover {
  background: var(--mint);
  border-style: solid;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.catalog-count {
  font-size: 0.92rem;
  color: var(--muted);
}

.catalog-count strong {
  color: var(--ink);
  font-family: 'Sora', sans-serif;
}

.catalog-active {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.55rem;
  background: var(--green-deep);
  color: #fff;
  border: none;
  cursor: pointer;
}

.active-chip span { opacity: 0.7; }

.p-grid-catalog {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.p-card[hidden] { display: none !important; }

/* ===== Modern catalog cards ===== */
.p-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(160deg, rgba(28,132,101,.18), rgba(28,132,101,0) 55%) border-box;
  border: 1px solid var(--line);
}

.p-card:hover {
  border-color: rgba(28, 132, 101, 0.35);
  box-shadow: 0 18px 40px rgba(20, 40, 34, 0.1);
}

.p-card-media {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 20%, #fff 0%, transparent 45%),
    linear-gradient(160deg, #eef6f2, #e3ece7);
}

.p-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.p-card-media img {
  object-fit: contain;
  padding: 12% 14% 16%;
  mix-blend-mode: multiply;
}

.p-card-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pc-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  background: var(--green-deep);
  color: #fff;
}

.pc-badge:nth-child(1):not(:only-child),
.p-card-badges .pc-badge[data-type="new"],
.pc-badge {
  background: var(--green-deep);
}

.p-card-tools {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.p-card:hover .p-card-tools,
.p-card:focus-within .p-card-tools {
  opacity: 1;
  transform: none;
}

.pc-tool {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(28, 36, 52, 0.08);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.pc-tool:hover {
  color: var(--green);
  border-color: rgba(28,132,101,0.35);
  transform: scale(1.05);
}

.pc-tool.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.pc-tool.is-active[data-action="wish"] svg path {
  fill: currentColor;
}

.p-card-body {
  padding: 0.85rem 0.9rem 0.95rem;
  gap: 0.4rem;
}

.p-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.p-card-brand {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.p-card-title {
  font-size: 0.86rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}

.p-card-title a {
  color: inherit;
  text-decoration: none;
}

.p-card-title a:hover {
  color: var(--green);
}

h2.p-card-title { font-size: 0.86rem; }

.p-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pc-stars {
  color: #d4a017;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.pc-rating-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.p-card-meta {
  padding-top: 0.35rem;
  margin-top: 0.15rem;
}

.p-card-price {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.p-card-price small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.15rem;
}

.p-card-stock {
  font-size: 0.68rem;
}

.p-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.pc-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.65rem 0.7rem;
  border: none;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.pc-cart:hover {
  background: var(--green-dark);
}

.pc-cart.is-added {
  background: var(--green-deep);
}

.pc-more {
  display: grid;
  place-items: center;
  width: 40px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pc-more:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--mint);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(12px);
  z-index: 100;
  background: var(--green-deep);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 1.2rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  max-width: min(90vw, 420px);
  text-align: center;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1200px) {
  .p-grid-catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .p-card-tools {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 560px) {
  .app-icon-btn, .hu-btn.app-icon-btn { width: 36px; height: 36px; border-radius: 12px; }
  .app-call { width: 36px; height: 36px; }
}

.catalog-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white);
  border: 1px dashed var(--line);
}

.catalog-empty strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.4rem;
}

.catalog-empty p { color: var(--muted); margin: 0 0 1.25rem; }

.filter-backdrop {
  display: none;
}

@media (min-width: 1100px) {
  .catalog-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .btn-filter-mobile { display: inline-flex; }

  .filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 90vw);
    z-index: 80;
    max-height: none;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    border: none;
    box-shadow: 12px 0 40px rgba(0,0,0,0.18);
  }

  .filter-sidebar.is-open { transform: translateX(0); }

  .filter-close { display: block; }

  .filter-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 25, 22, 0.45);
    z-index: 70;
    backdrop-filter: blur(2px);
  }

  .p-grid-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .p-grid-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .p-grid-catalog {
    grid-template-columns: 1fr;
  }
  .p-card-actions {
    grid-template-columns: 1fr;
  }
  .pc-more {
    width: 100%;
    height: 40px;
  }
}

.pc-badge-hit { background: var(--green-deep); }
.pc-badge-new { background: #1c6f84; }
.pc-badge-deal { background: #b45309; }
