:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 15.9px;
  --line-height-base: 1.46;

  --max-w: 1140px;
  --space-x: 1.63rem;
  --space-y: 1.5rem;
  --gap: 2.39rem;

  --radius-xl: 1.18rem;
  --radius-lg: 1rem;
  --radius-md: 0.63rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 3px 4px rgba(0,0,0,0.22);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.29);
  --shadow-lg: 0 20px 42px rgba(0,0,0,0.35);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 240ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #7B1A2B;
  --brand-contrast: #FFFFFF;
  --accent: #B22234;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D1D1D1;
  --neutral-600: #6B6B6B;
  --neutral-800: #2D2D2D;
  --neutral-900: #1A1A1A;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A1A1A;

  --bg-alt: #F0F0F0;
  --fg-on-alt: #2D2D2D;

  --surface-1: #FFFFFF;
  --surface-2: #F9F9F9;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #D1D1D1;

  --surface-light: #FCFCFC;
  --fg-on-surface-light: #2D2D2D;
  --border-on-surface-light: #E0E0E0;

  --bg-primary: #7B1A2B;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #5F1421;
  --ring: #7B1A2B;

  --bg-accent: #B22234;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #8B1A1A;

  --link: #7B1A2B;
  --link-hover: #5F1421;

  --gradient-hero: linear-gradient(135deg, #7B1A2B 0%, #4A1018 100%);
  --gradient-accent: linear-gradient(135deg, #B22234 0%, #8B1A1A 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;}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.nfintro-v11 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
        min-height: 460px;
    }

    .nfintro-v11__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .nfintro-v11__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: .72;
        z-index: -1;
    }

    .nfintro-v11__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .nfintro-v11 h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
    }

    .nfintro-v11 p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .nfintro-v11__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .nfintro-v11__btn {
        display: inline-block;
        padding: 12px 26px;
        border-radius: var(--radius-md);
        text-align: center;
        text-decoration: none;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .nfintro-v11__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .nfintro-v11__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

.values-ranks-l10 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

    .values-ranks-l10__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

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

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

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

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .nfsocial-v7__head {
        margin-bottom: 14px;
    }

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

    .nfsocial-v7__head p {
        margin: 10px 0 0;
        max-width: 70ch;
        opacity: .92;
    }

    .nfsocial-v7__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

    .visual-column-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .visual-column-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-column-l6__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

    .visual-column-l6__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-column-l6__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-column-l6__content p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 680px) {
        .visual-column-l6__content {
            grid-template-columns: 1fr;
        }
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.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;
    }

    /* Dacă randomNumber este par (2) - primul copil primește 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;
    }

    /* Dacă randomNumber este par (2) - primul copil primește 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__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;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.recommendations-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .recommendations-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u7 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u7 article,.recommendations-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u7 p{margin:0} .recommendations-u7 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u7 .cards{padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem} .recommendations-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .recommendations-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.recommendations-u7 .split,.recommendations-u7 .media,.recommendations-u7 .grid,.recommendations-u7 .cards,.recommendations-u7 .bento,.recommendations-u7 .foot{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}

.cap-noir-v2{padding:calc(var(--space-y)*2.6) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)}
.cap-noir-v2 .shell{max-width:960px;margin:0 auto;display:grid;gap:var(--gap)}
.cap-noir-v2 h2{margin:.2rem 0 0;font-size:clamp(1.8rem,3.6vw,2.7rem)}
.cap-noir-v2 .rails{display:grid;gap:.75rem}
.cap-noir-v2 article{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg);border-left:3px solid var(--accent)}
.cap-noir-v2 .top{display:flex;justify-content:space-between;gap:var(--gap);align-items:center}
.cap-noir-v2 h3{margin:0}
.cap-noir-v2 span{font-size:.8rem;opacity:.82}
.cap-noir-v2 p{margin:.45rem 0 .5rem;opacity:.9}
.cap-noir-v2 a{color:var(--accent);font-weight:700;text-decoration:none}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.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;
        }

        /* Dacă randomNumber este par (2) - primul copil primește 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__description {
        color: var(--neutral-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
    }

    .product-item .product-item__description ul li {
        padding: 0.4rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .product-item .product-item__description ul li:last-child {
        border-bottom: none;
    }

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

    /* Dacă randomNumber este par (2) - primul copil primește 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);
    }

.gallery--colored-v9 {
    padding: 52px 20px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--brand) 100%);
    color: #ffffff;
}

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

.gallery-v9__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 4vw, 32px);
    color: #ffffff;
}

.gallery-v9__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-v9__tile {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

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

.gallery-v9__tile figcaption {
    padding: 8px 10px;
    font-size: 0.88rem;
    color: var(--neutral-100);
}

@media (max-width: 640px) {
    .gallery--colored-v9 {
        padding: 42px 14px;
    }
}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.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;
        }

        /* Dacă randomNumber este par (2) - primul copil primește 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__description {
        color: var(--neutral-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-top: 0.75rem;
        color: var(--neutral-800);
    }

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

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

    /* Dacă randomNumber este par (2) - primul copil primește 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);
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.product-item {

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

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

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

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

    .product-item .product-item__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;
    }

    /* Dacă randomNumber este par (2) - primul copil primește 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) fff;
        box-shadow: var(--shadow-md);
    }

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.recommendations-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .recommendations-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u7 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u7 article,.recommendations-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u7 p{margin:0} .recommendations-u7 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u7 .cards{padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem} .recommendations-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .recommendations-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.recommendations-u7 .split,.recommendations-u7 .media,.recommendations-u7 .grid,.recommendations-u7 .cards,.recommendations-u7 .bento,.recommendations-u7 .foot{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.con-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.con-lx4 .con-wrap{max-width:var(--max-w);margin:0 auto}
.con-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.5rem)}
.con-lx4 .con-sub{margin:.42rem 0 1rem;color:var(--fg-on-surface-light)}
.con-lx4 .con-strips{display:grid;gap:.55rem}
.con-lx4 .con-strips article{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:.85rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border-left:4px solid var(--bg-primary)}
.con-lx4 h3{margin:0;font-size:1rem}
.con-lx4 .con-strips p{margin:0;color:var(--fg-on-surface-light)}
.con-lx4 a{text-decoration:none;color:var(--link)}
.con-lx4 .con-flow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;margin-top:.8rem}
.con-lx4 .con-flow a{display:flex;justify-content:space-between;gap:.75rem;padding:.75rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx4 .con-flow span{color:var(--fg-on-surface-light)}
@media (max-width:760px){.con-lx4 .con-strips article{display:grid}.con-lx4 .con-flow{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .form-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u5 .sub{margin:.35rem 0 0;opacity:.9;} .form-u5 .panel,.form-u5 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u5 form{display:grid;gap:.75rem} .form-u5 .field{display:grid;gap:.28rem} .form-u5 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u5 input,.form-u5 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u5 input:focus,.form-u5 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u5 textarea{min-height:120px;resize:vertical} .form-u5 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u5 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u5 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u5 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u5 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u5 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u5 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u5 .media img,.form-u5 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u5 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u5 .full{grid-column:1/-1} @media (max-width:860px){.form-u5 .split,.form-u5 .media,.form-u5 .frame{grid-template-columns:1fr} .form-u5 .grid,.form-u5 .bar{grid-template-columns:1fr}}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.pol-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.pol-lx6 .pol-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.pol-lx6 .pol-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-main h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.pol-lx6 .pol-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-card{grid-column:span 4;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-card h3{margin:0 0 .22rem;font-size:1rem}
.pol-lx6 .pol-card p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-foot{grid-column:span 12;padding:.85rem;border-radius:var(--radius-md);background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-foot h3{margin:0 0 .2rem}
.pol-lx6 .pol-foot p{margin:0}
@media (max-width:920px){.pol-lx6 .pol-card{grid-column:span 6}}@media (max-width:620px){.pol-lx6 .pol-card{grid-column:1/-1}}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .thank-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u9 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u9 article,.thank-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u9 p{margin:0} .thank-u9 a{text-decoration:none;color:inherit;font-weight:700} .thank-u9 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .thank-u9 .bento article:nth-child(1){grid-column:span 6} .thank-u9 .bento article:nth-child(2){grid-column:span 3} .thank-u9 .bento article:nth-child(3){grid-column:span 3} .thank-u9 .bento article:nth-child(4){grid-column:span 4} .thank-u9 .bento article:nth-child(5){grid-column:span 4} .thank-u9 .bento article:nth-child(6){grid-column:span 4} .thank-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u9 .split,.thank-u9 .media,.thank-u9 .grid,.thank-u9 .cards,.thank-u9 .bento,.thank-u9 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
  }
  .nav.open {
    max-height: 300px;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--link);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-column {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0 0 15px;
  }
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .footer-nav li {
    margin-bottom: 8px;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block {
    margin-bottom: 15px;
  }
  .contact-item {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #ffffff;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 15px 0 0;
    line-height: 1.4;
    border-top: 1px solid #333;
    padding-top: 12px;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-nav {
      padding: 0;
    }
    .contact-item {
      word-break: break-word;
    }
  }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

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