:root {
  --font-family: "Ubuntu", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1280px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 300ms;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 2;

  --brand: #0052CC;
  --brand-contrast: #FFFFFF;
  --accent: #00B8D9;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #DFE4E8;
  --neutral-600: #6B778C;
  --neutral-800: #172B4D;
  --neutral-900: #091E42;

  --bg-page: #FFFFFF;
  --fg-on-page: #172B4D;

  --bg-alt: #F5F7FA;
  --fg-on-alt: #091E42;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #172B4D;
  --border-on-surface: #DFE4E8;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #172B4D;
  --border-on-surface-light: #DFE4E8;

  --bg-primary: #0052CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0747A6;
  --ring: #0052CC;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003A66;
  --bg-accent-hover: #0091B3;

  --success: #36B37E;
  --success-contrast: #FFFFFF;
  --warning: #FFAB00;
  --warning-contrast: #172B4D;
  --danger: #FF5630;
  --danger-contrast: #FFFFFF;

  --link: #0052CC;
  --link-hover: #0747A6;

  --gradient-hero: linear-gradient(135deg, #0052CC 0%, #00B8D9 100%);
  --gradient-accent: linear-gradient(90deg, #E6F7FF 0%, #FFFFFF 100%);

  --btn-primary-bg: var(--bg-primary);
  --btn-primary-fg: var(--fg-on-primary);
  --btn-primary-bg-hover: var(--bg-primary-hover);

  --btn-ghost-bg: transparent;
  --btn-ghost-fg: var(--fg-on-page);
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);

  --card-bg-dark: var(--surface-1);
  --card-fg-dark: var(--fg-on-surface);
  --card-border-dark: var(--border-on-surface);

  --card-bg-light: var(--surface-light);
  --card-fg-light: var(--fg-on-surface-light);
  --card-border-light: var(--border-on-surface-light);

  --chip-bg: rgba(255,255,255,0.08);
  --chip-fg: var(--fg-on-page);

  --input-bg: var(--surface-2);
  --input-fg: var(--fg-on-surface);
  --input-border: var(--border-on-surface);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);}

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 6vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .index-hero .index-hero__eyebrow {
        display: inline-block;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        margin-bottom: .75rem;
    }

    .index-hero h1 {
        font-size: clamp(30px, 6.5vw, 72px);
        margin: .1em 0 .3em;
        color: white;
        background: rgba(0,0,0,0.7);
        padding: var(--space-y);
        border-radius: var(--radius-lg);
    }

    .index-hero p {
        max-width: 60ch;
        margin: 0 auto 1.25rem;
        color: white;
        background: rgba(0,0,0,0.7);
        padding: 14px;
        border-radius: var(--radius-lg);
    }

    .index-hero .index-hero__form {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .index-hero input {
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        min-width: 260px;
        outline: none;
    }

    .index-hero input {
        position: relative;
    }

    .index-hero input::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-hero);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .section-anim-brand-underline:hover::after {
        transform: scaleX(1);
    }

    .index-hero button {
        padding: .95rem 1.3rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        box-shadow: var(--shadow-md);
    }

    .index-hero button:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-hero .index-hero__form {
            flex-direction: column;
        }

        .index-hero input {
            min-width: auto;
            width: 100%;
        }
    }

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(24px, 4vw, 64px) clamp(16px, 3vw, 40px);
    }

    .index-cta .index-cta__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-cta .index-cta__cta {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 3vw, 28px);
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        text-decoration: none;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .index-cta .index-cta__btn:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }

    .index-cta h3 {
        margin: 0 0 .25rem;
        color: var(--fg-on-primary);
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .index-cta p {
        margin: 0;
        color: var(--brand-contrast);
        opacity: 0.9;
        font-size: clamp(1rem, 1.5vw, 1.125rem);
        line-height: var(--line-height-base);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__cta {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .index-cta .index-cta__btn {
            justify-self: center;
        }
    }

.features--light-v6 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

.features__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.features__item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 8px 12px;
    border: 1px solid var(--border-on-surface-light);
}

.features__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--bg-primary);
}

.features__label {
    font-size: 0.95rem;
    color: var(--neutral-800);
}

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.product-list {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .product-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .product-list .product-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .product-list .product-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .product-list .product-list__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .product-list .product-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-page);
    }

    .product-list .product-list__price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0 1rem;
    }

    .product-list .product-list__btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-accent);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--gradient-hero);
        padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 40px);
    }

    .subscribe .subscribe__c {
        max-width: 600px;
        margin: 0 auto;
    }

    .subscribe .subscribe__content {
        text-align: center;
    }

    .subscribe h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .subscribe p {
        font-size: clamp(16px, 2.4vw, 20px);
        margin: 0 0 2rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .subscribe .subscribe__form {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
    .subscribe .subscribe__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .subscribe .subscribe__form input {
        flex: 1;
        min-width: 200px;
        padding: 0.875rem 1rem;
        border-radius: var(--radius-lg);
        border: none;
        outline: none;
        font-size: 1rem;
        color: var(--fg-on-page);
        background: var(--bg-page);
    }

    .subscribe .subscribe__form input:focus {
        box-shadow: 0 0 0 3px var(--ring);
    }

    .subscribe .subscribe__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .subscribe .subscribe__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .subscribe .subscribe__privacy {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.product-item {
        font-family: var(--font-family);
        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;
        }

        /* Si randomNumber est pair (2) - le premier enfant obtient 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-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

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

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

    /* Si randomNumber est pair (2) - le premier enfant obtient 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(--card-bg-dark);
    }

.support--light-v6 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.support__inner {
    max-width: 640px;
    margin: 0 auto;
}

.support__inner h2 {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
}

.support__inner p {
    margin: 0 0 10px;
    color: var(--neutral-600);
}

.support__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.support__item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    transition:
            transform var(--anim-duration) var(--anim-ease),
            box-shadow var(--anim-duration) var(--anim-ease),
            background-color var(--anim-duration) var(--anim-ease);
}

    .support__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

.support__item-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.support__item-value {
    font-size: 0.9rem;
    color: var(--bg-primary);
    font-weight: 500;
}

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.product-item {
        font-family: var(--font-family);
        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;
        }

        /* Si randomNumber est pair (2) - le premier enfant obtient 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-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

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

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

    /* Si randomNumber est pair (2) - le premier enfant obtient 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(--card-bg-dark);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.product-item {
        font-family: var(--font-family);
        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;
        }

        /* Si randomNumber est pair (2) - le premier enfant obtient 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-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

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

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

    /* Si randomNumber est pair (2) - le premier enfant obtient 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(--card-bg-dark);
    }

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--gradient-hero);
        padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 40px);
    }

    .subscribe .subscribe__c {
        max-width: 600px;
        margin: 0 auto;
    }

    .subscribe .subscribe__content {
        text-align: center;
    }

    .subscribe h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .subscribe p {
        font-size: clamp(16px, 2.4vw, 20px);
        margin: 0 0 2rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .subscribe .subscribe__form {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
    .subscribe .subscribe__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .subscribe .subscribe__form input {
        flex: 1;
        min-width: 200px;
        padding: 0.875rem 1rem;
        border-radius: var(--radius-lg);
        border: none;
        outline: none;
        font-size: 1rem;
        color: var(--fg-on-page);
        background: var(--bg-page);
    }

    .subscribe .subscribe__form input:focus {
        box-shadow: 0 0 0 3px var(--ring);
    }

    .subscribe .subscribe__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .subscribe .subscribe__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .subscribe .subscribe__privacy {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

@keyframes pulseIn {
        from {
            transform: scale(.98);
            opacity: .6
        }
        to {
            transform: scale(1);
            opacity: 1
        }
    }

    .contact-form {
        font-family: var(--font-family);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-form .c {
        max-width: 720px;
        margin: 0 auto;
    }

    .contact-form .glass {
        display: grid;
        gap: 12px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
    }

    .contact-form label {
        display: grid;
        gap: 6px;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-form input, .contact-form textarea {
        padding: .8rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .9);
        color: #000;
        box-sizing: border-box;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .contact-form .submit {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: #fff;
        color: var(--bg-page);
        border: 0;
        animation: pulseIn .35s ease;
    }

.contact-map {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .contact-map .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-map .h {
        text-align: center;
        margin-bottom: 2rem;
    }

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(22px, 4vw, 36px);
        color: black;
    }

    .contact-map .h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        margin-bottom: 2rem;
    }

    .contact-map .map-container iframe {
        display: block;
        width: 100%;
        height: 400px;
        border: 0;
    }

    .contact-map .info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-map .item {
        padding: 1rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
    }

    .contact-map .item strong {
        display: block;
        margin-bottom: .5rem;
        color: var(--fg-on-page);
        font-size: .95rem;
    }

    .contact-map .item p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .contact-map .info {
            grid-template-columns: 1fr;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.policy-items {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .policy-items__h {
        text-align: center;
        margin-bottom: 3rem;
    }

    .policy-items__h h1 {
        margin: 0 0 .5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
    }

    .policy-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .policy-items__list {
        display: grid;
        gap: 2rem;
    }

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
    }

    .policy-items__num {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 1.25rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .policy-items__content h3 {
        margin: 0 0 .75rem;
        font-size: clamp(18px, 3vw, 24px);
        color: var(--fg-on-page);
    }

    .policy-items__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .policy-items__item {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .policy-items__num {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1rem;
        }
    }

.contacts {
        font-family: var(--font-family);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(16px, 3vw, 40px);
    }

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

    }

    .contacts .contacts__banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
    }

    .contacts .contacts__btn {
        background: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contacts .contacts__txt {
        margin: .8rem 0 0;
        opacity: .9;
    }

    .contacts .contacts__btn {
        position: relative;
    }

    .contacts .contacts__btn::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-hero);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contacts .contacts__btn:hover::after {
        transform: scaleX(1);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.terms-items {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .terms-items__h {
        text-align: center;
        margin-bottom: 3rem;
    }

    .terms-items__h h1 {
        margin: 0 0 .5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: var(--fg-on-page);
    }

    .terms-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .terms-items__items {
        display: grid;
        gap: 1.5rem;
    }

    .terms-items__item {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .terms-items__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .terms-items__marker {
        width: 8px;
        height: 8px;
        background: var(--fg-on-accent);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .terms-items__header h3 {
        margin: 0;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .terms-items__body p {
        margin: 0;
        font-size: 1rem;
        color: var(--fg-on-accent);
        opacity: .95;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .terms-items__item {
            padding: 1.5rem;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thanks {
        font-family: var(--font-family);
        background: var(--gradient-accent);
        color: var(--bg-accent);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

    .thanks__c {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .thanks__icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        margin: 0 auto 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
        font-size: 1.8rem;
    }

    .thanks h1 {
        font-size: clamp(28px, 5vw, 44px);
        margin: 0 0 0.75rem;
        color: var(--bg-accent);
    }

    .thanks p {
        margin: 0 0 1rem;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .thanks__meta {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 2.25rem;
    }

    .thanks__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .thanks__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease);
    }

    .thanks__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

    .thanks__btn--ghost {
        background: transparent;
        color: var(--bg-accent);
        border: 1px solid rgba(255,255,255,0.6);
    }

    .thanks__btn--ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.05);
    }

    @media (max-width: 767px) {
        .thanks__actions {
            flex-direction: column;
        }

        .thanks__btn {
            width: 100%;
            text-align: center;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
    color: var(--accent);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-y) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

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

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .header__nav.is-active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--space-y) var(--space-x);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2.2rem;
        font-weight: 700;
        color: #3498db;
        margin: 0 0 1rem 0;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #bdc3c7;
        line-height: 1.5;
        margin: 0;
    }

    .footer-section h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal,
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.7rem 0;
        line-height: 1.5;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #4a6278;
        color: #95a5a6;
        font-size: 0.9rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-nav a:hover,
        .footer-social a:hover,
        .footer-legal a:hover,
        .footer-contact a:hover {
            padding-left: 0;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .cookies__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .cookies__title {
        margin: 0 0 8px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--brand-contrast);
    }

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.not-found--colored-v5 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.25), transparent),
                radial-gradient(circle at bottom right, rgba(139,92,246,0.3), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.not-found__code {
    font-size: clamp(64px, 18vw, 120px);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--bg-accent);
}

.not-found__title {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--brand-contrast);
}

.not-found__text {
    margin: 0 0 18px;
    color: var(--neutral-300);
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.not-found__btn {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.not-found__btn--primary {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

.not-found__btn--primary:hover {
    background: var(--bg-primary-hover);
}

.not-found__btn--ghost {
    background: transparent;
    color: var(--brand-contrast);
    border: 1px solid rgba(148,163,184,0.7);
}

    .not-found__btn--ghost {
        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);
        }
    }

.not-found__btn--ghost:hover {
    background: rgba(15,23,42,0.8);
}

@media (max-width: 768px) {
    .not-found__inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        justify-items: center;
    }
}