:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 14.9px;
  --line-height-base: 1.56;

  --max-w: 1180px;
  --space-x: 1.01rem;
  --space-y: 1.13rem;
  --gap: 0.9rem;

  --radius-xl: 0.91rem;
  --radius-lg: 0.67rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 6px 12px rgba(0,0,0,0.14);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.17);

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

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #E63946;
  --accent-contrast: #FFFFFF;

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

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

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

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

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

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #003F7A;
  --ring: rgba(0, 86, 163, 0.4);

  --bg-accent: rgba(230, 57, 70, 0.1);
  --fg-on-accent: #E63946;
  --bg-accent-hover: #C1121F;

  --link: #0056A3;
  --link-hover: #003F7A;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #003F7A 100%);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #C1121F 100%);

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .hero--compact {
        min-height: 400px;
    }

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

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

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

    .hero--left .hero__content {
        text-align: left;
        max-width: 720px;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
        color: var(--neutral-0);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
        color: var(--neutral-100);
    }

.next-stages {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .next-stages .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-stages .intro {
        max-width: 66ch;
        margin: 0 auto 14px;
        text-align: center;
    }

    .next-stages .intro p {
        margin: 8px 0 0;
        opacity: .9;
    }

    .next-stages h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.4vw, 46px);
    }

    .next-stages .stages {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .next-stages article {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: stageIn 420ms ease both;
    }

    .next-stages article:nth-child(2) {
        animation-delay: 80ms;
    }

    .next-stages article:nth-child(3) {
        animation-delay: 160ms;
    }

    .next-stages article:nth-child(4) {
        animation-delay: 240ms;
    }

    .next-stages .icon {
        margin: 0 0 6px;
        opacity: .92;
    }

    .next-stages h3 {
        margin: 0 0 8px;
        font-size: 1rem;
    }

    .next-stages a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    @keyframes stageIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

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

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

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

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.product-list {

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

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

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

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

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

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

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

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

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

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

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

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

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

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

    .product-list .product-list__footer {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

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

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .product-list .product-list__cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list .product-list__cart-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: scale(1.1);
    }

    @media (max-width: 767px) {
        .product-list .product-list__container {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(12px, 2vw, 16px);
        }

        .product-list .product-list__image-container {
            height: 160px;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.checkout {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cart-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.75rem 1.25rem;
    background-color: var(--btn-ghost-bg);
    color: var(--link);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cart-cta:hover,
  .cart-cta:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .cart-icon {
    flex-shrink: 0;
  }

  .cart-text {
    display: inline;
  }

  .header-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
    padding: 0 var(--space-x);
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--max-w);
  }

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

  .nav-link:hover,
  .nav-link:focus {
    color: var(--link-hover);
    outline: none;
  }

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

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

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    margin-left: auto;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

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

  @media (max-width: 767px) {
    .header-nav {
      padding: 0 var(--space-x);
      position: relative;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-2);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      padding: 0;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-link {
      padding: 1.25rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

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

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

    .cart-text {
      display: none;
    }

    .cart-cta {
      padding: 0.75rem;
    }
  }

.site-footer {
        background-color: #2c2c2c;
        color: #f1f1f1;
        padding: 3rem 1rem;
        font-family: sans-serif;
        margin-top: auto;
    }
    .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;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #d4af37;
        margin-bottom: 1rem;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #aaa;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .legal-links {
        margin-bottom: 1.5rem;
    }
    .legal-links a {
        color: #d4af37;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #888;
        margin-top: auto;
    }
    .footer-column h3 {
        color: #fff;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #d4af37;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    .contact-info a {
        color: #ccc;
        text-decoration: none;
    }
    .contact-info a:hover {
        color: #d4af37;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        color: #2c2c2c;
        background-color: #d4af37;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        text-align: center;
        line-height: 32px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #fff;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .disclaimer {
            max-width: 100%;
        }
        .social-links {
            justify-content: center;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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