:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 19.7px;
  --line-height-base: 1.78;

  --max-w: 1320px;
  --space-x: 2.29rem;
  --space-y: 1.5rem;
  --gap: 2.52rem;

  --radius-xl: 1.22rem;
  --radius-lg: 0.92rem;
  --radius-md: 0.54rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 22px rgba(0,0,0,0.11);
  --shadow-lg: 0 20px 38px rgba(0,0,0,0.13);

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

  --brand: #1a5f7a;
  --brand-contrast: #ffffff;
  --accent: #d4a574;
  --accent-contrast: #2d1f0f;

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

  --bg-page: #f9fafc;
  --fg-on-page: #1a252f;

  --bg-alt: #eef2f7;
  --fg-on-alt: #2c3e50;

  --surface-1: #ffffff;
  --surface-2: #f5f7fa;
  --fg-on-surface: #2c3e50;
  --border-on-surface: #e1e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1a252f;
  --border-on-surface-light: #d1d9e6;

  --bg-primary: #1a5f7a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0f4a63;
  --ring: rgba(26, 95, 122, 0.3);

  --bg-accent: #f8f1e7;
  --fg-on-accent: #5c4329;
  --bg-accent-hover: #e6c9a3;

  --link: #1a5f7a;
  --link-hover: #0f4a63;

  --gradient-hero: linear-gradient(135deg, #1a5f7a 0%, #2c8cb0 100%);
  --gradient-accent: linear-gradient(90deg, #d4a574 0%, #e6c9a3 100%);

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

* {
        box-sizing: border-box;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

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

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-b details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

.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--colored-v5 {

    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.product-list__header {
    text-align: center;
    margin-bottom: 24px;
}

.product-list__header h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

.product-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.product-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 14px;
}

.product-list__card {
    border-radius: var(--radius-xl);
    padding: var(--space-y);
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.product-list__card--bestseller {
    border-color: var(--accent);
}
.product-list__card--limited {
    border-color: var(--accent);
}
.product-list__card--new {
    border-color: var(--bg-primary);
}

.product-list__name {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.product-list__price {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
}

.product-list__note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

.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--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

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

.product-item__price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-300);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-contrast);
}

.product-item__sku {
    opacity: 0.9;
}

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

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

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

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

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
    cursor: pointer;
    transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.story-banner-c1 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .story-banner-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-banner-c1__copy, .story-banner-c1__media {
        flex: 1 1 20rem;
    }

    .story-banner-c1__copy p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .story-banner-c1__copy strong {
        display: block;
        margin-top: .75rem;
    }

    .story-banner-c1__copy p {
        color: rgba(255, 255, 255, .84);
    }

    .story-banner-c1__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

.checkout {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .checkout .checkout__form input,
    .checkout .checkout__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
    }

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

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

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: 4rem;
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }

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

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 4px solid #3498db;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-column h3, .footer-column h4 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .footer-column h3 {
    font-size: 1.8rem;
  }
  .footer-column h4 {
    font-size: 1.2rem;
    border-bottom: 1px solid #4a6572;
    padding-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #bdc3c7;
    margin: 0.8rem 0 1.5rem 0;
  }
  .legal-links {
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.7rem;
  }
  .footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-menu a:hover {
    color: #3498db;
    padding-left: 5px;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-info a:hover {
    color: #3498db;
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #4a6572;
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .social-links a:hover {
    background-color: #3498db;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-column {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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