    .cf-brand-nowrap {
      white-space: nowrap;
    }
    :root {
      --red: #a8272e;
      --red-dark: #7c1c22;
      --gray-50: #fafafa;
      --gray-100: #f0f0f0;
      --gray-200: #e2e2e2;
      --gray-500: #6b6b6b;
      --gray-800: #2a2a2a;
      --white: #ffffff;
      --radius: 14px;
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
      --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
      --font-display: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
      --font-display-style: normal;
      --font-display-weight: 600;
      --font-display-decoration: none;
      --font-ui-style: normal;
      --font-ui-weight: 400;
      --font-ui-decoration: none;
      --cf-chrome-bottom: 156px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scrollbar-gutter: stable; overflow-x: clip; }
    body {
      margin: 0;
      font-family: var(--font);
      font-style: var(--font-ui-style);
      font-weight: var(--font-ui-weight);
      text-decoration: var(--font-ui-decoration);
      text-decoration-thickness: from-font;
      text-underline-offset: 0.12em;
      color: var(--gray-800);
      background: var(--gray-50);
      line-height: 1.5;
      overflow-x: clip;
    }
    a { color: var(--red); }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 130;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
      padding: 16px 28px;
      background: rgba(var(--header-rgb, 255, 255, 255), 0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      transition: background 0.4s, border-color 0.4s, padding 0.25s;
      overflow-x: clip;
    }
    .site-header.is-scrolled {
      background: rgba(255, 255, 255, 0.96);
      border-bottom-color: var(--gray-200);
      padding: 10px 28px;
    }
    .site-header .header-side { display: flex; align-items: center; gap: 14px; min-width: 0; }
    .site-header .header-side.right {
      justify-content: flex-end;
      position: relative;
      z-index: 2;
    }
    .logo {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--header-fg, #2a2a2a);
      text-decoration: none;
      mix-blend-mode: normal;
      transition: color 0.3s;
    }
    .logo.logo-brand {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      line-height: 1;
      white-space: normal;
      text-decoration: none;
    }
    .cf-logo-img {
      display: block;
      width: auto;
      height: auto;
      max-width: 100%;
    }
    .cf-logo-img--header {
      width: min(210px, 44vw);
    }
    .cf-logo-img--footer {
      width: min(200px, 52vw);
      margin: 0 auto 6px;
    }
    .logo-line-main {
      font-weight: 700;
      letter-spacing: 0.14em;
    }
    .logo-line-sub {
      font-size: 0.76em;
      font-weight: 500;
      letter-spacing: 0.2em;
      opacity: 0.72;
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 6px 26px;
      flex-wrap: nowrap;
      justify-content: center;
      white-space: nowrap;
    }
    .nav a {
      text-decoration: none;
      color: var(--header-fg, #2a2a2a);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 0;
      border-bottom: 1px solid transparent;
      transition: color 0.25s, border-color 0.25s, opacity 0.25s;
      opacity: 0.85;
    }
    .nav a:hover { opacity: 1; border-bottom-color: currentColor; }
    .nav a.is-active { opacity: 1; border-bottom-color: currentColor; }
    .site-header .btn-routine,
    .site-header .btn-skin {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 9px 16px;
    }

    .cf-header-city {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 14px;
      border-radius: 999px;
      background: transparent;
      border: 1px solid currentColor;
      color: var(--header-fg, #2a2a2a);
      font-family: inherit;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      opacity: 0.85;
      max-width: 220px;
      transition: opacity 0.2s, background 0.2s;
    }
    .cf-header-city:hover { opacity: 1; background: rgba(255, 255, 255, 0.12); }
    .site-header.is-scrolled .cf-header-city:hover { background: rgba(0, 0, 0, 0.04); }
    .cf-header-city-icon { flex-shrink: 0; }
    .cf-header-city span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .cf-nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 10px;
      border: 1px solid currentColor;
      border-radius: 10px;
      background: transparent;
      color: var(--header-fg, #2a2a2a);
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
    }
    .cf-nav-toggle:hover { background: rgba(0, 0, 0, 0.04); }
    .site-header.is-scrolled .cf-nav-toggle:hover { background: rgba(0, 0, 0, 0.05); }
    .cf-nav-toggle-bar {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 1px;
      background: currentColor;
      transition: transform 0.28s ease, opacity 0.2s ease;
    }
    .site-header.is-nav-open .cf-nav-toggle-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .site-header.is-nav-open .cf-nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }
    .site-header.is-nav-open .cf-nav-toggle-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .cf-nav-backdrop {
      position: fixed;
      inset: 0;
      z-index: 120;
      background: rgba(10, 12, 16, 0.42);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .cf-nav-backdrop.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    body.cf-nav-open { overflow: hidden; }
    .cf-nav-menu-extra { display: none; }

    .cf-city-popover {
      position: fixed;
      top: 70px;
      right: 28px;
      z-index: 250;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 12px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 280px;
      box-shadow: 0 18px 50px rgba(20, 30, 40, 0.18);
      animation: cfPopoverIn 0.22s cubic-bezier(0.2, 0.85, 0.2, 1) both;
    }
    .cf-city-popover[hidden] { display: none; }
    @keyframes cfPopoverIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .cf-city-popover-eyebrow {
      font-size: 0.66rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
    }
    .cf-city-popover-select {
      padding: 11px 14px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 999px;
      background: #fafafa;
      font: inherit;
      font-size: 0.88rem;
      color: #2a2a2a;
      cursor: pointer;
    }
    .cf-city-popover-select:focus { outline: none; border-color: var(--red); background: #fff; }
    .cf-city-popover-input,
    .cf-city-autocomplete-input {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 999px;
      background: #fafafa;
      font: inherit;
      font-size: 0.88rem;
      color: #2a2a2a;
    }
    .cf-city-popover-input:focus,
    .cf-city-autocomplete-input:focus {
      outline: none;
      border-color: var(--red);
      background: #fff;
    }
    .cf-city-autocomplete {
      position: relative;
      width: 100%;
      min-width: 0;
    }
    .cf-city-suggestions {
      position: absolute;
      z-index: 30;
      top: calc(100% + 4px);
      left: 0;
      right: 0;
      margin: 0;
      padding: 4px 0;
      list-style: none;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      box-shadow: 0 10px 28px rgba(20, 30, 40, 0.14);
      max-height: 240px;
      overflow-y: auto;
    }
    .cf-city-suggestions[hidden] { display: none; }
    .cf-city-suggestions li {
      padding: 10px 14px;
      cursor: pointer;
      font-size: 0.86rem;
      line-height: 1.35;
      color: #2a2a2a;
    }
    .cf-city-suggestions li:hover,
    .cf-city-suggestions li.is-active {
      background: rgba(168, 39, 46, 0.08);
      color: var(--red);
    }
    .cf-city-popover-hint {
      margin: 0 0 8px;
      font-size: 0.76rem;
      line-height: 1.45;
      color: #6b6b6b;
    }
    .cf-city-popover-locate {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 14px;
      border: 1px solid var(--red);
      background: transparent;
      color: var(--red);
      border-radius: 999px;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.2s, color 0.2s;
    }
    .cf-city-popover-locate:hover { background: var(--red); color: #fff; }
    .btn-skin {
      padding: 10px 18px;
      border: none;
      border-radius: 999px;
      background: var(--red);
      color: var(--white);
      font-weight: 600;
      font-size: 0.88rem;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(168, 39, 46, 0.35);
      transition: transform 0.15s, background 0.2s;
    }
    .btn-skin:hover { background: var(--red-dark); transform: translateY(-1px); }

    main { min-height: 100vh; overflow-x: clip; }
    main > section.page:not(#page-home) { padding-top: 130px; }

    .page { display: none; animation: fadeIn 0.35s ease; }
    .page.is-visible { display: block; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .btn-outline {
      padding: 10px 20px;
      border-radius: 999px;
      border: 2px solid var(--gray-200);
      background: var(--white);
      color: var(--gray-800);
      font-weight: 600;
      cursor: pointer;
      font-size: 0.9rem;
    }
    .btn-outline:hover { border-color: var(--red); color: var(--red); }
    .btn-routine {
      padding: 10px 18px;
      border-radius: 999px;
      border: 2px solid var(--red);
      background: var(--white);
      color: var(--red);
      font-weight: 600;
      cursor: pointer;
      font-size: 0.88rem;
      transition: background 0.2s, color 0.2s;
    }
    .btn-routine:hover { background: var(--red); color: var(--white); }

    /* === HOME (porcelain look) === */
    #page-home {
      background: var(--page-bg, #d9dee2);
      transition: background 0.6s;
      --cf-home-heading-size: clamp(2.46rem, 7.38vw, 7.38rem);
    }
    #page-home .cf-hero {
      color: #fff;
      --hero-fg: #fff;
    }
    #page-home .cf-hero-title,
    #page-home .cf-home-theme .cf-section-title {
      font-size: var(--cf-home-heading-size);
      line-height: 1.05;
      color: #fff;
      -webkit-text-fill-color: #fff;
    }
    #page-home .cf-hero-copy,
    #page-home .cf-hero-lead,
    #page-home .cf-hero-eyebrow,
    #page-home .cf-hero-scroll,
    #page-home .cf-home-theme.cf-section,
    #page-home .cf-home-theme .cf-section-eyebrow,
    #page-home .cf-home-theme .cf-section-lead {
      color: #fff;
    }
    #page-home .cf-home-theme {
      --section-fg: #fff;
    }
    #page-home .cf-home-theme .cf-section-cta {
      color: var(--red);
      border-color: rgba(168, 39, 46, 0.42);
      background: rgba(255, 255, 255, 0.42);
    }
    #page-home .cf-home-theme .cf-section-cta:hover {
      color: #fff;
      background: var(--red);
      border-color: var(--red);
    }
    #page-home .cf-home-theme .cf-section-head {
      position: relative;
      z-index: 0;
      isolation: isolate;
      padding: clamp(12px, 2vw, 20px) clamp(8px, 1.5vw, 14px);
    }
    #page-home .cf-home-theme .cf-section-head::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 46%;
      transform: translate(-50%, -50%);
      width: min(112%, 1040px);
      height: clamp(260px, 52vw, 420px);
      z-index: -1;
      pointer-events: none;
      border-radius: 50%;
      filter: blur(32px);
      background: radial-gradient(
        ellipse 90% 78% at 50% 48%,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.24) 32%,
        rgba(0, 0, 0, 0.1) 58%,
        rgba(0, 0, 0, 0.03) 78%,
        rgba(0, 0, 0, 0) 92%
      );
    }
    #page-home .cf-home-theme .cf-section-eyebrow,
    #page-home .cf-home-theme .cf-section-title,
    #page-home .cf-home-theme .cf-section-lead {
      text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.28),
        0 1px 3px rgba(0, 0, 0, 0.22);
    }

    .cf-hero {
      position: relative;
      min-height: 100vh;
      width: 100%;
      overflow: hidden;
      background-color: var(--hero-bg, #c9d2d8);
      color: var(--hero-fg, #1b1b1b);
    }
    .cf-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .cf-hero-bg.is-loaded { opacity: 1; }
    .cf-hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(
          ellipse at 50% 42%,
          rgba(0, 0, 0, 0.38) 0%,
          rgba(0, 0, 0, 0) 52%
        ),
        radial-gradient(
          ellipse at 85% 88%,
          rgba(0, 0, 0, 0.45) 0%,
          rgba(0, 0, 0, 0) 45%
        ),
        linear-gradient(
          180deg,
          rgba(15, 20, 25, 0.12) 0%,
          rgba(0, 0, 0, 0) 25%,
          rgba(0, 0, 0, 0) 60%,
          rgba(0, 0, 0, 0.35) 100%
        );
    }
    .cf-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: calc(var(--cf-chrome-bottom, 132px) + 8px) clamp(20px, 4vw, 48px) 80px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-end;
      box-sizing: border-box;
    }
    .cf-hero-titlewrap {
      position: absolute;
      left: 0;
      right: 0;
      top: clamp(36%, 42vh, 46%);
      transform: translateY(-50%);
      width: 100%;
      max-width: 100%;
      padding: 0 clamp(20px, 4vw, 40px);
      box-sizing: border-box;
      text-align: center;
      pointer-events: none;
      z-index: 2;
    }
    .cf-hero-spacer {
      display: none;
    }
    .cf-page-hero-title {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      text-decoration: var(--font-display-decoration);
      font-size: clamp(3rem, 9vw, 9rem);
      letter-spacing: 0.02em;
      line-height: 0.95;
      color: #ffffff;
      text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.55),
        0 1px 2px rgba(0, 0, 0, 0.35);
    }
    .cf-hero-title {
      margin: 0 auto;
      max-width: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      row-gap: 0.14em;
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      text-decoration: var(--font-display-decoration);
      /* Масштаб от ширины экрана: влезает длинная строка «здоровой кожи» */
      font-size: min(
        5.5rem,
        max(1.85rem, calc((100vw - 3rem) / 9.25))
      );
      letter-spacing: 0.045em;
      line-height: 1.12;
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.28),
        0 1px 3px rgba(0, 0, 0, 0.22);
      hyphens: none;
      -webkit-hyphens: none;
      box-sizing: border-box;
      overflow-wrap: anywhere;
    }
    .cf-hero-title .cf-title-line {
      display: block;
      white-space: nowrap;
      max-width: 100%;
      line-height: 1.12;
    }
    /* Ноутбук и планшет: 2 строки */
    @media (min-width: 981px) and (max-width: 1599px) {
      .cf-hero-title {
        row-gap: 0.12em;
      }
    }
    /* Широкий экран: одна строка */
    @media (min-width: 1600px) {
      .cf-hero-title {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: baseline;
        column-gap: 0.36em;
        row-gap: 0;
        width: 100%;
        max-width: calc(100% - 2rem);
        line-height: 0.98;
        letter-spacing: 0.03em;
      }
      .cf-hero-title .cf-title-line {
        display: inline;
        line-height: 1;
      }
    }
    .cf-hero-copy {
      align-self: end;
      justify-self: end;
      max-width: min(760px, calc(100% - 36px));
      color: #f6f2eb;
      position: relative;
      z-index: 3;
      padding: clamp(18px, 2.4vw, 28px) clamp(18px, 2.4vw, 28px) clamp(18px, 2.4vw, 28px) clamp(34px, 4.2vw, 52px);
      margin-right: clamp(-14px, -1.3vw, -24px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
      transform: translateX(22%);
    }
    .cf-hero-copy::before {
      content: "";
      position: absolute;
      left: clamp(12px, 1.6vw, 16px);
      top: 18%;
      bottom: 18%;
      width: 2px;
      border-radius: 2px;
      background: var(--red);
      box-shadow: 0 0 16px rgba(168, 39, 46, 0.45);
    }
    .cf-hero-copy.is-dark-bg { color: #f5f1ec; }
    .cf-hero-eyebrow {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      text-decoration: var(--font-display-decoration);
      font-size: clamp(1.7rem, 2.8vw, 2.5rem);
      line-height: 1.2;
      margin: 0 0 14px;
      letter-spacing: 0.01em;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
    }
    .cf-hero-lead {
      font-size: clamp(0.9rem, 1.35vw, 1.02rem);
      line-height: 1.62;
      margin: 0 0 22px;
      letter-spacing: 0.01em;
      opacity: 0.96;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
    }
    .cf-hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      border-radius: 999px;
      border: none;
      background: var(--red);
      color: var(--white);
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      cursor: pointer;
      font-weight: 600;
      box-shadow: 0 6px 18px rgba(168, 39, 46, 0.35);
      transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    }
    .cf-hero-cta:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(168, 39, 46, 0.4);
    }
    .cf-hero-cta span { color: inherit; }
    .cf-hero-scroll {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #f5f1ec;
      opacity: 0.85;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    }
    .cf-hero-scroll::after {
      content: "";
      display: block;
      width: 1px;
      height: 40px;
      margin: 10px auto 0;
      background: currentColor;
      opacity: 0.5;
    }

    .cf-section {
      position: relative;
      padding: 110px 0 90px;
      background-color: var(--section-bg, #cfd6da);
      color: var(--section-fg, #1b1b1b);
      overflow: hidden;
    }
    .cf-section + .cf-section { border-top: 1px solid rgba(255, 255, 255, 0.4); }
    .cf-section-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.45;
    }
    .cf-section-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 28%,
        rgba(255, 255, 255, 0.55) 60%,
        rgba(255, 255, 255, 0.8) 100%
      );
    }
    /* Главная: тематические блоки — более воздушный фон */
    #page-home .cf-home-theme.cf-section {
      background-color: var(--section-bg-soft, rgba(207, 214, 218, 0.55));
    }
    #page-home .cf-home-theme .cf-section-bg {
      opacity: 0.34;
    }
    #page-home .cf-home-theme .cf-section-bg::after {
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.06) 30%,
        rgba(255, 255, 255, 0.32) 62%,
        rgba(255, 255, 255, 0.58) 100%
      );
    }
    #page-home .cf-home-theme .product-card {
      background: rgba(255, 255, 255, 0.52);
      border-color: rgba(255, 255, 255, 0.5);
    }
    #page-home .cf-home-theme .product-card:hover {
      background: rgba(255, 255, 255, 0.72);
    }
    .cf-section-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .cf-section-head { text-align: center; margin-bottom: 70px; }
    .cf-section-title {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      text-decoration: var(--font-display-decoration);
      font-size: clamp(3rem, 9vw, 9rem);
      letter-spacing: 0.02em;
      line-height: 0.95;
      margin: 0 0 26px;
      opacity: 0.9;
    }
    .cf-section-lead {
      max-width: min(760px, 96vw);
      margin: 0 auto;
      padding-inline: 8px;
      font-size: 0.92rem;
      line-height: 1.7;
      letter-spacing: 0.02em;
      opacity: 0.85;
      overflow: visible;
      text-wrap: pretty;
    }
    .cf-section-head .cf-section-lead {
      hyphens: none;
    }
    #page-about .cf-page-hero-title {
      font-size: clamp(1.65rem, 4.2vw, 3.1rem);
      line-height: 1.18;
      max-width: 22em;
      margin-left: auto;
      margin-right: auto;
    }
    .cf-section-cta {
      display: inline-block;
      margin-top: 22px;
      padding: 10px 22px;
      border-radius: 999px;
      border: 1px solid rgba(168, 39, 46, 0.35);
      background: rgba(255, 255, 255, 0.55);
      color: var(--red);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
    }
    .cf-section-cta:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }
    #page-home .cf-home-theme .cf-product-grid .product-card {
      width: 100%;
      max-width: none;
      cursor: pointer;
    }
    #page-home .cf-home-theme .cf-product-grid .line-tag {
      display: none;
    }
    #page-home .cf-product-grid.is-count-1 {
      display: flex;
      justify-content: center;
      max-width: 320px;
      margin: 0 auto;
    }
    #page-home .cf-product-grid.is-count-2 {
      grid-template-columns: repeat(2, minmax(220px, 280px));
      justify-content: center;
      max-width: 640px;
      margin: 0 auto;
    }
    #page-home .cf-product-grid.is-count-3 {
      grid-template-columns: repeat(3, minmax(200px, 1fr));
      max-width: 960px;
      margin: 0 auto;
    }
    #page-home .cf-product-grid.is-count-5 {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      max-width: 1180px;
      margin: 0 auto;
    }
    #page-home .cf-product-grid.is-count-5 .product-card:nth-child(1) { grid-column: 1 / span 2; }
    #page-home .cf-product-grid.is-count-5 .product-card:nth-child(2) { grid-column: 3 / span 2; }
    #page-home .cf-product-grid.is-count-5 .product-card:nth-child(3) { grid-column: 5 / span 2; }
    #page-home .cf-product-grid.is-count-5 .product-card:nth-child(4) { grid-column: 2 / span 2; }
    #page-home .cf-product-grid.is-count-5 .product-card:nth-child(5) { grid-column: 4 / span 2; }
    .cf-section-eyebrow {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 18px;
      opacity: 0.7;
    }

    .cf-product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .cf-product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 920px; margin: 0 auto; }
    .cf-product {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
      padding: 20px 18px 24px;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 4px;
      transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .cf-product:hover {
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 18px 40px rgba(20, 30, 40, 0.12);
      transform: translateY(-4px);
    }
    .cf-product-img {
      width: 100%;
      aspect-ratio: 4 / 5;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 2px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cf-product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .cf-product:hover .cf-product-img img { transform: scale(1.04); }
    .cf-product-name {
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin: 0;
      color: #1b1b1b;
      line-height: 1.35;
    }
    .cf-product-desc {
      font-size: 0.8rem;
      line-height: 1.55;
      color: #4a4a4a;
      margin: 0;
      max-width: 28ch;
    }

    /* === Внутренние страницы в стиле главной === */
    #page-about .cf-page-hero,
    #page-catalog .cf-page-hero,
    #page-where .cf-page-hero,
    #page-contacts .cf-page-hero,
    .cf-page-hero {
      position: relative;
      min-height: 56vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 32px 80px;
      overflow: hidden;
      background-color: #1f2428;
      color: #f5f1ec;
    }
    .cf-page-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      opacity: 1;
      transform: scale(1);
    }
    .cf-page-hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 55%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 55%),
        linear-gradient(
          180deg,
          rgba(15, 20, 25, 0.15) 0%,
          rgba(15, 20, 25, 0.18) 50%,
          rgba(15, 20, 25, 0.4) 100%
        );
    }
    .cf-page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 760px;
      color: #f5f1ec;
    }
    .cf-page-hero-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 18px;
      color: #f5f1ec;
      opacity: 0.92;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    }
    .cf-page-hero-title {
      margin: 0 0 22px;
    }
    .cf-page-hero-lead {
      max-width: min(640px, 94vw);
      margin: 0 auto;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #f5f1ec;
      opacity: 0.95;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
    }

    .cf-body { background: #f3f1ed; padding: 80px 0 100px; overflow-x: clip; }
    .cf-body-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; min-width: 0; }
    .cf-about-narrow { max-width: 760px; }

    .cf-about-text { text-align: left; }
    .cf-about-text p {
      margin: 0 0 20px;
      font-size: 1.05rem;
      line-height: 1.8;
      color: #2f2f2f;
    }
    .cf-about-text p:first-of-type {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      font-size: 1.45rem;
      line-height: 1.55;
      color: #1b1b1b;
      text-align: center;
      max-width: 620px;
      margin: 0 auto 36px;
      padding-bottom: 28px;
      position: relative;
    }
    .cf-about-text p:first-of-type::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 42px;
      height: 1px;
      background: var(--red);
    }

    /* Карточки на внутренних страницах (Где купить / Контакты) */
    .cf-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 6px;
      padding: 28px;
      box-shadow: 0 12px 40px rgba(20, 30, 40, 0.06);
    }
    .cf-card-eyebrow {
      display: inline-block;
      font-size: 0.66rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
      font-weight: 600;
    }
    .cf-card-title {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      margin: 0 0 16px;
      color: #1b1b1b;
    }
    .cf-card-body {
      margin: 0;
      color: #4a4a4a;
      line-height: 1.75;
      font-size: 0.95rem;
    }
    .cf-card-body strong { color: #1b1b1b; font-weight: 600; }
    .cf-card-body p { margin: 0 0 10px; }
    .cf-card-body a { color: var(--red); text-decoration: none; }
    .cf-card-body a:hover { text-decoration: underline; }

    .cf-geo-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 6px;
      padding: 16px 22px;
      margin-bottom: 22px;
      box-shadow: 0 8px 28px rgba(20, 30, 40, 0.05);
    }
    .cf-geo-status {
      font-size: 0.92rem;
      color: #2a2a2a;
      line-height: 1.5;
    }
    .cf-geo-status strong { color: var(--red); font-weight: 600; }
    .cf-geo-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
    .cf-geo-select {
      padding: 10px 14px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 999px;
      background: #fafafa;
      font: inherit;
      font-size: 0.85rem;
      color: #2a2a2a;
      min-width: 200px;
      cursor: pointer;
    }
    .cf-geo-select:focus { outline: none; border-color: var(--red); background: #fff; }
    .cf-geo-locate {
      padding: 10px 18px;
      border: 1px solid var(--red);
      background: transparent;
      color: var(--red);
      border-radius: 999px;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.2s, color 0.2s;
    }
    .cf-geo-locate:hover { background: var(--red); color: #fff; }

    .cf-locator {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .cf-locator-search-wrap {
      position: relative;
      width: 100%;
    }
    .cf-locator-search {
      width: 100%;
      box-sizing: border-box;
      padding: 16px 6.75rem 16px 18px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      background: #f3f2ef;
      font: inherit;
      font-size: 0.95rem;
      color: #1b1b1b;
      box-shadow: 0 4px 18px rgba(20, 30, 40, 0.04);
    }
    .cf-locator-search:focus {
      outline: none;
      border-color: rgba(168, 39, 46, 0.45);
      background-color: #fff;
      box-shadow: 0 8px 28px rgba(168, 39, 46, 0.08);
    }
    .cf-locator-search-wrap .cf-locator-find {
      position: absolute;
      top: 50%;
      right: 8px;
      transform: translateY(-50%);
      flex: none;
      z-index: 1;
    }
    .cf-locator-search-wrap .cf-locator-find:hover {
      transform: translateY(calc(-50% - 1px));
    }
    .cf-locator-find-icon {
      display: none;
      flex-shrink: 0;
    }
    .cf-where-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      align-items: stretch;
      min-height: 640px;
      border-radius: 20px;
      overflow: visible;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 24px 60px rgba(20, 30, 40, 0.09);
      background: #ffffff;
    }
    .cf-where-map {
      position: relative;
      min-height: 640px;
      background: #e8e4df;
      overflow: hidden;
      border-radius: 20px 0 0 20px;
    }
    .cf-where-map .map-frame {
      position: absolute;
      inset: 0;
      border-radius: 0;
      overflow: hidden;
      border: none;
      background: #efece8;
      min-height: 0;
      width: 100%;
    }
    .cf-map-placeholder {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      background: #e8ecef;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .cf-map-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.92) contrast(0.98);
    }
    .cf-map-placeholder-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.42));
      pointer-events: none;
    }
    .cf-map-placeholder-spinner {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      color: #3a3a3a;
      font-size: 0.82rem;
      font-weight: 500;
    }
    .cf-map-placeholder-spinner-icon {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(168, 39, 46, 0.18);
      border-top-color: #a8272e;
      border-radius: 50%;
      animation: cf-map-spin 0.8s linear infinite;
      flex-shrink: 0;
    }
    .cf-map-placeholder.is-idle .cf-map-placeholder-spinner-icon {
      animation: none;
      border-top-color: rgba(168, 39, 46, 0.18);
    }
    .cf-map-placeholder.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .cf-map-live.is-hidden {
      visibility: hidden;
      pointer-events: none;
    }
    @keyframes cf-map-spin {
      to { transform: rotate(360deg); }
    }
    .cf-where-map #yandex-map {
      width: 100%;
      height: 100%;
      min-height: 640px;
    }
    .cf-where-sidebar {
      display: flex;
      flex-direction: column;
      min-height: 0;
      background: #f4f3f0;
      border-left: 1px solid rgba(0, 0, 0, 0.05);
      overflow: visible;
      border-radius: 0 20px 20px 0;
    }
    .cf-locator-panel {
      padding: 10px 12px 8px;
      background: #ffffff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      flex-shrink: 0;
      position: relative;
      z-index: 3;
      overflow: visible;
    }
    .cf-locator-panel .cf-geo-status {
      font-size: 0.72rem;
      line-height: 1.35;
      color: #5a5a5a;
      margin: 0 0 8px;
    }
    .cf-locator-panel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 8px;
      align-items: end;
    }
    .cf-locator-field {
      display: flex;
      flex-direction: column;
      gap: 3px;
      min-width: 0;
    }
    .cf-locator-field--full {
      grid-column: 1 / -1;
    }
    .cf-locator-field--reset {
      align-items: flex-end;
      min-height: 0;
    }
    .cf-locator-field-label {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #8a8a8a;
      line-height: 1.2;
    }
    .cf-locator-control {
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
      padding: 7px 10px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      background: #fafafa;
      font: inherit;
      font-size: 0.75rem;
      line-height: 1.3;
      cursor: pointer;
    }
    .cf-locator-panel .cf-city-autocomplete {
      position: relative;
      z-index: 4;
    }
    .cf-locator-panel .cf-city-autocomplete-input {
      cursor: text;
    }
    .cf-ms {
      position: relative;
      min-width: 0;
    }
    .cf-ms.is-open {
      z-index: 6;
    }
    .cf-ms-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      text-align: left;
    }
    .cf-ms-value {
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .cf-ms-chevron {
      flex: 0 0 auto;
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid #7a7a7a;
      opacity: 0.8;
      transition: transform 0.15s ease;
    }
    .cf-ms.is-open .cf-ms-chevron {
      transform: rotate(180deg);
    }
    .cf-ms.has-value .cf-ms-trigger {
      border-color: rgba(168, 39, 46, 0.35);
      background: rgba(168, 39, 46, 0.04);
      color: #1b1b1b;
    }
    .cf-ms-menu {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      right: 0;
      z-index: 12;
      max-height: min(220px, 42vh);
      overflow: auto;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(20, 30, 40, 0.14);
      padding: 4px 0;
    }
    .cf-ms-menu[hidden] {
      display: none !important;
    }
    .cf-ms-option {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 7px 10px;
      font-size: 0.74rem;
      line-height: 1.35;
      color: #1b1b1b;
      cursor: pointer;
    }
    .cf-ms-option:hover {
      background: rgba(168, 39, 46, 0.06);
    }
    .cf-ms-option input {
      flex: 0 0 auto;
      margin: 2px 0 0;
      accent-color: var(--red);
    }
    .cf-ms-option span {
      flex: 1 1 auto;
      min-width: 0;
    }
    .cf-store-filter-reset {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background: #fff;
      color: #2a2a2a;
      font: inherit;
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cf-store-filter-reset:hover:not(:disabled) {
      background: rgba(168, 39, 46, 0.08);
      border-color: rgba(168, 39, 46, 0.35);
      color: var(--red);
    }
    .cf-store-filter-reset[hidden] {
      display: none !important;
    }
    .cf-locator-find {
      flex: 0 0 auto;
      padding: 10px 18px;
      border: none;
      border-radius: 999px;
      background: #1b1b1b;
      color: #fff;
      font: inherit;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .cf-locator-find:hover {
      background: var(--red);
      transform: translateY(-1px);
    }
    .cf-store-list {
      list-style: none;
      margin: 0;
      padding: 12px 14px 18px;
      overflow-y: auto;
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      -webkit-overflow-scrolling: touch;
    }
    .cf-store-card {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      position: relative;
      z-index: 0;
      padding: 18px;
      border-radius: 14px;
      cursor: pointer;
      border: 1px solid rgba(0, 0, 0, 0.06);
      background: #ffffff;
      box-shadow: 0 2px 14px rgba(20, 30, 40, 0.05);
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    }
    .cf-store-card-main {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .cf-store-card-thumb {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 12px;
      overflow: hidden;
      background: #f4f3f0;
      border: 1px solid rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }
    .cf-store-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 5px;
      display: block;
    }
    .cf-store-card-thumb--photo img {
      object-fit: cover;
      padding: 0;
    }
    .cf-store-card-thumb--video {
      background: linear-gradient(145deg, #2a2a2a, #1b1b1b);
      border-color: rgba(0, 0, 0, 0.14);
    }
    .cf-store-card-thumb-play {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      font-size: 0.72rem;
      line-height: 1;
      padding-left: 2px;
    }
    .cf-store-card:hover {
      box-shadow: 0 8px 24px rgba(20, 30, 40, 0.08);
      transform: translateY(-1px);
    }
    .cf-store-card.is-active {
      z-index: 1;
      border-color: rgba(168, 39, 46, 0.35);
      box-shadow: 0 10px 28px rgba(168, 39, 46, 0.12);
    }
    .cf-store-card-head {
      display: contents;
    }
    .cf-store-card-city {
      display: block;
      margin: 0 0 2px;
      font-size: 0.72rem;
      color: var(--red);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .cf-store-card-title {
      margin: 0;
      font-size: 0.98rem;
      font-weight: 600;
      line-height: 1.35;
      color: #1b1b1b;
    }
    .cf-store-serves {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: 6px;
    }
    .cf-store-serves-label {
      font-size: 0.68rem;
      font-weight: 600;
      color: #5c5c5c;
      line-height: 1.3;
    }
    .cf-store-serves-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .cf-store-serve {
      display: inline-flex;
      align-items: center;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      line-height: 1.35;
      border: 1px solid rgba(168, 39, 46, 0.28);
      color: var(--red);
      background: rgba(168, 39, 46, 0.06);
    }
    .cf-store-modal-body .cf-store-serves {
      margin-top: 2px;
    }
    .cf-store-card-address {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin: 2px 0 0;
      font-size: 0.84rem;
      line-height: 1.5;
      color: #5a5a5a;
    }
    .cf-store-card-address svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: #9a9a9a;
    }
    .cf-store-card-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 8px;
      padding-top: 12px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .cf-store-card-action {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 0;
      border: none;
      background: none;
      font: inherit;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #5a5a5a;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
    }
    .cf-store-card-action:hover {
      color: var(--red);
    }
    .cf-store-card-action--primary {
      color: var(--red);
    }
    .cf-store-card-empty {
      padding: 24px;
      text-align: center;
      color: #8a8a8a;
      font-size: 0.88rem;
    }
    #page-where .cf-body-inner {
      max-width: 1240px;
    }

    @media (min-width: 981px) {
      #page-where {
        --cf-locator-h: clamp(360px, calc(100dvh - 19rem), 640px);
      }
      #page-where .cf-body {
        padding: 44px 0 72px;
      }
      #page-where .cf-locator {
        gap: 16px;
      }
      #page-where .cf-where-shell {
        min-height: var(--cf-locator-h);
        height: var(--cf-locator-h);
        max-height: var(--cf-locator-h);
      }
      #page-where .cf-where-map {
        min-height: 0;
        height: 100%;
      }
      #page-where .cf-where-map .map-frame,
      #page-where .cf-where-map #yandex-map {
        min-height: 0;
        height: 100%;
      }
      #page-where .cf-where-sidebar {
        max-height: var(--cf-locator-h);
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: visible;
      }
      #page-where .cf-locator-panel {
        flex-shrink: 0;
      }
      #page-where .cf-store-list-wrap {
        position: relative;
        flex: 1 1 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
      }
      #page-where .cf-store-list-wrap::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4.5rem;
        pointer-events: none;
        z-index: 2;
        background: linear-gradient(
          to bottom,
          rgba(244, 243, 240, 0) 0%,
          rgba(244, 243, 240, 0.55) 38%,
          rgba(244, 243, 240, 0.92) 72%,
          #f4f3f0 100%
        );
      }
      #page-where .cf-store-list {
        height: 100%;
        max-height: 100%;
        padding: 12px 14px 2.75rem;
        flex: 1 1 auto;
        min-height: 0;
        box-sizing: border-box;
      }
    }

    @media (min-width: 981px) and (max-height: 900px) {
      #page-where {
        --cf-locator-h: clamp(300px, calc(100dvh - 14.5rem), 520px);
      }
      #page-where .cf-body {
        padding-top: 28px;
        padding-bottom: 48px;
      }
    }

    @media (min-width: 981px) and (max-height: 760px) {
      #page-where {
        --cf-locator-h: clamp(260px, calc(100dvh - 12.5rem), 440px);
      }
      #page-where .cf-body {
        padding-top: 20px;
        padding-bottom: 36px;
      }
      #page-where .cf-locator-search {
        padding-top: 14px;
        padding-bottom: 14px;
      }
    }

    .cf-locator-filters-btn {
      display: none;
      border: none;
      background: none;
      font: inherit;
      font-size: 0.88rem;
      color: #1b1b1b;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }
    .cf-locator-sort-bar {
      display: none;
    }
    .cf-store-card-info {
      display: none;
    }

    @media (min-width: 981px) {
      #page-where .cf-store-list,
      .cf-store-list {
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
      }
      .cf-store-list::-webkit-scrollbar {
        width: 6px;
      }
      .cf-store-list::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.16);
        border-radius: 999px;
      }
      .cf-store-list::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.28);
      }
    }

    /* legacy map card hooks */
    .cf-where-grid {
      display: grid;
      grid-template-columns: 1fr minmax(280px, 360px);
      gap: 28px;
      align-items: start;
    }
    .cf-where-grid > * { min-width: 0; }
    .cf-map-card { padding: 12px; overflow: hidden; }
    .cf-map-card .map-frame {
      border-radius: 4px;
      overflow: hidden;
      min-height: 480px;
      border: none;
      background: #efece8;
      width: 100%;
    }
    .cf-map-card #yandex-map { height: 480px; min-height: 480px; width: 100%; }

    /* === Кастомизация Яндекс.Карты под фирменный стиль === */
    /* Фильтр применяем только к панели тайлов, чтобы балуны и контролы остались чёткими */
    #yandex-map [class*="-layers-pane"] {
      filter: grayscale(0.85) contrast(0.92) brightness(1.05) sepia(0.08) hue-rotate(-8deg);
      transition: filter 0.4s ease;
    }
    #yandex-map [class*="-layers-pane"]:hover {
      filter: grayscale(0.4) contrast(0.95) brightness(1.05);
    }
    /* Контролы: округлые, белые, мягкая тень */
    #yandex-map [class*="-controls-pane"] [class*="-button"],
    #yandex-map [class*="-controls-pane"] [class*="-zoom"] {
      box-shadow: 0 6px 18px rgba(20, 30, 40, 0.12) !important;
    }
    #yandex-map [class*="-zoom__plus"],
    #yandex-map [class*="-zoom__minus"],
    #yandex-map [class*="-fullscreen"] [class*="-button-icon"] {
      background-color: #ffffff !important;
    }
    /* Балун: фирменное скругление и шрифт */
    #yandex-map [class*="-balloon"] {
      border-radius: 10px !important;
      box-shadow: 0 18px 44px rgba(20, 30, 40, 0.18) !important;
      border: 1px solid rgba(0, 0, 0, 0.04) !important;
      overflow: hidden;
    }
    #yandex-map [class*="-balloon__content"] {
      font-family: inherit !important;
      font-size: 0.88rem !important;
      color: #2a2a2a !important;
      padding: 14px 16px !important;
    }
    #yandex-map [class*="-balloon__content"] strong { color: var(--red); }
    #yandex-map [class*="-balloon__close-button"] {
      background-color: rgba(0, 0, 0, 0.04) !important;
      border-radius: 50%;
    }
    /* Tail балуна — белый */
    #yandex-map [class*="-balloon__tail"]::after {
      background: #ffffff !important;
    }
    /* Подсказка при наведении на маркер */
    #yandex-map [class*="-hint"] {
      background: #ffffff !important;
      color: var(--red) !important;
      border-radius: 10px !important;
      padding: 8px 14px !important;
      font-family: inherit !important;
      font-size: 0.82rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.02em !important;
      border: 1px solid rgba(168, 39, 46, 0.14) !important;
      box-shadow: 0 12px 28px rgba(20, 30, 40, 0.1) !important;
      max-width: 240px !important;
      white-space: normal !important;
      line-height: 1.35 !important;
    }
    #yandex-map [class*="-hint__text"] {
      color: var(--red) !important;
      font-weight: 600 !important;
    }

    .cf-contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .cf-form { display: flex; flex-direction: column; gap: 12px; }
    .cf-form input:not([type="checkbox"]),
    .cf-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 4px;
      font: inherit;
      font-size: 0.92rem;
      background: #fafafa;
      color: #1b1b1b;
      transition: border-color 0.2s, background 0.2s;
    }
    .cf-form input:not([type="checkbox"]):focus,
    .cf-form textarea:focus {
      outline: none;
      border-color: var(--red);
      background: #ffffff;
    }
    .cf-form textarea { min-height: 130px; resize: vertical; font-family: inherit; }
    .cf-form-submit {
      align-self: flex-start;
      margin-top: 4px;
      padding: 12px 26px;
      font-size: 0.74rem;
      letter-spacing: 0.18em;
      flex-shrink: 0;
    }
    .cf-form-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
      pointer-events: none;
    }
    .cf-form-footer {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      gap: 16px 20px;
      margin-top: 4px;
    }
    .cf-form-consent {
      display: grid;
      grid-template-columns: 16px minmax(0, 1fr);
      align-items: start;
      gap: 10px;
      margin: 0;
      font-size: 0.76rem;
      line-height: 1.45;
      color: #5a5a5a;
      cursor: pointer;
      user-select: none;
    }
    .cf-form-consent input[type="checkbox"] {
      width: 16px;
      height: 16px;
      min-width: 16px;
      min-height: 16px;
      margin: 2px 0 0;
      padding: 0;
      border: 1px solid rgba(0, 0, 0, 0.18);
      border-radius: 3px;
      background: #fff;
      accent-color: var(--red);
      cursor: pointer;
      flex: none;
      box-sizing: border-box;
    }
    .cf-form-consent input[type="checkbox"]:focus {
      outline: 2px solid rgba(168, 39, 46, 0.22);
      outline-offset: 2px;
      border-color: var(--red);
      background: #fff;
    }
    .cf-form-consent input[type="checkbox"]:focus-visible {
      outline: 2px solid rgba(168, 39, 46, 0.22);
      outline-offset: 2px;
    }
    .cf-form-consent span {
      display: block;
      min-width: 0;
    }
    .cf-form-status {
      margin: 8px 0 0;
      font-size: 0.82rem;
      color: #6b6b6b;
      min-height: 1.2em;
    }
    .cf-form-status.is-error { color: var(--red); }
    .cf-form { position: relative; }
    .cf-form-honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* Подборка на сегодня (узкая полоса под шапкой) */
    .cf-today-bar {
      position: fixed;
      top: var(--cf-header-height, 96px);
      left: 0;
      right: 0;
      z-index: 120;
      display: flex;
      flex-direction: column;
      background: transparent;
      border-bottom: none;
      transition: box-shadow 0.3s;
    }
    .cf-today-bar[data-expanded="true"] {
      top: var(--cf-header-height, 96px);
      bottom: auto;
      height: auto;
      max-height: calc(100dvh - var(--cf-header-height, 96px));
      max-height: calc(100svh - var(--cf-header-height, 96px));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      z-index: 128;
      box-shadow: none;
    }
    .cf-today-bar[hidden] { display: none; }
    .cf-today-bar-strip {
      flex: 0 0 auto;
      width: 100%;
      min-height: 44px;
      height: 44px;
      box-sizing: border-box;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .cf-today-bar-strip-inner {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      max-width: 1280px;
      height: 100%;
      margin: 0 auto;
      padding: 0 28px;
      box-sizing: border-box;
    }
    .cf-today-bar-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(168, 39, 46, 0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      line-height: 1;
    }
    .cf-today-bar-title {
      flex: 1;
      font-size: 0.82rem;
      color: #2a2a2a;
      letter-spacing: 0.01em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .cf-today-bar-title strong {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: 600;
      font-size: 1rem;
      color: #1b1b1b;
      margin-right: 4px;
    }
    .cf-today-bar-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: 118px;
      padding: 7px 14px;
      border: 1px solid var(--red);
      background: transparent;
      color: var(--red);
      border-radius: 999px;
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .cf-today-bar-toggle:hover { background: var(--red); color: #fff; }
    .cf-today-bar-chev { transition: transform 0.3s; }
    .cf-today-bar[data-expanded="true"] .cf-today-bar-chev { transform: rotate(180deg); }

    .cf-today-bar-panel {
      max-height: 0;
      overflow: hidden;
      background: linear-gradient(180deg, #fdfaf4 0%, #fbf6ec 100%);
      transition: max-height 0.45s cubic-bezier(0.2, 0.85, 0.2, 1);
    }
    .cf-today-bar[data-expanded="true"] .cf-today-bar-panel {
      flex: 0 0 auto;
      max-height: none;
      overflow-x: hidden;
      overflow-y: visible;
    }
    .cf-today-bar[data-expanded="true"] .cf-today-bar-panel-inner {
      min-height: 0;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      padding-bottom: 12px;
    }
    .cf-today-bar[data-expanded="true"] .cf-today-bar-strip {
      background: rgba(255, 255, 255, 0.98);
    }
    .cf-today-bar[data-expanded="true"] .cf-shelf-wrap {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 0;
      width: 100%;
    }
    body.cf-today-open {
      overflow: hidden;
    }
    body.cf-today-open .cf-site-chrome,
    body.cf-today-open .cf-today-bar {
      padding-right: var(--cf-scroll-lock-gap, 0);
    }
    body.cf-today-open main {
      pointer-events: none;
    }
    .cf-today-bar-panel-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 22px 28px 26px;
    }
    .cf-today-modes {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 0 0 14px;
    }
    .cf-today-mode-btn {
      border: 1px solid rgba(168, 39, 46, 0.22);
      background: rgba(255, 255, 255, 0.82);
      color: #6a3033;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 0.63rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cf-today-mode-btn:hover {
      border-color: var(--red);
      color: var(--red);
    }
    .cf-today-mode-btn.is-active {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }
    .cf-today-bar-desc {
      margin: 0 0 18px;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #4a4a4a;
      max-width: 720px;
    }
    .cf-today-bar-grid {
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: none;
      scroll-behavior: smooth;
      overscroll-behavior-x: contain;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-padding-inline: 18px;
      padding: 2px 18px 4px;
      margin: 0 -4px 0 0;
      -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%);
              mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent 100%);
    }
    .cf-today-bar-grid::-webkit-scrollbar { display: none; }
    .cf-today-bar-grid > .cf-today-card {
      flex: 0 0 38%;
      width: 38%;
      max-width: 38%;
      min-width: 0;
      scroll-snap-align: none;
    }
    .cf-today-bar .cf-shelf-dots {
      margin-top: 8px;
      margin-bottom: 0;
    }
    .cf-today-bar .cf-shelf-wrap {
      flex: 0 0 auto;
    }
    .cf-today-bar .cf-shelf-dots:not([hidden]) {
      display: flex;
    }
    .cf-today-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .cf-today-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      border-radius: inherit;
      cursor: pointer;
      pointer-events: auto;
    }
    .cf-today-card > * {
      position: relative;
      z-index: 1;
    }
    .cf-today-card *,
    .cf-today-card *::before,
    .cf-today-card *::after {
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
      cursor: pointer;
    }
    .cf-today-card:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
    }
    .cf-today-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(20, 30, 40, 0.1);
    }
    .cf-today-card-photo {
      flex: 0 0 auto;
      width: 100%;
      aspect-ratio: 1 / 1;
      background: #e0e2e5;
      padding: 6px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .cf-today-card-photo img {
      display: block;
      width: 94%;
      height: 94%;
      max-width: 94%;
      max-height: 94%;
      object-fit: contain;
      object-position: center center;
      margin: auto;
      transform: scale(1.38);
      transform-origin: center center;
    }
    .cf-today-card .body {
      flex: 0 0 auto;
      padding: 8px 10px 10px;
    }
    .cf-today-card .line-tag {
      display: inline-block;
      font-size: clamp(0.52rem, 2.2vw, 0.58rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      background: rgba(168, 39, 46, 0.08);
      padding: 3px 9px;
      border-radius: 999px;
      margin-bottom: 4px;
      font-weight: 600;
    }
    .cf-today-card h3 {
      font-size: 0.84rem;
      font-weight: 600;
      margin: 0 0 2px;
      color: #1b1b1b;
      line-height: 1.3;
    }
    .cf-today-card p {
      font-size: 0.72rem;
      color: #6b6b6b;
      margin: 0;
      line-height: 1.4;
    }

    /* Ноутбук ~13–15″ */
    @media (min-width: 981px) and (max-width: 1500px) {
      .cf-hero-bg {
        background-position: 68% 40%;
      }
      .cf-hero-inner {
        padding: calc(var(--cf-chrome-bottom, 132px) + 12px) clamp(20px, 3vw, 36px) 56px;
      }
      .cf-hero-titlewrap {
        top: clamp(34%, 40vh, 44%);
      }
      .cf-hero-copy {
        transform: none;
        max-width: min(400px, 42vw);
        margin-right: clamp(8px, 1.5vw, 20px);
        padding: 18px 20px 18px 32px;
      }
      .cf-hero-eyebrow {
        font-size: clamp(1.25rem, 2vw, 1.65rem);
      }
      .cf-hero-lead {
        font-size: 0.82rem;
        margin-bottom: 16px;
      }
    }

    @media (min-width: 1501px) {
      .cf-hero-copy {
        transform: translateX(min(28%, 12vw));
      }
    }

    @media (min-width: 981px) {
      .cf-today-bar-panel-inner {
        padding-bottom: 38px;
      }
      .cf-today-bar[data-expanded="true"] .cf-today-bar-panel-inner {
        padding-bottom: 32px;
      }
      .cf-today-bar .cf-shelf-wrap {
        margin-bottom: 6px;
      }
      .cf-today-bar-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
        margin: 0;
        padding: 0;
        scroll-padding: unset;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        -webkit-mask-image: none;
                mask-image: none;
        gap: 14px;
      }
      .cf-today-bar-grid > .cf-today-card {
        flex: none;
        width: auto;
        max-width: none;
      }
      .cf-today-card-photo img {
        transform: scale(1.59);
      }
      .cf-today-bar .cf-shelf-dots {
        display: none !important;
      }
    }

    @media (max-width: 980px) {
      .cf-page-hero-bg { background-position: center center; }
      .cf-today-bar-strip {
        min-height: 38px;
        height: 38px;
      }
      .cf-today-bar-strip-inner {
        gap: 10px;
        padding: 0 14px;
        max-width: none;
      }
      .cf-today-bar-toggle { min-width: 40px; }
      .cf-today-bar-title { font-size: 0.74rem; }
      .cf-today-bar-title strong { font-size: 0.88rem; }
      .cf-today-bar-toggle { font-size: 0.6rem; padding: 6px 11px; }
      .cf-today-bar-panel-inner { padding: 12px 16px 14px; }
      .cf-today-bar-desc {
        margin: 0 0 10px;
        font-size: 0.8rem;
        line-height: 1.45;
      }
      .cf-today-bar[data-expanded="true"] .cf-today-bar-panel-inner {
        padding: 12px 16px 10px;
      }
      .cf-today-modes { margin-bottom: 8px; gap: 6px; }
      .cf-today-mode-btn { padding: 5px 9px; font-size: 0.56rem; letter-spacing: 0.12em; }
      .cf-today-bar-grid {
        margin: 0 -16px 0;
        padding: 4px 16px 8px;
        scroll-padding-inline: 16px;
        gap: 12px;
      }
      .cf-today-bar-grid > .cf-today-card {
        flex: 0 0 38%;
        width: 38%;
        max-width: 38%;
      }
      .cf-today-card .body { padding: 8px 10px 10px; }
      .cf-today-bar .cf-shelf-dots { margin-top: 8px; }
    }
    @media (max-width: 480px) {
      .cf-today-bar-title strong { display: block; font-size: 0.82rem; }
      .cf-today-bar-toggle-label { display: none; }
      .cf-today-bar-toggle { min-width: 40px; padding: 6px 10px; }
    }
    @media (max-width: 420px) {
      .cf-today-bar-grid > .cf-today-card {
        flex: 0 0 38%;
        width: 38%;
        max-width: 38%;
      }
    }

    .cf-catalog-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-bottom: 0;
      width: 100%;
    }
    .cf-catalog-filter-bar {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
      margin-bottom: 48px;
      position: relative;
      z-index: 5;
      isolation: isolate;
      width: 100%;
    }
    .cf-catalog-reset {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background: #fff;
      color: #2a2a2a;
      font: inherit;
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      min-height: 44px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      position: relative;
      z-index: 1;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cf-catalog-reset:hover:not(:disabled) {
      background: rgba(168, 39, 46, 0.08);
      border-color: rgba(168, 39, 46, 0.35);
      color: var(--red);
    }
    .cf-catalog-reset:disabled {
      opacity: 0.45;
      cursor: default;
    }
    .cf-catalog-reset[hidden] {
      display: none !important;
    }

    /* Мобильные chip-фильтры каталога */
    .cf-cat-chips {
      display: none;
      gap: 8px;
      width: 100%;
      margin-bottom: 0;
    }
    .cf-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 12px 14px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background: #ffffff;
      color: #2a2a2a;
      font: inherit;
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      cursor: pointer;
      min-width: 0;
      min-height: 44px;
      justify-content: center;
      position: relative;
      z-index: 1;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cf-chip svg { flex-shrink: 0; opacity: 0.65; }
    .cf-chip.is-active {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
    }
    .cf-chip.is-active svg { opacity: 1; }
    .cf-chip-label {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* Bottom-sheet */
    .cf-sheet {
      position: fixed;
      inset: 0;
      z-index: 300;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .cf-sheet[hidden] {
      display: none !important;
      pointer-events: none !important;
    }
    .cf-sheet-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 20, 25, 0.55);
      backdrop-filter: blur(8px);
      animation: cfSheetFadeIn 0.3s ease both;
    }
    @keyframes cfSheetFadeIn { from { opacity: 0; } to { opacity: 1; } }
    .cf-sheet-panel {
      position: relative;
      background: #ffffff;
      border-radius: 18px 18px 0 0;
      width: 100%;
      max-width: 560px;
      max-height: 82vh;
      display: flex;
      flex-direction: column;
      box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
      animation: cfSheetIn 0.4s cubic-bezier(0.2, 0.85, 0.2, 1) both;
    }
    @keyframes cfSheetIn {
      from { transform: translateY(100%); }
      to { transform: translateY(0); }
    }
    .cf-sheet-panel::before {
      content: "";
      display: block;
      width: 38px;
      height: 4px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.15);
      margin: 10px auto 0;
    }
    .cf-sheet-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 14px 22px 4px;
      gap: 18px;
    }
    .cf-sheet-title {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      font-size: 1.6rem;
      margin: 6px 0 0;
      color: #1b1b1b;
    }
    .cf-sheet-body {
      padding: 12px 22px 12px;
      overflow-y: auto;
      flex: 1;
    }
    .cf-sheet-search-input {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 12px;
      font: inherit;
      font-size: 0.94rem;
      background: #fafafa;
    }
    .cf-sheet-search-input:focus {
      outline: none;
      border-color: var(--red);
      background: #fff;
    }
    .cf-sheet-options {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .cf-sheet-options button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      min-height: 48px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      background: #fafafa;
      font: inherit;
      font-size: 0.94rem;
      color: #2a2a2a;
      text-align: left;
      cursor: pointer;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }
    .cf-sheet-options button:hover {
      border-color: var(--red);
      background: rgba(168, 39, 46, 0.04);
    }
    .cf-sheet-options button.is-active {
      border-color: var(--red);
      background: rgba(168, 39, 46, 0.08);
      color: var(--red);
      font-weight: 600;
    }
    .cf-sheet-actions {
      display: flex;
      gap: 10px;
      padding: 14px 22px 22px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .cf-sheet-reset,
    .cf-sheet-apply {
      flex: 1;
      padding: 12px 18px;
      border-radius: 999px;
      font: inherit;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
    }
    .cf-sheet-reset {
      background: transparent;
      border: 1px solid rgba(0, 0, 0, 0.15);
      color: #2a2a2a;
    }
    .cf-sheet-apply {
      background: var(--red);
      color: #fff;
      border: none;
      box-shadow: 0 8px 20px rgba(168, 39, 46, 0.28);
    }
    .cf-catalog-toolbar input[type="search"],
    .cf-catalog-toolbar select {
      padding: 12px 18px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      font: inherit;
      font-size: 0.85rem;
      color: #2a2a2a;
      min-width: 200px;
      min-height: 44px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
    .cf-catalog-toolbar select {
      padding-right: 40px;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%232a2a2a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 12px;
      cursor: pointer;
    }
    .cf-catalog-toolbar input[type="search"] { flex: 1; max-width: 360px; }
    .cf-catalog-toolbar input[type="search"]:focus,
    .cf-catalog-toolbar select:focus {
      outline: none;
      border-color: var(--red);
    }
    .cf-catalog-shelf {
      margin-bottom: 72px;
      padding-bottom: 72px;
      border-bottom: 1px solid rgba(20, 30, 40, 0.06);
    }
    .cf-catalog-shelf:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .cf-catalog-shelf-head {
      margin-bottom: 32px;
      text-align: center;
    }
    .cf-catalog-shelf-head.cf-section-head {
      margin-bottom: 32px;
    }
    .cf-catalog-shelf-head .cf-section-eyebrow {
      display: block;
      margin-bottom: 8px;
    }
    .cf-catalog-line-title {
      margin: 0;
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      text-decoration: var(--font-display-decoration);
      font-size: clamp(2rem, 5vw, 3.2rem);
      letter-spacing: 0.02em;
      line-height: 0.95;
      opacity: 0.9;
      text-wrap: balance;
    }
    .cf-catalog-line-desc {
      margin: 12px auto 0;
      max-width: 36em;
      font-family: var(--font-body, inherit);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      line-height: 1.45;
      color: rgba(40, 44, 48, 0.62);
      text-align: center;
      text-wrap: pretty;
    }
    .cf-catalog-shelf.cf-shelf-count-1 .cf-catalog-shelf-head,
    .cf-catalog-shelf.cf-shelf-count-2 .cf-catalog-shelf-head {
      margin-bottom: 28px;
    }
    /* Каталог: адаптивная сетка по количеству SKU в линейке */
    .cf-catalog-groups {
      --cf-shelf-gap: 28px;
      --cf-shelf-card-max: 280px;
      position: relative;
      z-index: 0;
      min-width: 0;
      max-width: 100%;
      overflow-x: clip;
    }
    .cf-catalog-groups .cf-shelf-hint { display: none; }
    .cf-catalog-groups .product-card .line-tag { display: none; }
    .cf-catalog-groups .cf-product-grid {
      display: grid;
      gap: var(--cf-shelf-gap);
      padding: 0;
      margin: 0 auto;
      align-items: stretch;
      justify-items: stretch;
    }
    .cf-catalog-groups .cf-product-grid .product-card {
      width: 100%;
      max-width: none;
      height: 100%;
    }
    .cf-catalog-groups .product-card .body {
      flex: 1;
      justify-content: flex-start;
    }
    .cf-catalog-groups .product-card h3 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.7em;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
    }
    .cf-catalog-groups .product-card p {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
    }
    .cf-catalog-groups .cf-product-grid.is-count-1 {
      display: grid;
      grid-template-columns: minmax(0, var(--cf-shelf-card-max));
      justify-content: center;
      justify-items: stretch;
      width: fit-content;
      max-width: 100%;
      margin: 0 auto;
    }
    .cf-catalog-groups .cf-product-grid.is-count-1 .product-card {
      padding: 16px 14px 20px;
      width: var(--cf-shelf-card-max);
      max-width: 100%;
      margin: 0 auto;
    }
    .cf-catalog-groups .cf-product-grid.is-count-1 .cf-product-img {
      aspect-ratio: 4 / 5;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
    }
    .cf-catalog-groups .cf-product-grid.is-count-2 {
      grid-template-columns: repeat(2, minmax(240px, var(--cf-shelf-card-max)));
      justify-content: center;
      max-width: calc(var(--cf-shelf-card-max) * 2 + var(--cf-shelf-gap));
    }
    .cf-catalog-groups .cf-product-grid.is-count-3 {
      grid-template-columns: repeat(3, minmax(220px, var(--cf-shelf-card-max)));
      justify-content: center;
      max-width: calc(var(--cf-shelf-card-max) * 3 + var(--cf-shelf-gap) * 2);
    }
    .cf-catalog-groups .cf-product-grid.is-count-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: 1180px;
    }
    /* 5 SKU: симметрично 3 + 2 по центру */
    .cf-catalog-groups .cf-product-grid.is-count-5 {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      max-width: 1020px;
    }
    .cf-catalog-groups .cf-product-grid.is-count-5 .product-card:nth-child(1) { grid-column: 1 / span 2; }
    .cf-catalog-groups .cf-product-grid.is-count-5 .product-card:nth-child(2) { grid-column: 3 / span 2; }
    .cf-catalog-groups .cf-product-grid.is-count-5 .product-card:nth-child(3) { grid-column: 5 / span 2; }
    .cf-catalog-groups .cf-product-grid.is-count-5 .product-card:nth-child(4) { grid-column: 2 / span 2; }
    .cf-catalog-groups .cf-product-grid.is-count-5 .product-card:nth-child(5) { grid-column: 4 / span 2; }
    .cf-catalog-groups .cf-product-grid.is-count-6 {
      grid-template-columns: repeat(3, minmax(220px, var(--cf-shelf-card-max)));
      justify-content: center;
      max-width: calc(var(--cf-shelf-card-max) * 3 + var(--cf-shelf-gap) * 2);
    }
    /* 7 SKU: 4 + 3 по центру */
    .cf-catalog-groups .cf-product-grid.is-count-7 {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      max-width: 1180px;
    }
    .cf-catalog-groups .cf-product-grid.is-count-7 .product-card:nth-child(-n+4) { grid-column: span 3; }
    .cf-catalog-groups .cf-product-grid.is-count-7 .product-card:nth-child(5) { grid-column: 2 / span 3; }
    .cf-catalog-groups .cf-product-grid.is-count-7 .product-card:nth-child(6) { grid-column: 5 / span 3; }
    .cf-catalog-groups .cf-product-grid.is-count-7 .product-card:nth-child(7) { grid-column: 8 / span 3; }
    .cf-catalog-groups .cf-product-grid.is-count-8 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      max-width: 1180px;
    }
    .cf-catalog-groups .cf-product-grid.is-count-many {
      grid-template-columns: repeat(auto-fill, minmax(240px, var(--cf-shelf-card-max)));
      justify-content: center;
      max-width: 1180px;
    }

    @media (min-width: 981px) {
      .cf-catalog-groups .product-card .cf-product-img {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        align-self: center;
      }
      .cf-catalog-groups .cf-product-grid.is-count-1 .cf-product-img {
        width: 100%;
        max-width: 100%;
      }
      .cf-catalog-groups .product-card .cf-product-img img {
        transform: scale(0.7);
      }
      .cf-catalog-groups .product-card:hover .cf-product-img img {
        transform: scale(0.728);
      }
      .cf-catalog-groups .product-card .cf-product-img.is-contain-fit img {
        transform: scale(0.68);
      }
      .cf-catalog-groups .product-card:hover .cf-product-img.is-contain-fit img {
        transform: scale(0.694);
      }
    }

    .cf-footer {
      background: #2b3338;
      color: #d6dde1;
      padding: 36px 32px 24px;
      text-align: center;
    }
    .cf-footer .cf-footer-brand {
      margin: 0 0 4px;
    }
    .cf-footer-tagline {
      margin: 0 0 12px !important;
      font-size: 0.72rem !important;
      letter-spacing: 0.12em !important;
      opacity: 0.55 !important;
    }
    .cf-footer p { margin: 6px 0; font-size: 0.8rem; letter-spacing: 0.08em; opacity: 0.7; }
    .cf-footer-details {
      max-width: 560px;
      margin: 0 auto;
      text-align: left;
    }
    .cf-footer-details-summary {
      list-style: none;
      cursor: pointer;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #b8c5cc;
      text-align: center;
      padding: 6px 0;
      user-select: none;
    }
    .cf-footer-details-summary::-webkit-details-marker { display: none; }
    .cf-footer-details-summary::after {
      content: " +";
      opacity: 0.7;
    }
    .cf-footer-details[open] .cf-footer-details-summary::after {
      content: " −";
    }
    .cf-footer-details[open] .cf-footer-details-summary {
      margin-bottom: 10px;
    }
    .cf-footer-legal {
      font-size: 0.68rem;
      line-height: 1.5;
      letter-spacing: 0.01em;
      opacity: 0.8;
      padding: 0 4px 4px;
    }
    .cf-footer-line {
      margin: 0 0 7px !important;
      text-align: left;
      letter-spacing: 0.01em !important;
      opacity: 1 !important;
    }
    .cf-footer-line--contacts { margin-bottom: 0 !important; }
    .cf-footer-legal-label {
      font-weight: 600;
      color: #d0d9de;
    }
    .cf-footer-legal a {
      color: #c5d4dc;
      text-decoration: none;
      border-bottom: 1px solid rgba(197, 212, 220, 0.28);
    }
    .cf-footer-legal a:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.45); }
    .cf-footer-copy {
      margin-top: 14px !important;
      font-size: 0.68rem !important;
      letter-spacing: 0.05em !important;
      opacity: 0.55 !important;
    }

    .cf-scroll-top {
      position: fixed;
      left: max(20px, env(safe-area-inset-left));
      bottom: max(24px, env(safe-area-inset-bottom));
      z-index: 115;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(20, 30, 40, 0.12);
      color: #1b1b1b;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
      pointer-events: none;
    }
    .cf-scroll-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    .cf-scroll-top:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }
    .cf-scroll-top:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
    }
    body.cf-nav-open .cf-scroll-top,
    body.cf-today-open .cf-scroll-top,
    body.cf-photo-lightbox-open .cf-scroll-top {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .cf-scroll-top { transition: none; }
    }

    @media (max-width: 1100px) {
      .cf-product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .cf-product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
      .cf-about-grid { grid-template-columns: 1fr; gap: 32px; }
      .cf-about-visual { max-width: 420px; margin: 0 auto; }
      .cf-catalog-groups .cf-product-grid.is-count-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 920px;
      }
      .cf-catalog-groups .cf-product-grid.is-count-4,
      .cf-catalog-groups .cf-product-grid.is-count-8 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 640px;
      }
      .cf-catalog-groups .cf-product-grid.is-count-5 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        max-width: min(100%, 720px);
      }
      .cf-catalog-groups .cf-product-grid.is-count-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: min(100%, 720px);
      }
      .cf-catalog-groups .cf-product-grid.is-count-7 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        max-width: min(100%, 720px);
      }
      .cf-where-shell {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
        margin: 0;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
      }
      #page-where .cf-body {
        padding-top: 48px;
        padding-bottom: 64px;
      }
      #page-where .cf-body-inner {
        padding-inline: 16px;
        overflow-x: clip;
        max-width: 100%;
      }
      #page-where {
        overflow-x: clip;
      }
      #page-where .cf-page-hero-lead {
        display: none;
      }
      .cf-locator {
        gap: 0;
      }
      .cf-locator-head,
      .cf-locator-filters-btn {
        display: none !important;
      }
      .cf-locator-sort-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 16px;
        background: #eceae6;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 0.82rem;
      }
      .cf-locator-sort-label {
        color: #7a7a7a;
      }
      .cf-locator-sort-value {
        color: #1b1b1b;
        font-weight: 600;
        text-transform: lowercase;
      }
      .cf-locator-search-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px;
        box-sizing: border-box;
      }
      .cf-locator-search {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: none;
        background-color: #eceae6;
        padding: 15px 3.25rem 15px 16px;
        font-size: 0.94rem;
      }
      .cf-locator-search:focus {
        background-color: #eceae6;
        box-shadow: none;
      }
      .cf-locator-search-wrap .cf-locator-find {
        right: 10px;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        background: transparent;
        color: #1b1b1b;
        letter-spacing: 0;
        text-transform: none;
      }
      .cf-locator-search-wrap .cf-locator-find:hover {
        background: rgba(0, 0, 0, 0.06);
        color: var(--red);
        transform: translateY(-50%);
      }
      .cf-locator-find-label {
        display: none;
      }
      .cf-locator-find-icon {
        display: block;
      }
      .cf-where-map {
        position: relative;
        overflow: hidden;
        width: 100%;
        min-height: 0;
      }
      .cf-where-map,
      .cf-where-map #yandex-map {
        min-height: 0;
        height: 300px;
      }
      .cf-where-map .map-frame {
        position: relative;
        width: 100%;
        min-height: 0;
        height: 300px;
      }
      #yandex-map [class*="-layers-pane"] {
        filter: none;
      }
      #yandex-map [class*="-layers-pane"]:hover {
        filter: none;
      }
      .cf-where-sidebar {
        max-height: none;
        border-left: none;
        border-top: none;
        min-height: 0;
        background: #eceae6;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
      .cf-where-sidebar .cf-locator-panel {
        padding: 10px 16px 8px;
        background: #eceae6;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      }
      .cf-locator-panel-grid {
        gap: 8px 10px;
      }
      .cf-store-list {
        max-height: none;
        gap: 0;
        padding: 0;
        overflow: visible;
      }
      .cf-store-card {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        margin: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: none;
        background: #eceae6;
        transform: none;
      }
      .cf-store-card:hover {
        transform: none;
        box-shadow: none;
        background: #e4e2de;
      }
      .cf-store-card.is-active {
        background: #ffffff;
        box-shadow: inset 3px 0 0 var(--red);
        border-bottom-color: rgba(0, 0, 0, 0.08);
      }
      .cf-store-card-main {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex: 1;
        min-width: 0;
      }
      .cf-store-card-title {
        font-size: 0.94rem;
      }
      .cf-store-card-city {
        display: block;
      }
      .cf-store-card-actions {
        margin-top: 6px;
        padding-top: 10px;
      }
      .cf-store-card-info {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.22);
        background: transparent;
        font: inherit;
        font-size: 0.72rem;
        font-weight: 600;
        font-style: italic;
        color: #5a5a5a;
        cursor: pointer;
        padding: 0;
      }
      .cf-store-card-empty {
        background: #eceae6;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      }
      .cf-where-grid { grid-template-columns: 1fr; }
      .cf-store-card { position: static; }
      .cf-contact-grid { grid-template-columns: 1fr; }
      .cf-form-footer { grid-template-columns: 1fr; }
    }
    @media (min-width: 981px) {
      .cf-site-chrome .cf-header-bar {
        display: contents;
      }
      .cf-site-chrome .header-side.left {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        z-index: 2;
        position: relative;
      }
      .cf-site-chrome .nav {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
        z-index: 1;
        min-width: 0;
        max-width: calc(100vw - 480px);
      }
      .cf-site-chrome .header-side.right {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
      }
    }
    @media (min-width: 981px) and (max-width: 1320px) {
      .site-header {
        gap: 10px;
        padding-left: 16px;
        padding-right: 16px;
      }
      .site-header .nav {
        gap: 4px 12px;
        max-width: calc(100vw - 440px);
      }
      .site-header .nav a {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
      }
      .site-header .btn-skin,
      .site-header .cf-header-city {
        font-size: 0.65rem;
        padding: 8px 12px;
      }
    }
    @media (max-width: 980px) {
      .cf-site-chrome.site-header {
        display: block;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
      }
      .cf-site-chrome .cf-header-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.94);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
      }
      .cf-site-chrome.is-scrolled .cf-header-bar {
        background: rgba(255, 255, 255, 0.98);
      }
      .site-header .logo,
      .site-header .cf-header-city,
      .site-header .cf-nav-toggle {
        color: #1b1b1b;
      }
      .site-header .cf-header-city,
      .site-header .cf-nav-toggle {
        border-color: rgba(0, 0, 0, 0.18);
      }
      .cf-site-chrome .header-side.left {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 132px);
        justify-content: flex-start;
      }
      .cf-site-chrome .header-side.right {
        flex: 0 0 auto;
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        margin-left: auto;
      }
      .logo.logo-brand {
        flex-shrink: 1;
        min-width: 0;
      }
      .cf-logo-img--header {
        width: min(168px, 38vw);
      }
      .cf-nav-toggle {
        display: inline-flex;
        order: 10;
        margin-left: 2px;
      }
      .cf-site-chrome .nav {
        position: fixed;
        top: var(--cf-header-height, 64px);
        left: 0;
        right: 0;
        width: 100%;
        grid-column: unset;
        grid-row: unset;
        z-index: 129;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 6px 12px 16px;
        margin: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
        max-height: calc(100dvh - var(--cf-header-height, 64px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
          opacity 0.28s ease,
          transform 0.28s ease,
          visibility 0.28s ease;
      }
      .cf-site-chrome.is-nav-open .nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }
      .nav a {
        font-size: 0.8rem;
        letter-spacing: 0.14em;
        padding: 14px 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        opacity: 1;
        color: #1b1b1b;
      }
      .nav a:last-child { border-bottom: none; }
      .nav a:hover,
      .nav a.is-active {
        border-bottom-color: rgba(0, 0, 0, 0.06);
        background: rgba(196, 30, 58, 0.06);
      }
      .nav a.is-active { color: var(--red); }
      .cf-nav-menu-extra {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 8px);
        margin: 12px 4px 4px;
        padding: 17px 18px;
        min-height: 52px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        line-height: 1.2;
      }
      .site-header .btn-routine,
      .site-header .btn-skin:not(.cf-nav-menu-extra) { padding: 7px 12px; font-size: 0.65rem; }
      .logo { font-size: 0.95rem; letter-spacing: 0.12em; }
      main > section.page:not(#page-home) {
        padding-top: calc(var(--cf-header-height, 72px) + 12px);
      }
      .cf-header-city { font-size: 0.62rem; padding: 6px 10px; max-width: 120px; gap: 5px; }
      .cf-city-popover {
        top: calc(var(--cf-header-height, 72px) + 12px);
        bottom: auto;
        right: 16px;
        left: 16px;
        min-width: 0;
      }
      .cf-page-hero-bg { background-size: cover; }
    }
    @media (max-width: 720px) {
      .cf-site-chrome .cf-header-bar { padding: 10px 14px; }
      .cf-site-chrome .header-side.right { gap: 6px; }
      .site-header .btn-routine,
      .site-header .btn-skin:not(.cf-nav-menu-extra) { padding: 6px 10px; font-size: 0.58rem; letter-spacing: 0.1em; }
      .cf-nav-toggle { width: 40px; height: 40px; }

      .cf-hero { min-height: 100vh; }
      #page-home .cf-hero-inner {
        padding: calc(var(--cf-chrome-bottom, 156px) + 20px) 22px 60px;
        display: grid;
        grid-template-rows: auto 1fr auto;
        gap: 20px;
        align-items: stretch;
        justify-content: stretch;
      }
      .cf-hero-titlewrap {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 clamp(12px, 4vw, 24px);
        order: 0;
      }
      .cf-hero-spacer {
        display: block;
        min-height: 0;
      }
      .cf-hero-copy {
        max-width: none;
        width: calc(100% + 36px);
        text-align: left;
        align-self: end;
        justify-self: stretch;
        margin: 0 -18px;
        padding: 18px 20px 18px 28px;
        margin-right: 0;
        border-radius: 0;
        transform: none;
      }
      .cf-hero-copy::before {
        left: 12px;
      }
      .cf-hero-eyebrow { font-size: 1.4rem; margin-bottom: 12px; }
      .cf-hero-lead { font-size: 0.82rem; margin-bottom: 18px; }
      .cf-hero-cta { padding: 10px 18px; font-size: 0.66rem; }
      .cf-hero-scroll { display: none; }

      .cf-section { padding: 64px 0 56px; }
      .cf-section-inner { padding: 0 18px; }
      .cf-section-head { margin-bottom: 36px; }
      #page-home .cf-home-theme .cf-section-head::before {
        width: min(108%, 560px);
        height: clamp(220px, 58vw, 340px);
        top: 44%;
        filter: blur(26px);
      }
      #page-home {
        --cf-home-heading-size: clamp(1.968rem, 9.02vw, 3.28rem);
      }
      #page-home .cf-section-title,
      #page-home .cf-hero-title {
        font-size: var(--cf-home-heading-size);
      }
      .cf-section-lead { font-size: 0.85rem; }

      #page-home .cf-product-grid { grid-template-columns: none; }
      #page-home .cf-product-grid.cols-3 { grid-template-columns: none; }
      #page-home .cf-product-grid .product-card { padding: 14px 12px 18px; gap: 10px; }
      #page-home .cf-product-grid .product-card h3 { font-size: 0.82rem; }
      #page-home .cf-product-grid .product-card p { font-size: 0.72rem; }

      .cf-footer { padding: 28px 20px 20px; }
      .cf-logo-img--footer { width: min(168px, 58vw); }

      .cf-page-hero,
      #page-about .cf-page-hero,
      #page-catalog .cf-page-hero,
      #page-where .cf-page-hero,
      #page-contacts .cf-page-hero {
        min-height: 44vh;
        padding: 130px 20px 60px;
      }
      .cf-body { padding: 56px 0 70px; }
      .cf-body-inner { padding: 0 18px; }
      .cf-catalog-toolbar input[type="search"],
      .cf-catalog-toolbar select { min-width: 0; width: 100%; max-width: none; }
      .cf-catalog-toolbar { display: none; }
      .cf-cat-chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
      }
      .cf-chip {
        width: 100%;
      }
      .cf-catalog-filter-bar { margin-bottom: 32px; gap: 12px; }
      .cf-catalog-reset { width: 100%; }
      .cf-catalog-groups .cf-product-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: none;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        touch-action: pan-x pan-y;
        scroll-padding-inline: 22px 18px;
        gap: 12px;
        padding: 4px 22px 8px 22px;
        margin: 0 -18px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
                mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
      }
      .cf-catalog-groups .cf-product-grid::-webkit-scrollbar { display: none; }
      .cf-catalog-groups .cf-shelf-hint { display: none !important; }
      .cf-catalog-shelf {
        margin-bottom: 32px;
        padding-bottom: 32px;
      }
      .cf-catalog-shelf:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
      }
      .cf-catalog-groups .cf-shelf-wrap {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .cf-catalog-groups .cf-product-grid {
        padding-bottom: 0;
      }
      .cf-catalog-groups .cf-shelf-dots {
        margin-top: 14px;
        margin-bottom: 2px;
        padding-top: 0;
      }
      .cf-catalog-groups .cf-product-grid[class*="is-count-"] {
        max-width: 100%;
        margin: 0 -18px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        grid-template-columns: none;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
      }
      .cf-catalog-groups .cf-product-grid[class*="is-count-"] .product-card {
        grid-column: auto;
        flex: 0 0 38%;
        width: 38%;
        max-width: 38%;
        height: auto;
        scroll-snap-align: none;
        padding: 12px 10px 16px;
        gap: 10px;
      }
      .cf-catalog-groups .cf-product-grid.is-count-1 {
        justify-content: center;
      }
      .cf-catalog-groups .cf-product-grid.is-count-1 .product-card {
        flex: 0 0 min(78vw, var(--cf-shelf-card-max));
        width: min(78vw, var(--cf-shelf-card-max));
        max-width: min(78vw, var(--cf-shelf-card-max));
      }
      .cf-catalog-groups .cf-product-grid.is-count-1 .cf-product-img {
        aspect-ratio: 4 / 5;
        max-width: none;
      }
      .cf-catalog-groups .cf-catalog-shelf-head {
        text-align: left;
      }
      .cf-catalog-groups .product-card .line-tag {
        font-size: clamp(0.52rem, 2.2vw, 0.58rem);
        letter-spacing: 0.1em;
      }
      .cf-catalog-groups .product-card h3 { font-size: 0.84rem; }
      .cf-catalog-groups .product-card p { font-size: 0.72rem; }
      .cf-catalog-shelf-head { margin-bottom: 12px; }
      .cf-catalog-shelf.cf-shelf-count-1 .cf-catalog-shelf-head,
      .cf-catalog-shelf.cf-shelf-count-2 .cf-catalog-shelf-head {
        margin-bottom: 10px;
      }
      .cf-catalog-line-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
      .cf-catalog-line-desc { font-size: 0.72rem; margin-top: 8px; text-align: center; }
      .cf-about-text p { font-size: 0.92rem; }
      .cf-card { padding: 22px; }
      .cf-where-map,
      .cf-where-map #yandex-map,
      .cf-where-map .map-frame {
        min-height: 0;
        height: 300px;
      }
      .cf-geo-bar { padding: 14px 16px; }
      .cf-geo-bar { flex-direction: column; align-items: stretch; }
      .cf-geo-actions { width: 100%; }
      .cf-geo-actions .cf-geo-select { flex: 1; min-width: 0; width: 100%; }
      .cf-geo-actions .cf-geo-locate { white-space: nowrap; }
    }
    @media (max-width: 520px) {
      .site-header .header-side.right > .btn-skin { display: none; }
      .cf-header-city { max-width: 140px; }
    }
    @media (max-width: 420px) {
      .cf-where-map,
      .cf-where-map #yandex-map,
      .cf-where-map .map-frame {
        min-height: 0;
        height: 280px;
      }
      .cf-page-hero-bg { background-position: center center; }
    }

    /* === Mobile horizontal carousels === */
    .cf-shelf-wrap {
      position: relative;
      min-width: 0;
      max-width: 100%;
      overflow-x: clip;
    }
    .cf-shelf-dots {
      display: none;
      justify-content: center;
      align-items: center;
      gap: 6px;
      margin: 0 0 10px;
      padding: 2px 0 0;
    }
    .cf-shelf-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      border: none;
      padding: 0;
      background: rgba(168, 39, 46, 0.28);
      cursor: pointer;
      transition: transform 0.2s, background 0.2s;
    }
    .cf-shelf-dot.is-active {
      background: var(--red);
      transform: scale(1.15);
    }
    .cf-shelf-hint { display: none; }
    @keyframes cf-arrow-nudge {
      0%, 100% { transform: translateX(0); opacity: 0.7; }
      50% { transform: translateX(8px); opacity: 1; }
    }
    @media (max-width: 760px) {
      .cf-shelf-dots:not([hidden]) {
        display: flex;
      }
      .cf-shelf-hint {
        display: none !important;
      }
      .cf-product-related-hint {
        display: none !important;
      }
      .cf-shelf-hint-arrow {
        display: inline-block;
        font-size: 0.95rem;
        line-height: 1;
        animation: cf-arrow-nudge 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
      }

      /* Home page product carousels (линейки) */
      #page-home .cf-product-grid,
      #page-home .cf-product-grid.cols-3 {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 22px 18px;
        gap: 14px;
        padding: 4px 0 8px 22px;
        margin: 0 -18px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 44px), transparent 100%);
                mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 44px), transparent 100%);
      }
      #page-home .cf-product-grid::-webkit-scrollbar { display: none; }
      #page-home .cf-product-grid > .product-card {
        flex: 0 0 64%;
        max-width: 64%;
        scroll-snap-align: start;
      }
      #page-home .cf-product-grid.is-count-1 > .product-card {
        flex: 0 0 78%;
        max-width: 78%;
      }

      /* Visual hint that there is more content to scroll */
      .cf-products-block,
      .cf-catalog-groups {
        position: relative;
      }

      /* Stagger animation: less aggressive on mobile carousels */
      .cf-catalog-groups .product-card:nth-child(n+5) { animation-delay: 0.30s; }
    }
    @media (max-width: 480px) {
      #page-home .cf-product-grid > .product-card {
        flex: 0 0 72%;
        max-width: 72%;
      }
    }

    /* Section shell */
    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 28px 64px;
    }
    .section-title {
      margin: 0 0 8px;
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .section-lead {
      margin: 0 0 28px;
      color: var(--gray-500);
      max-width: 56ch;
    }

    /* About */
    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 36px;
      align-items: center;
    }
    .about-visual {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      aspect-ratio: 5 / 4;
    }
    .about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-text p { color: var(--gray-500); margin: 0 0 14px; }

    /* Catalog */
    .toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 20px;
    }
    .toolbar input[type="search"] {
      flex: 1;
      min-width: 200px;
      padding: 12px 16px;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      font: inherit;
      background: var(--white);
    }
    .toolbar select {
      padding: 12px 14px;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      font: inherit;
      background: var(--white);
      color: var(--gray-800);
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 18px;
    }
    .product-card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      padding: 16px 14px 20px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(10px) saturate(1.05);
      -webkit-backdrop-filter: blur(10px) saturate(1.05);
      border: 1px solid rgba(255, 255, 255, 0.7);
      box-shadow: 0 1px 0 rgba(20, 30, 40, 0.02);
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: background 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    }
    .product-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      border-radius: inherit;
      cursor: pointer;
      pointer-events: auto;
    }
    .product-card > * {
      position: relative;
      z-index: 1;
    }
    .product-card *,
    .product-card *::before,
    .product-card *::after {
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
      cursor: pointer;
    }
    .product-card:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 3px;
    }
    .product-card:hover {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 20px 44px rgba(20, 30, 40, 0.13);
      transform: translateY(-4px);
    }
    .product-card .cf-product-img {
      width: 100%;
      aspect-ratio: 4 / 5;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 2px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-card .cf-product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .product-card .cf-product-img.is-contain-fit img {
      object-fit: contain;
      object-position: center;
      padding: 4%;
      transform: none;
    }
    .cf-product-photo.is-contain-fit img {
      object-fit: contain;
      object-position: center;
      padding: 4%;
      transform: scale(0.88);
    }
    .product-card:hover .cf-product-img img { transform: scale(1.04); }
    .product-card:hover .cf-product-img.is-contain-fit img { transform: scale(1.02); }
    .cf-catalog-groups .product-card .cf-product-img img { transform: scale(1.03); }
    .cf-catalog-groups .product-card:hover .cf-product-img img { transform: scale(1.07); }
    .cf-catalog-groups .product-card .cf-product-img.is-contain-fit img { transform: none; }
    .cf-catalog-groups .product-card:hover .cf-product-img.is-contain-fit img { transform: scale(1.02); }
    .product-card .body {
      padding: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .product-card .line-tag,
    .cf-line-label {
      display: inline-block;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(168, 39, 46, 0.08);
      color: var(--red);
      font-weight: 600;
      white-space: nowrap;
      max-width: 100%;
      overflow-wrap: normal;
      word-break: keep-all;
    }
    .cf-product-new {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      font-size: 0.58rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(168, 39, 46, 0.92);
      color: #fff;
      font-weight: 600;
    }
    .cfc-img-webp-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(24, 120, 86, 0.92);
      color: #fff;
      font-weight: 600;
    }
    .cfc-img-perf-badge {
      position: absolute;
      left: 6px;
      bottom: 6px;
      z-index: 2;
      font-size: 0.62rem;
      letter-spacing: 0.04em;
      padding: 3px 8px;
      border-radius: 6px;
      background: rgba(20, 24, 32, 0.82);
      color: #fff;
      font-weight: 600;
      font-variant-numeric: tabular-nums;
      pointer-events: none;
    }
    .cfc-img-perf-badge.is-fast { background: rgba(24, 120, 86, 0.92); }
    .cfc-img-perf-badge.is-slow { background: rgba(168, 39, 46, 0.92); }
    .cfc-img-perf-banner {
      margin: 0 0 20px;
      padding: 14px 18px;
      border-radius: 12px;
      background: rgba(24, 120, 86, 0.08);
      border: 1px solid rgba(24, 120, 86, 0.22);
      font-size: 0.88rem;
      line-height: 1.5;
      color: #1a2e28;
    }
    .cfc-img-perf-banner .cfc-img-webp-tag {
      position: static;
      display: inline-block;
      vertical-align: middle;
      margin: 0 4px;
      padding: 2px 8px;
      font-size: 0.55rem;
    }
    .cf-product-img { position: relative; }
    .product-card-heading {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .product-card .skin-tag {
      font-size: 0.62rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: #6b6b6b;
      font-weight: 500;
    }
    .product-card h3 {
      margin: 2px 0 0;
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: #1b1b1b;
      line-height: 1.35;
      cursor: pointer;
    }
    .product-card p {
      margin: 0;
      font-size: 0.78rem;
      line-height: 1.55;
      color: #4a4a4a;
      max-width: 28ch;
      cursor: pointer;
    }
    .product-card .product-card-buy,
    .cf-product-buy-btn {
      pointer-events: auto;
      position: relative;
      z-index: 3;
      touch-action: manipulation;
      margin-top: 6px;
      padding: 9px 18px;
      border-radius: 999px;
      border: 1px solid rgba(168, 39, 46, 0.35);
      background: rgba(255, 255, 255, 0.92);
      color: var(--red);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .product-card .product-card-buy:hover,
    .cf-product-buy-btn:hover {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(168, 39, 46, 0.22);
    }
    .cf-product-buy-btn {
      align-self: flex-start;
      margin: 8px 0 4px;
      padding: 11px 22px;
      font-size: 0.66rem;
      letter-spacing: 0.2em;
    }
    .product-card img {
      -webkit-user-drag: none;
      user-drag: none;
    }

    .catalog-group-title {
      margin: 28px 0 14px;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      border-bottom: 2px solid var(--gray-200);
      padding-bottom: 8px;
    }
    .catalog-group-title:first-child { margin-top: 0; }
    .catalog-groups .product-grid { margin-bottom: 8px; }

    /* Map */
    .map-layout {
      display: grid;
      grid-template-columns: 1fr minmax(280px, 340px);
      gap: 20px;
      align-items: start;
    }
    .map-frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-200);
      background: var(--white);
      min-height: 420px;
    }
    #yandex-map {
      width: 100%;
      height: 420px;
      min-height: 360px;
    }
    .store-panel {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow);
    }
    .store-panel h3 { margin: 0 0 10px; font-size: 1.1rem; }
    .store-panel .muted { color: var(--gray-500); font-size: 0.9rem; }

    /* Contacts */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .panel {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }
    .panel h3 { margin: 0 0 12px; }
    .panel form input,
    .panel form textarea {
      width: 100%;
      margin-bottom: 12px;
      padding: 12px 14px;
      border: 1px solid var(--gray-200);
      border-radius: 10px;
      font: inherit;
    }
    .panel form textarea { min-height: 120px; resize: vertical; }
    .btn {
      padding: 12px 22px;
      border: none;
      border-radius: 10px;
      background: var(--red);
      color: var(--white);
      font-weight: 600;
      cursor: pointer;
      font: inherit;
    }
    .btn:hover { background: var(--red-dark); }

    /* === Premium modal (Quiz / Routine) === */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(15, 20, 25, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: max(12px, env(safe-area-inset-top)) 24px max(12px, env(safe-area-inset-bottom));
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .modal-backdrop.is-open { display: flex; opacity: 1; }
    /* Квиз «Узнать тип кожи» — плавное открытие/закрытие */
    #quiz-modal.modal-backdrop {
      display: flex;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.42s ease, visibility 0.42s ease;
    }
    #quiz-modal.modal-backdrop.is-open,
    #quiz-modal.modal-backdrop.is-closing {
      visibility: visible;
    }
    #quiz-modal.modal-backdrop.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    #quiz-modal.modal-backdrop.is-closing {
      opacity: 0;
      pointer-events: none;
    }
    #quiz-modal .modal {
      transform: translateY(22px) scale(0.965);
      opacity: 0;
      transition:
        transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.42s ease,
        box-shadow 0.42s ease;
    }
    #quiz-modal.modal-backdrop.is-open .modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    #quiz-modal.modal-backdrop.is-closing .modal {
      transform: translateY(14px) scale(0.975);
      opacity: 0;
    }
    #quiz-modal.modal-backdrop.is-open .modal-body > .quiz-step,
    #quiz-modal.modal-backdrop.is-open .modal-body > .quiz-result {
      animation: cfQuizBodyIn 0.48s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    @keyframes cfQuizBodyIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .modal {
      position: relative;
      background: #ffffff;
      border-radius: 16px;
      max-width: 560px;
      width: 100%;
      max-height: min(92vh, 92dvh);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
      transform: translateY(30px) scale(0.96);
      opacity: 0;
      transition: transform 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), opacity 0.4s ease;
    }
    .modal-backdrop.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }
    .modal.modal-wide { max-width: 760px; }

    .modal-progress {
      height: 3px;
      background: rgba(168, 39, 46, 0.08);
      position: relative;
      overflow: hidden;
    }
    .modal-progress-bar {
      position: absolute;
      inset: 0 auto 0 0;
      width: 0%;
      background: linear-gradient(90deg, var(--red), #d63a42);
      transition: width 0.55s cubic-bezier(0.2, 0.85, 0.2, 1);
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 28px 32px 6px;
      border-bottom: none;
      gap: 18px;
    }
    .modal-eyebrow {
      display: block;
      font-size: 0.66rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 8px;
    }
    .modal-head h2 {
      margin: 0;
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.6rem, 3vw, 2rem);
      line-height: 1.2;
      color: #1b1b1b;
      letter-spacing: 0.01em;
    }
    .modal-close {
      border: none;
      background: transparent;
      color: #6b6b6b;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.4rem;
      line-height: 1;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s;
    }
    .modal-close:hover { background: rgba(0, 0, 0, 0.05); color: var(--red); }

    .modal-body {
      padding: 22px 32px 32px;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      flex: 1;
      min-height: 0;
    }

    /* === Store partner modal === */
    #store-modal.modal-backdrop {
      z-index: 210;
      display: flex;
      padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    #store-modal.modal-backdrop.is-open,
    #store-modal.modal-backdrop.is-closing {
      visibility: visible;
    }
    #store-modal.modal-backdrop.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    #store-modal .modal.cf-store-modal {
      max-width: min(560px, 100%);
      width: 100%;
      max-height: min(86dvh, 86vh);
      border-radius: 16px;
      transform: translateY(16px) scale(0.96);
      opacity: 0;
      transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
    }
    #store-modal.modal-backdrop.is-open .modal.cf-store-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    #store-modal.modal-backdrop.is-closing .modal.cf-store-modal {
      transform: translateY(10px) scale(0.98);
      opacity: 0;
    }
    .cf-store-modal-body {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .cf-store-modal-desc {
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.6;
      color: #4a4a4a;
    }
    .cf-store-modal-fields p {
      margin: 0 0 10px;
      font-size: 0.88rem;
      line-height: 1.55;
      color: #4a4a4a;
    }
    .cf-store-field {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 0 0 10px;
      font-size: 0.88rem;
      line-height: 1.55;
      color: #4a4a4a;
    }
    .cf-store-field--inline {
      display: inline-flex;
      align-items: flex-start;
      gap: 8px;
      margin: 0;
      vertical-align: top;
    }
    .cf-store-field-icon {
      flex-shrink: 0;
      width: 16px;
      margin-top: 2px;
      color: #a0a0a0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .cf-store-field-icon svg {
      display: block;
    }
    .cf-store-field-text {
      flex: 1;
      min-width: 0;
    }
    .cf-store-field-text a {
      color: var(--red);
      text-decoration: none;
    }
    .cf-store-field-text a:hover {
      text-decoration: underline;
    }
    .cf-usage-stage {
      margin: 12px 0 6px;
      font-size: 0.88rem;
      font-weight: 600;
      color: #1b1b1b;
    }
    .cf-usage-stage:first-child {
      margin-top: 0;
    }
    .cf-store-field--sub {
      margin: -2px 0 8px;
      padding-left: 26px;
    }
    .cf-store-field--sub .cf-store-field-text {
      font-size: 0.86rem;
    }
    .cf-store-modal-fields p:last-child,
    .cf-store-modal-fields .cf-store-field:last-child {
      margin-bottom: 0;
    }
    .cf-store-modal-fields a {
      color: var(--red);
      text-decoration: none;
    }
    .cf-store-modal-fields a:hover {
      text-decoration: underline;
    }
    .cf-store-modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
      padding-top: 16px;
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    .cf-store-modal-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      background: #fff;
      color: #1b1b1b;
      font: inherit;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cf-store-modal-btn:hover {
      border-color: rgba(168, 39, 46, 0.35);
      color: var(--red);
    }
    .cf-store-modal-btn--primary {
      background: #1b1b1b;
      border-color: #1b1b1b;
      color: #fff;
    }
    .cf-store-modal-btn--primary:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    #store-contact-modal.modal-backdrop {
      z-index: 220;
      display: flex;
      padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    #store-contact-modal.modal-backdrop.is-open,
    #store-contact-modal.modal-backdrop.is-closing { visibility: visible; }
    #store-contact-modal.modal-backdrop.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    #store-contact-modal .modal.cf-store-contact-modal {
      max-width: min(520px, 100%);
      width: 100%;
      max-height: min(90dvh, 90vh);
      border-radius: 16px;
      transform: translateY(16px) scale(0.96);
      opacity: 0;
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    }
    #store-contact-modal.modal-backdrop.is-open .modal.cf-store-contact-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    #store-contact-modal.modal-backdrop.is-closing .modal.cf-store-contact-modal {
      transform: translateY(10px) scale(0.98);
      opacity: 0;
    }
    .cf-store-contact-form { display: flex; flex-direction: column; gap: 14px; }
    .cf-form-legend {
      margin: 0 0 8px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
    }
    .cf-contact-method-row {
      display: grid;
      gap: 8px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .cf-contact-method-row:last-child { border-bottom: none; }
    .cf-form-check {
      display: grid;
      grid-template-columns: 16px minmax(0, 1fr);
      align-items: center;
      gap: 10px;
      margin: 0;
      font-size: 0.9rem;
      color: #2a2a2a;
      cursor: pointer;
      user-select: none;
    }
    .cf-form-check input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin: 0;
      accent-color: var(--red);
      cursor: pointer;
    }
    .cf-contact-method-input {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 4px;
      font: inherit;
      font-size: 0.9rem;
      background: #fafafa;
    }
    .cf-contact-method-input:focus {
      outline: none;
      border-color: var(--red);
      background: #fff;
    }
    .cf-contact-method-input[hidden] { display: none; }
    .cf-store-contact-roles {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .cf-store-contact-submit {
      align-self: flex-start;
      margin-top: 4px;
      padding: 12px 26px;
      font-size: 0.74rem;
      letter-spacing: 0.18em;
    }
    .cf-store-contact-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      pointer-events: none;
    }

    #store-modal .modal.cf-store-modal:has(.cf-store-modal-gallery) {
      max-width: min(720px, 100%);
    }
    .cf-store-modal-media {
      margin: -4px 0 4px;
    }
    .cf-store-modal-media--logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 20px;
      border-radius: 14px;
      background: linear-gradient(180deg, #f7f6f3 0%, #f1efeb 100%);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    .cf-store-modal-logo {
      display: block;
      max-width: min(100%, 280px);
      max-height: 88px;
      width: auto;
      height: auto;
      object-fit: contain;
    }
    .cf-store-modal-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .cf-store-modal-photo {
      margin: 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.06);
      background: #f4f3f0;
      aspect-ratio: 4 / 3;
    }
    .cf-store-modal-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .cf-store-modal-media--video .cf-store-modal-video {
      display: block;
      width: 100%;
      max-height: 320px;
      border-radius: 14px;
      background: #111;
      border: 1px solid rgba(0, 0, 0, 0.08);
      object-fit: cover;
    }
    @media (max-width: 560px) {
      .cf-store-modal-gallery {
        grid-template-columns: 1fr;
      }
      .cf-store-card.has-thumb {
        gap: 12px;
        padding: 16px;
      }
      .cf-store-card-thumb {
        width: 44px;
        height: 44px;
        border-radius: 10px;
      }
    }

    /* === Quiz step === */
    .quiz-step {
      animation: quizFadeIn 0.45s cubic-bezier(0.2, 0.85, 0.2, 1) both;
    }
    @keyframes quizFadeIn {
      from { opacity: 0; transform: translateX(28px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .quiz-step-counter {
      font-size: 0.66rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #8a8a8a;
      text-align: center;
      display: block;
      margin-bottom: 14px;
    }
    .quiz-q {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.5rem, 2.8vw, 1.9rem);
      line-height: 1.3;
      text-align: center;
      color: #1b1b1b;
      margin: 0 auto 28px;
      max-width: 440px;
    }
    .quiz-options { display: flex; flex-direction: column; gap: 10px; margin: 0 0 28px; }
    .quiz-options label {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 14px;
      background: #fafafa;
      cursor: pointer;
      font-size: 0.94rem;
      color: #2a2a2a;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .quiz-options label:hover {
      border-color: var(--red);
      background: rgba(168, 39, 46, 0.05);
      transform: translateY(-1px);
    }
    .quiz-options input[type="radio"] {
      appearance: none;
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border: 2px solid #cfcfcf;
      border-radius: 50%;
      margin: 0;
      flex-shrink: 0;
      position: relative;
      cursor: pointer;
      transition: border-color 0.2s;
    }
    .quiz-options input[type="radio"]:checked { border-color: var(--red); }
    .quiz-options input[type="radio"]:checked::after {
      content: "";
      position: absolute;
      inset: 3px;
      border-radius: 50%;
      background: var(--red);
      animation: quizDotIn 0.25s ease both;
    }
    @keyframes quizDotIn {
      from { transform: scale(0); }
      to { transform: scale(1); }
    }
    .quiz-options label.is-checked {
      border-color: var(--red);
      background: rgba(168, 39, 46, 0.08);
    }

    .quiz-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      z-index: 5;
    }
    #quiz-modal .quiz-btn-primary,
    #quiz-modal .quiz-btn-ghost {
      position: relative;
      z-index: 6;
      pointer-events: auto;
      touch-action: manipulation;
    }
    #quiz-modal .quiz-options label,
    #quiz-modal .quiz-options input[type="radio"] {
      pointer-events: auto;
      touch-action: manipulation;
    }
    .quiz-nav .quiz-step-counter { margin: 0; }
    .quiz-btn-primary {
      padding: 13px 28px;
      border-radius: 999px;
      border: none;
      background: var(--red);
      color: #ffffff;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(168, 39, 46, 0.3);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .quiz-btn-primary:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(168, 39, 46, 0.35);
    }
    .quiz-btn-primary:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
    .quiz-btn-ghost {
      padding: 11px 22px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.15);
      background: transparent;
      color: #2a2a2a;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .quiz-btn-ghost:hover { border-color: var(--red); color: var(--red); }

    /* === Quiz result === */
    .quiz-result {
      text-align: center;
      animation: quizResultIn 0.7s cubic-bezier(0.2, 0.85, 0.2, 1) both;
    }
    @keyframes quizResultIn {
      from { opacity: 0; transform: scale(0.94); }
      to { opacity: 1; transform: scale(1); }
    }
    .quiz-result-eyebrow {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
      margin-bottom: 12px;
    }
    .result-type {
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      font-size: clamp(2.4rem, 5vw, 3rem);
      line-height: 1;
      color: #1b1b1b;
      margin: 0 0 14px;
    }
    .quiz-result-divider {
      width: 38px;
      height: 1px;
      background: var(--red);
      margin: 0 auto 18px;
    }
    .quiz-result-lead {
      color: #5a5a5a;
      font-size: 0.92rem;
      line-height: 1.6;
      margin: 0 auto 26px;
      max-width: 360px;
    }
    .quiz-result-products {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 28px;
      text-align: left;
    }
    .quiz-shelf-hint {
      display: none;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      margin: -4px 0 10px;
      padding: 0 4px;
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
    }
    .quiz-result-products .product-card {
      padding: 12px 10px 16px;
      gap: 10px;
    }
    .quiz-result-products .product-card h3 { font-size: 0.84rem; }
    .quiz-result-products .product-card p { font-size: 0.72rem; }

    @media (max-width: 560px) {
      .modal-head { padding: 22px 22px 4px; }
      .modal-body { padding: 16px 18px 22px; }
      .quiz-options { margin-bottom: 16px; }
      .quiz-step .quiz-nav {
        position: sticky;
        bottom: -2px;
        z-index: 10;
        padding-top: 10px;
        background: linear-gradient(to top, #fff 72%, rgba(255, 255, 255, 0));
      }
      .quiz-options label { padding: 14px 16px; font-size: 0.88rem; }
      .quiz-shelf-hint { display: flex; }
      .quiz-result-products {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 18px;
        gap: 12px;
        padding: 4px 0 10px;
        margin: 0 -18px 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
                mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
      }
      .quiz-result-products::-webkit-scrollbar { display: none; }
      .quiz-result-products > .product-card {
        flex: 0 0 48%;
        width: 48%;
        max-width: 48%;
        scroll-snap-align: start;
      }
      .modal { max-height: min(96vh, 96dvh); }
      .routine-steps { gap: 12px; }
      .routine-step { padding: 14px; }
    }
    @media (max-width: 420px) {
      .quiz-result-products > .product-card {
        flex: 0 0 62%;
        width: 62%;
        max-width: 62%;
      }
    }

    /* === Product Modal === */
    /* === Premium card reveal === */
    @keyframes cf-card-rise {
      0%   { opacity: 0; transform: translateY(22px) scale(0.985); filter: blur(6px); }
      60%  { filter: blur(0); }
      100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    }
    .product-grid .product-card,
    .cf-catalog-groups .product-card,
    .quiz-result-products .product-card,
    .cf-product-related-grid .product-card,
    .cf-today-card {
      animation: cf-card-rise 0.7s cubic-bezier(0.22, 0.85, 0.25, 1) both;
    }
    .product-grid .product-card:nth-child(1),
    .cf-catalog-groups .product-card:nth-child(1),
    .quiz-result-products .product-card:nth-child(1),
    .cf-product-related-grid .product-card:nth-child(1),
    .cf-today-card:nth-child(1)  { animation-delay: 0.02s; }
    .product-grid .product-card:nth-child(2),
    .cf-catalog-groups .product-card:nth-child(2),
    .quiz-result-products .product-card:nth-child(2),
    .cf-product-related-grid .product-card:nth-child(2),
    .cf-today-card:nth-child(2)  { animation-delay: 0.09s; }
    .product-grid .product-card:nth-child(3),
    .cf-catalog-groups .product-card:nth-child(3),
    .quiz-result-products .product-card:nth-child(3),
    .cf-product-related-grid .product-card:nth-child(3),
    .cf-today-card:nth-child(3)  { animation-delay: 0.16s; }
    .product-grid .product-card:nth-child(4),
    .cf-catalog-groups .product-card:nth-child(4),
    .quiz-result-products .product-card:nth-child(4),
    .cf-today-card:nth-child(4)  { animation-delay: 0.23s; }
    .product-grid .product-card:nth-child(5),
    .cf-catalog-groups .product-card:nth-child(5),
    .quiz-result-products .product-card:nth-child(5) { animation-delay: 0.30s; }
    .product-grid .product-card:nth-child(6),
    .cf-catalog-groups .product-card:nth-child(6),
    .quiz-result-products .product-card:nth-child(6) { animation-delay: 0.37s; }
    .product-grid .product-card:nth-child(7),
    .cf-catalog-groups .product-card:nth-child(7) { animation-delay: 0.44s; }
    .product-grid .product-card:nth-child(8),
    .cf-catalog-groups .product-card:nth-child(8) { animation-delay: 0.51s; }
    .product-grid .product-card:nth-child(9),
    .cf-catalog-groups .product-card:nth-child(9) { animation-delay: 0.58s; }
    .product-grid .product-card:nth-child(10),
    .cf-catalog-groups .product-card:nth-child(10) { animation-delay: 0.65s; }
    .product-grid .product-card:nth-child(11),
    .cf-catalog-groups .product-card:nth-child(11) { animation-delay: 0.72s; }
    .product-grid .product-card:nth-child(12),
    .cf-catalog-groups .product-card:nth-child(12) { animation-delay: 0.79s; }
    .product-grid .product-card:nth-child(n+13),
    .cf-catalog-groups .product-card:nth-child(n+13) { animation-delay: 0.86s; }

    @media (prefers-reduced-motion: reduce) {
      .product-grid .product-card,
      .cf-catalog-groups .product-card,
      .quiz-result-products .product-card,
      .cf-product-related-grid .product-card,
      .cf-today-card {
        animation: none !important;
      }
      #product-modal.modal-backdrop,
      #product-modal .modal.cf-product-modal,
      #quiz-modal.modal-backdrop,
      #quiz-modal .modal {
        transition: none !important;
      }
      #product-modal.modal-backdrop.is-open .cf-product-hero,
      #quiz-modal.modal-backdrop.is-open .modal-body > .quiz-step,
      #quiz-modal.modal-backdrop.is-open .modal-body > .quiz-result {
        animation: none !important;
      }
    }
    #product-modal.modal-backdrop {
      display: flex;
      padding: 28px;
      align-items: center;
      justify-content: center;
      background: rgba(14, 14, 16, 0.58);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition:
        opacity 0.42s ease,
        visibility 0.42s ease,
        backdrop-filter 0.42s ease;
    }
    #product-modal.modal-backdrop.is-open,
    #product-modal.modal-backdrop.is-closing {
      visibility: visible;
    }
    #product-modal.modal-backdrop.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    #product-modal.modal-backdrop.is-closing {
      opacity: 0;
      pointer-events: none;
    }
    #product-modal .modal.cf-product-modal {
      max-width: min(1240px, 96vw);
      width: min(1240px, 96vw);
      height: min(88vh, 920px);
      max-height: min(88vh, 920px);
      border-radius: 18px;
      box-shadow: 0 24px 68px rgba(0, 0, 0, 0.34);
      background: #fdfaf6;
      overflow: hidden;
      transform: translateY(22px) scale(0.965);
      opacity: 0;
      transition:
        transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.42s ease,
        box-shadow 0.42s ease;
    }
    #product-modal.modal-backdrop.is-open .modal.cf-product-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    #product-modal.modal-backdrop.is-closing .modal.cf-product-modal {
      transform: translateY(14px) scale(0.975);
      opacity: 0;
    }
    .cf-product-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      left: auto;
      z-index: 20;
      width: 42px;
      height: 42px;
      padding: 0;
      border-radius: 999px;
      font-size: 1.25rem;
      letter-spacing: 0;
      text-transform: none;
      font-weight: 400;
      background: rgba(255, 255, 255, 0.96);
      color: #1b1b1b;
      border: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    }
    .cf-product-modal-close:hover {
      background: #fff;
    }
    .cf-product-modal-body {
      padding: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      flex: 1;
    }
    .cf-product-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 0;
      background: #fff;
      aspect-ratio: 2 / 1;
    }
    #product-modal.modal-backdrop.is-open .cf-product-hero {
      animation: cfProductHeroIn 0.5s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    @keyframes cfProductHeroIn {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .cf-product-photo {
      position: relative;
      background: #e0e2e5;
      overflow: hidden;
      height: 100%;
    }
    .cf-product-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 44%;
      display: block;
      transform: scale(0.9);
      transition: transform 0.6s ease, object-position 0.4s ease;
    }
    .cf-product-modal:hover .cf-product-photo img { transform: scale(0.93); }
    .cf-product-info {
      padding: 44px 44px 38px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 0;
      overflow-y: auto;
      scrollbar-width: thin;
    }
    .cf-product-info::-webkit-scrollbar { width: 6px; }
    .cf-product-info::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.12);
      border-radius: 3px;
    }
    .cf-product-eyebrow {
      font-size: 0.66rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
    }
    .cf-product-modal-name {
      margin: 0;
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      text-decoration: var(--font-display-decoration);
      font-size: clamp(1.8rem, 3.2vw, 2.4rem);
      line-height: 1.15;
      color: #1b1b1b;
      letter-spacing: 0.005em;
    }
    .cf-product-subtitle {
      margin: 2px 0 4px;
      font-size: 0.92rem;
      color: #545454;
      line-height: 1.45;
    }
    .cf-product-size-line {
      margin: 6px 0 2px;
      font-size: 0.92rem;
      line-height: 1.35;
    }
    .cf-product-volume {
      color: var(--red);
      font-weight: 700;
      white-space: nowrap;
    }
    .cf-product-line {
      display: inline-block;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #6b6b6b;
      padding: 6px 12px;
      border: 1px solid rgba(0, 0, 0, 0.12);
      border-radius: 999px;
      align-self: flex-start;
      background: #fafafa;
      white-space: nowrap;
      max-width: 100%;
    }
    .cf-product-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      font-size: 0.82rem;
      color: #6b6b6b;
      margin-top: 4px;
    }
    .cf-product-meta strong {
      color: #2a2a2a;
      font-weight: 600;
    }
    .cf-product-desc {
      margin: 14px 0 0;
      font-size: 0.98rem;
      line-height: 1.7;
      color: #3a3a3a;
    }
    .cf-product-about-title {
      margin: 18px 0 8px;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 500;
      color: #1f1f1f;
      line-height: 1.15;
      text-transform: lowercase;
    }
    .cf-product-tabs-outer {
      display: contents;
    }
    .cf-product-tabs {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0;
      margin-top: 0;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.22);
    }
    .cf-product-tab {
      border: none;
      background: transparent;
      color: #525252;
      border-radius: 0;
      padding: 0;
      font-size: 0.78rem;
      letter-spacing: 0.01em;
      text-transform: lowercase;
      font-weight: 500;
      cursor: pointer;
      transition: color 0.35s ease, font-weight 0.35s ease;
      position: relative;
    }
    .cf-product-tab:not(:last-child) {
      margin-right: 10px;
      padding-right: 12px;
    }
    .cf-product-tab:not(:last-child)::after {
      content: "|";
      position: absolute;
      right: 0;
      color: #8f8f8f;
    }
    .cf-product-tab:hover { color: #1f1f1f; }
    .cf-product-tab.is-active {
      color: #1f1f1f;
      font-weight: 600;
    }
    .cf-product-tab-panels {
      margin-top: 12px;
      min-height: 132px;
      display: grid;
    }
    .cf-product-tab-panel {
      grid-area: 1 / 1;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.45s ease, visibility 0.45s ease;
      pointer-events: none;
    }
    .cf-product-tab-panel.is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    @media (prefers-reduced-motion: reduce) {
      .cf-product-tab-panel,
      .cf-product-tab {
        transition: none;
      }
    }
    .cf-product-tab-panel p {
      margin: 0;
      font-size: 0.94rem;
      line-height: 1.7;
      color: #3a3a3a;
    }
    .cf-product-bullets {
      margin: 0;
      padding-left: 1.1rem;
      color: #3a3a3a;
      font-size: 0.94rem;
      line-height: 1.7;
    }
    .cf-product-bullets li { margin: 0 0 6px; }
    .cf-product-bullets li:last-child { margin-bottom: 0; }
    .cf-product-gallery-carousel {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .cf-product-gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.14);
      background: #fff;
      color: #1b1b1b;
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
      pointer-events: auto;
    }
    .cf-product-gallery-nav.prev { left: 12px; }
    .cf-product-gallery-nav.next { right: 12px; }
    .cf-product-gallery-nav:hover {
      border-color: var(--red);
      transform: translateY(calc(-50% - 1px));
    }
    .cf-product-gallery-dots {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: rgba(16, 16, 16, 0.34);
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      padding: 5px 10px;
      pointer-events: auto;
    }
    .cf-product-gallery-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.55);
      transition: transform 0.2s, background 0.2s;
    }
    .cf-product-gallery-dot.is-active {
      background: #fff;
      transform: scale(1.15);
    }
    .cf-product-gallery-track { display: none; }
    .cf-product-photo.is-zoomable {
      cursor: zoom-in;
    }
    .cf-product-photo.is-zoomable:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: -3px;
    }
    .cf-product-photo.is-zoomable img {
      cursor: zoom-in;
    }
    .cf-product-photo-zoom-hint {
      position: absolute;
      right: 14px;
      bottom: 14px;
      z-index: 2;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      background: rgba(255, 255, 255, 0.94) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Ccircle cx='7.5' cy='7.5' r='4.75' stroke='%231b1b1b' stroke-width='1.4'/%3E%3Cpath stroke='%231b1b1b' stroke-width='1.4' stroke-linecap='round' d='M11 11l4.5 4.5'/%3E%3Cpath stroke='%23c41e3a' stroke-width='1.4' stroke-linecap='round' d='M7.5 5.5v4M5.5 7.5h4'/%3E%3C/svg%3E") center / 18px no-repeat;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
      pointer-events: none;
      opacity: 0.92;
      transition: opacity 0.2s, transform 0.2s;
    }
    .cf-product-photo.is-zoomable:hover .cf-product-photo-zoom-hint {
      opacity: 1;
      transform: scale(1.04);
    }
    /* Лайтбокс фото товара (поверх карточки) */
    .cf-photo-lightbox {
      position: fixed;
      inset: 0;
      z-index: 360;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: max(12px, env(safe-area-inset-top)) 16px max(12px, env(safe-area-inset-bottom));
      background: rgba(8, 8, 10, 0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.32s ease, visibility 0.32s ease;
    }
    .cf-photo-lightbox.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .cf-photo-lightbox-close {
      position: absolute;
      top: max(14px, env(safe-area-inset-top));
      right: max(14px, env(safe-area-inset-right));
      z-index: 4;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .cf-photo-lightbox-close:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.4);
      transform: scale(1.04);
    }
    .cf-photo-lightbox-toolbar {
      position: absolute;
      left: 50%;
      bottom: max(18px, env(safe-area-inset-bottom));
      transform: translateX(-50%);
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(20, 20, 22, 0.72);
    }
    .cf-photo-lightbox-toolbar button {
      min-width: 40px;
      height: 36px;
      padding: 0 10px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 0.88rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .cf-photo-lightbox-toolbar button:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.32);
    }
    .cf-photo-lightbox-toolbar [data-zoom-reset] {
      min-width: 56px;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
    }
    .cf-photo-lightbox-stage {
      position: relative;
      flex: 1;
      width: min(96vw, 1200px);
      height: min(72vh, 820px);
      max-height: calc(100vh - 140px);
      overflow: hidden;
      touch-action: none;
      cursor: grab;
    }
    .cf-photo-lightbox-stage.is-dragging { cursor: grabbing; }
    .cf-photo-lightbox-stage img {
      position: absolute;
      left: 50%;
      top: 50%;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      transform-origin: center center;
      user-select: none;
      -webkit-user-drag: none;
      will-change: transform;
    }
    .cf-photo-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 4;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    }
    .cf-photo-lightbox-nav:hover:not(:disabled) {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.38);
    }
    .cf-photo-lightbox-nav:disabled {
      opacity: 0.28;
      cursor: default;
    }
    .cf-photo-lightbox-nav.prev { left: max(12px, env(safe-area-inset-left)); }
    .cf-photo-lightbox-nav.next { right: max(12px, env(safe-area-inset-right)); }
    .cf-photo-lightbox-caption {
      position: absolute;
      left: 50%;
      top: max(16px, env(safe-area-inset-top));
      transform: translateX(-50%);
      z-index: 4;
      max-width: min(90vw, 640px);
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(12, 12, 14, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.82rem;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    @media (max-width: 980px) {
      .cf-photo-lightbox-toolbar { display: none; }
    }
    @media (max-width: 720px) {
      .cf-photo-lightbox-stage {
        width: 100%;
        height: min(58vh, 520px);
      }
      .cf-photo-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .cf-photo-lightbox { transition: none; }
    }
    body.cf-photo-lightbox-open { overflow: hidden; }
    .cf-product-section {
      background: #fdfaf6;
      padding: 38px 44px 46px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      animation: quizFadeIn 0.55s cubic-bezier(0.2, 0.85, 0.2, 1) 0.1s both;
    }
    .cf-product-section-eyebrow {
      font-size: 0.66rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: #8a8a8a;
      font-weight: 600;
      text-align: center;
      display: block;
      margin-bottom: 10px;
    }
    .cf-product-section-title {
      margin: 0 0 6px;
      font-family: var(--font-display);
      font-style: var(--font-display-style);
      font-weight: var(--font-display-weight);
      text-decoration: var(--font-display-decoration);
      font-size: clamp(1.5rem, 2.6vw, 1.9rem);
      line-height: 1.2;
      color: #1b1b1b;
      text-align: center;
    }
    .cf-product-section-lead {
      margin: 0 auto 26px;
      font-size: 0.92rem;
      color: #6b6b6b;
      text-align: center;
      max-width: 460px;
      line-height: 1.55;
    }
    .cf-product-related-hint { display: none; }
    .cf-product-related-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .cf-product-related-grid .product-card {
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    }
    @media (max-width: 800px) {
      #product-modal.modal-backdrop {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
        background: #fdfaf6;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
      #product-modal .modal.cf-product-modal {
        max-width: none;
        width: 100%;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
        box-shadow: none;
        transform: translateY(100%);
        opacity: 1;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      #product-modal.modal-backdrop.is-open .modal.cf-product-modal {
        transform: translateY(0);
        opacity: 1;
      }
      #product-modal.modal-backdrop.is-closing .modal.cf-product-modal {
        transform: translateY(100%);
        opacity: 1;
      }
      .cf-product-modal-close {
        position: fixed;
        top: max(14px, env(safe-area-inset-top));
        left: 14px;
        right: auto;
        z-index: 260;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 999px;
        font-size: 0;
        letter-spacing: 0;
        text-transform: none;
        background: rgba(255, 255, 255, 0.88);
        color: transparent;
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
      }
      .cf-product-modal-close::before {
        content: "←";
        display: block;
        color: #1b1b1b;
        font-size: 1.2rem;
        line-height: 1;
        transform: translateX(-1px);
      }
      .cf-product-modal-body {
        padding: 0 0 max(18px, env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        min-width: 0;
        flex: 1;
      }
      .cf-product-hero {
        grid-template-columns: 1fr;
        aspect-ratio: unset;
        padding-top: max(6px, env(safe-area-inset-top));
        min-width: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
      }
      .cf-product-photo {
        aspect-ratio: unset;
        height: auto;
        max-height: min(44dvh, 330px);
        min-height: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: #e0e2e5;
      }
      .cf-product-photo img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: min(44dvh, 330px);
        margin: 0 auto;
        object-fit: contain;
        object-position: center top;
        transform: scale(1.1);
        transform-origin: center top;
      }
      .cf-product-modal:hover .cf-product-photo img {
        transform: scale(1.1);
      }
      .cf-product-photo-zoom-hint {
        right: 10px;
        bottom: 10px;
        width: 34px;
        height: 34px;
        background-size: 16px;
      }
      .cf-product-info {
        padding: 20px 20px 24px;
        overflow-x: hidden;
        overflow-y: visible;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
      }
      .cf-product-modal-name {
        font-size: clamp(1.25rem, 5.2vw, 1.65rem);
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        margin-bottom: 8px;
      }
      .cf-product-subtitle {
        max-width: 100%;
        font-size: 0.88rem;
        margin: 0 0 6px;
        line-height: 1.45;
      }
      .cf-product-size-line {
        margin: 0 0 12px;
        width: 100%;
      }
      .cf-product-size-line .cf-product-volume {
        display: inline-block;
      }
      .cf-product-line.cf-line-label {
        font-size: clamp(0.58rem, 2.6vw, 0.68rem);
        letter-spacing: 0.1em;
        align-self: flex-start;
      }
      .cf-product-line { max-width: 100%; }
      .cf-product-tab-panels {
        min-height: 0;
        max-width: 100%;
        overflow-x: hidden;
      }
      .cf-product-tab-panel,
      .cf-product-tab-panel p,
      .cf-product-bullets {
        max-width: 100%;
        overflow-wrap: anywhere;
      }
      .cf-product-about-title {
        margin-top: 12px;
        font-size: clamp(1.2rem, 6vw, 1.5rem);
        max-width: 100%;
      }
      .cf-product-tabs-outer {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0 -20px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-padding: 0 20px;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
                mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
      }
      .cf-product-tabs-outer::-webkit-scrollbar { display: none; }
      .cf-product-tabs {
        display: inline-flex;
        flex-wrap: nowrap;
        align-items: center;
        width: max-content;
        min-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0 20px 10px;
        overflow: visible;
        -webkit-mask-image: none;
                mask-image: none;
      }
      .cf-product-tab {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.84rem;
        letter-spacing: 0.02em;
        scroll-snap-align: start;
      }
      .cf-product-tab:not(:last-child) {
        margin-right: 18px;
        padding-right: 18px;
      }
      .cf-product-gallery-nav {
        width: 38px;
        height: 38px;
      }
      .cf-product-gallery-carousel {
        inset: 0;
      }
      .cf-product-section {
        padding: 28px 22px 34px;
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
      }
      .cf-product-related-hint { display: none !important; }
      #product-modal .cf-product-section .cf-shelf-wrap {
        display: flex;
        flex-direction: column;
      }
      #product-modal .cf-product-section .cf-shelf-dots {
        margin-top: 14px;
        margin-bottom: 0;
      }
      .cf-product-related-grid {
        display: flex;
        flex-wrap: nowrap;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: none;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        scroll-padding-inline: 22px 18px;
        gap: 12px;
        padding: 4px 0 8px 22px;
        margin: 0 -22px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
                mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 48px), transparent 100%);
      }
      .cf-product-related-grid::-webkit-scrollbar { display: none; }
      .cf-product-related-grid .product-card {
        flex: 0 0 38%;
        width: 38%;
        max-width: 38%;
        scroll-snap-align: none;
        padding: 12px 10px 16px;
        gap: 10px;
      }
      .cf-product-related-grid .product-card h3 { font-size: 0.84rem; }
      .cf-product-related-grid .product-card p { font-size: 0.72rem; }
      .cf-product-related-grid.is-count-1 .product-card {
        flex: 0 0 78%;
        width: 78%;
        max-width: 78%;
      }
    }

    .routine-skin-row { margin-bottom: 20px; }
    .routine-skin-row label { display: block; font-size: 0.85rem; color: var(--gray-500); margin-bottom: 8px; }
    .routine-skin-row select {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      font: inherit;
    }
    .routine-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
    .routine-step {
      display: grid;
      grid-template-columns: 44px 100px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      background: var(--gray-50);
    }
    .routine-step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }
    .routine-step img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid var(--gray-200);
    }
    .routine-step h4 { margin: 0 0 6px; font-size: 1rem; color: var(--red); }
    .routine-step .name { margin: 0 0 8px; font-weight: 600; font-size: 0.95rem; }
    .routine-step .how { margin: 0; font-size: 0.88rem; color: var(--gray-500); line-height: 1.55; }

    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; }
      .map-layout { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .routine-step {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .routine-step-num { margin: 0 auto; }
      .routine-step img { margin: 0 auto; width: 120px; height: 120px; }
    }
  