:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 16.9px;
  --line-height-base: 1.65;

  --max-w: 1680px;
  --space-x: 1.46rem;
  --space-y: 1.5rem;
  --gap: 1.24rem;

  --radius-xl: 1.23rem;
  --radius-lg: 0.85rem;
  --radius-md: 0.45rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.18);
  --shadow-md: 0 6px 14px rgba(0,0,0,0.23);
  --shadow-lg: 0 20px 30px rgba(0,0,0,0.28);

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

  --brand: #0056D2;
  --brand-contrast: #FFFFFF;
  --accent: #00C853;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #FFFFFF;
  --fg-on-page: #212529;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0056D2;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0041A8;
  --ring: rgba(0, 86, 210, 0.4);

  --bg-accent: rgba(0, 200, 83, 0.1);
  --fg-on-accent: #006B2E;
  --bg-accent-hover: #00E676;

  --link: #0056D2;
  --link-hover: #0041A8;

  --gradient-hero: linear-gradient(135deg, #0056D2 0%, #0077FF 100%);
  --gradient-accent: linear-gradient(135deg, #00C853 0%, #00E676 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.intro-spokes-c3 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .intro-spokes-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .intro-spokes-c3__hero {
        flex: 1 1 22rem;
    }

    .intro-spokes-c3__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: .82rem;
    }

    .intro-spokes-c3__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1.02;
    }

    .intro-spokes-c3__hero span {
        display: block;
        margin-top: 1rem;
        color: rgba(255, 255, 255, .88);
        max-width: 38rem;
    }

    .intro-spokes-c3__wheel {
        flex: 0 0 18rem;
        min-height: 18rem;
        position: relative;
    }

    .intro-spokes-c3__core {
        position: absolute;
        inset: 50% auto auto 50%;
        transform: translate(-50%, -50%);
        width: 8rem;
        height: 8rem;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
        font-size: 2.2rem;
        font-weight: 700;
    }

    .intro-spokes-c3__note {
        position: absolute;
        padding: .6rem .8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-spokes-c3__note--a {
        top: 0;
        left: 18%;
    }

    .intro-spokes-c3__note--b {
        right: 0;
        top: 42%;
    }

    .intro-spokes-c3__note--c {
        left: 0;
        bottom: 12%;
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    /* macro-bg:next-strip-l2__wrap */
    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

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

    .faq-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

    .faq-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

.values-ladder-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-ladder-l4__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ladder-l4__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .85rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

    .values-ladder-l4__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.plans-cv1 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .plans-cv1__head {
        margin-bottom: 16px;
    }

    .plans-cv1__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv1__head p {
        margin: 8px 0 0;
        opacity: .9;
        max-width: 72ch;
    }

    .plans-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv1__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.36);
        color: var(--fg-on-page);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .plans-cv1__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv1__line h3 {
        margin: 0;
    }

    .plans-cv1__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .plans-cv1__price {
        margin: 10px 0 6px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--brand);
    }

    .plans-cv1__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-cv1__card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-cv1__card button {
        width: 100%;
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.product-list {

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

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

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

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

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

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

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-list .product-list__masonry > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.product-item {

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

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

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

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

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

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .index-feedback__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-feedback__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .index-feedback__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .index-feedback__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .index-feedback__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.product-item {

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

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

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

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

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

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

.features-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .features-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .features-struct-v2 h2, .features-struct-v2 h3, .features-struct-v2 p {
        margin: 0
    }

    .features-struct-v2 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

    .features-struct-v2 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .features-struct-v2 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v2 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

    .features-struct-v2 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v2 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v2 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v2 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

    .features-struct-v2 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .5rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .features-struct-v2 .side img, .features-struct-v2 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v2 .layout, .features-struct-v2 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards, .features-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.product-item {

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

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

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

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

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

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.checkout {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clarifications-l2 {

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

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

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

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

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

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

    /* constante scan */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

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

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

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

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

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

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

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

    /* JS añadirá el resaltado "flotante" de la fila activa */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.form-fresh-v3 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .form-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v3 .band {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v3 .band h2 {
        margin: 0 0 .35rem;
    }

    .form-fresh-v3 .band p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 .row {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .form-fresh-v3 label {
        display: grid;
        gap: .3rem;
        min-width: 190px;
        flex: 1 1 220px;
    }

    .form-fresh-v3 span {
        font-size: .84rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 input {
        padding: .65rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v3 button {
        padding: .7rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        align-self: end;
    }

.support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .support-cv5__head {
        margin-bottom: 14px;
    }

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }

.contact-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

    .contact-layout-e .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .contact-layout-e .row a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-e .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

    .policy-layout-f article p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

    .terms-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

    .thank-mode-e h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

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

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

.site-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;
    position: relative;
}

.header-logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}

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

.burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.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: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
}

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

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        max-width: 85%;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
        margin-bottom: calc(var(--space-y) / 2);
    }

    .nav-overlay.active {
        display: block;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .logo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .footer-middle {
    margin-bottom: 2rem;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer-contacts li {
    margin-bottom: 0.5rem;
  }
  .footer-contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
  }
  .footer-legal {
    margin: 0.8rem 0;
  }
  .footer-legal a {
    color: #555;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 1rem auto 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-contacts ul {
      text-align: center;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .cookie-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--gap);
    }

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

    .cookie-lv2__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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