:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 17px;
  --line-height-base: 1.86;

  --max-w: 880px;
  --space-x: 1.27rem;
  --space-y: 1.5rem;
  --gap: 0.86rem;

  --radius-xl: 0.8rem;
  --radius-lg: 0.48rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.12);

  --overlay: rgba(10, 15, 25, 0.75);
  --anim-duration: 530ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #0066cc;
  --brand-contrast: #ffffff;
  --accent: #00a8ff;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d9e6;
  --neutral-600: #6c7a95;
  --neutral-800: #2c3e50;
  --neutral-900: #1a2530;

  --bg-page: #0a0f19;
  --fg-on-page: #eef2f7;

  --bg-alt: #141b2d;
  --fg-on-alt: #d6e4f0;

  --surface-1: #1e2738;
  --surface-2: #2a3446;
  --fg-on-surface: #cbd5e1;
  --border-on-surface: rgba(100, 116, 139, 0.2);

  --surface-light: rgba(255, 255, 255, 0.03);
  --fg-on-surface-light: #a0abc0;
  --border-on-surface-light: rgba(148, 163, 184, 0.1);

  --bg-primary: #0066cc;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0055aa;
  --ring: rgba(0, 102, 204, 0.4);

  --bg-accent: rgba(0, 168, 255, 0.1);
  --fg-on-accent: #00a8ff;
  --bg-accent-hover: #0097e6;

  --link: #00a8ff;
  --link-hover: #4dc3ff;

  --gradient-hero: linear-gradient(135deg, #0a0f19 0%, #1a2530 50%, #2c3e50 100%);
  --gradient-accent: linear-gradient(90deg, #0066cc 0%, #00a8ff 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

* {
        box-sizing: border-box;
    }

    .intro-tableau-l14 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

    .intro-tableau-l14__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-tableau-l14__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.1rem);
        line-height: 1.04;
    }

    .intro-tableau-l14__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .intro-tableau-l14__wrap {
            grid-template-columns: 1fr;
        }
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

.faq-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .faq-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .faq-layout-f .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

    .faq-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .faq-layout-f .section-head p {
        margin: 10px auto 0;
        color: var(--neutral-600);
        max-width: 68ch;
    }

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.product-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .product-list .product-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 48px);
    }

    .product-list h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: clamp(32px, 5vw, 48px);
        justify-content: center;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(8px);
        font-weight: 500;
    }

    .product-list .product-list__filter:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .product-list .product-list__masonry {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        grid-auto-rows: auto;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__masonry > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .product-list .product-list__image-wrapper {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .product-list .product-list__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image {
        transform: scale(1.1);
    }

    .product-list .product-list__badge {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0.375rem 0.75rem;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-list .product-list__content {
        padding: clamp(20px, 2.5vw, 28px);
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.4vw, 22px);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        margin: 0 0 1.25rem;
        font-size: 0.9rem;
        flex: 1;
    }

    .product-list .product-list__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
    }

    .product-list .product-list__price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--fg-on-primary);
        margin: 0;
    }

    .product-list .product-list__btn {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-md);
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .product-list .product-list__btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 767px) {
        .product-list .product-list__masonry {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__footer {
            flex-direction: column;
            align-items: stretch;
        }

        .product-list .product-list__btn {
            width: 100%;
            text-align: center;
        }
    }

.touch-gridline {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .touch-gridline h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .touch-gridline .lead {
        margin: 10px 0 24px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-gridline .cta {
        display: inline-block;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .touch-gridline .cta:hover {
        background: var(--bg-primary-hover);
    }
    .subscribe-form input::placeholder {
        color: var(--input-placeholder);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.product-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.gallery__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.product-item {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.2rem;
        margin-top: 1rem;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.product-item {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.story-card-l2 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .story-card-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1.2rem;
        align-items: center;
    }

    .story-card-l2__image img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-card-l2__story h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-card-l2__story p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .story-card-l2__metric {
        margin-top: 1rem;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-card-l2__metric span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-card-l2__wrap {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.checkout {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .checkout .checkout__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .checkout .checkout__c {
            grid-template-columns: 2fr 1fr;
        }
    }

    .checkout h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 var(--space-y);
        color: var(--fg-on-primary);
    }

    .checkout .checkout__items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__item {
        display: flex;
        gap: 1rem;
        background: var(--surface-light);
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
    }

    .checkout .checkout__item-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .checkout .checkout__item-info {
        flex: 1;
    }

    .checkout h4 {
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .checkout .checkout__item-price {
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0;
    }

    .checkout .checkout__item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .checkout .checkout__item-quantity button {
        width: 32px;
        height: 32px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        cursor: pointer;
    }

    .checkout .checkout__summary {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .checkout .checkout__total {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin-bottom: var(--space-y);
        padding-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

    .checkout .checkout__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__form input,
    .checkout .checkout__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        outline: none;
    }

    .checkout .checkout__form input:focus,
    .checkout .checkout__form textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .checkout .checkout__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .checkout .checkout__form button:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.clarifications-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .clarifications-l2__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .clarifications-l2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-alt);
    }

    .clarifications-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* постоянный скан */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS добавит “плавающее” выделение активного ряда */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l2__scan {
            animation: none;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

    .connect__content p {
        margin: 0;
        color: var(--neutral-600);
    }

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--fg-on-surface);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .connect__chip:hover {
        background: var(--bg-alt);
        color: var(--link);
        border-color: var(--link);
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .contact-layout-a .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

    .contact-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.form-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .form-layout-f .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

    .form-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .form-layout-f .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-layout-f label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
        background-color: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .form-layout-f input::placeholder,
    .form-layout-f textarea::placeholder {
        color: var(--input-placeholder);
    }

    .form-layout-f .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--fg-on-surface);
    }

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layout-f button:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

    .terms-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-300);
    }

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
        color: var(--fg-on-surface);
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--fg-on-surface);
    }
    .terms-layout-d ul li {
        background: transparent;
        border: none;
        padding: 0;
        color: var(--fg-on-surface);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.terms-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .terms-layout-f .section-head {
        margin-bottom: 16px;
    }

    .terms-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .terms-layout-f .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

    .terms-layout-f h4 {
        margin: 10px 0 6px;
    }

    .terms-layout-f p, .terms-layout-f li {
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .thank-mode-c h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--fg-on-surface);
    }

    .thank-mode-c p {
        margin: 12px 0 0;
        color: var(--fg-on-surface);
        line-height: var(--line-height-base);
    }

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
        font-weight: 600;
    }
    .thank-mode-c a:hover {
        color: var(--link-hover);
        border-color: var(--link-hover);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
    width: 100%;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
}
.cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.625rem 1rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cart-cta:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.cart-icon {
    flex-shrink: 0;
}
.cart-text {
    display: inline;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
}
.burger-btn:hover {
    background-color: var(--btn-ghost-bg);
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.nav-list li {
    margin: 0;
}
.nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-bottom: 3px solid transparent;
}
.nav-link:hover {
    color: var(--brand);
    background-color: var(--surface-light);
}
.nav-link[href="cart.html"] {
    display: none;
}

@media (max-width: 767px) {
    .cart-cta .cart-text {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 300px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.875rem var(--space-x);
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .nav-link:hover {
        border-left-color: var(--brand);
    }
    .nav-link[href="cart.html"] {
        display: inline-block;
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px 20px;
        font-family: sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #eaeaea;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ddd;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .contact-block li {
        margin-bottom: 8px;
    }
    .contact-block a {
        color: #0066cc;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .copyright a {
        color: #666;
        text-decoration: none;
        margin: 0 8px;
    }
    .copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 30px;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .copyright {
            order: 2;
        }
        .disclaimer {
            order: 1;
            margin-bottom: 15px;
        }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.err-slab-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

    .err-slab-f h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .err-slab-f p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

    .err-slab-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }