:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 17.9px;
  --line-height-base: 1.77;

  --max-w: 1320px;
  --space-x: 1.43rem;
  --space-y: 1.5rem;
  --gap: 2.44rem;

  --radius-xl: 1.03rem;
  --radius-lg: 0.83rem;
  --radius-md: 0.47rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.11);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 54px rgba(0,0,0,0.18);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 430ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #1a3c34;
  --brand-contrast: #ffffff;
  --accent: #2e7d32;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d4d4d4;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #ffffff;
  --fg-on-page: #1f2937;

  --bg-alt: #f0fdf4;
  --fg-on-alt: #1f2937;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #f3f4f6;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #d1d5db;

  --bg-primary: #2e7d32;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1b5e20;
  --ring: #2e7d32;

  --bg-accent: #2e7d32;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #1b5e20;

  --link: #2e7d32;
  --link-hover: #1b5e20;

  --gradient-hero: linear-gradient(135deg, #1a3c34 0%, #2e7d32 100%);
  --gradient-accent: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.hero-arc-v4 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .headline {
        grid-column: 1/8;
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v4 h1 {
        margin: .2rem 0 .7rem;
        font-size: clamp(2rem, 4.6vw, 3.6rem);
        line-height: 1.08;
    }

    .hero-arc-v4 .headline p {
        margin: 0;
        max-width: 52ch;
        opacity: .92;
    }

    .hero-arc-v4 .actionbox {
        grid-column: 8/13;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v4 .actions {
        display: grid;
        gap: .65rem;
    }

    .hero-arc-v4 .actions a {
        display: inline-flex;
        justify-content: center;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .hero-arc-v4 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .media {
        grid-column: 1/6;
        overflow: hidden;
        border-radius: var(--radius-xl);
        min-height: 260px;
    }

    .hero-arc-v4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v4 .stats {
        grid-column: 6/13;
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .stats span {
        display: block;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v4 .stats strong {
        font-size: 1.1rem;
    }

    @media (max-width: 960px) {
        .hero-arc-v4 .headline, .hero-arc-v4 .actionbox, .hero-arc-v4 .media, .hero-arc-v4 .stats {
            grid-column: 1/-1;
        }

        .hero-arc-v4 .stats {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-ux21 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

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

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

    .next-ux21__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

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

    .next-ux21 {
        overflow: hidden;
    }

    .next-ux21__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

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

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

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

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

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

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

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

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

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
    }

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

.nfsocial-v12 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfsocial-v12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .nfsocial-v12 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

    .nfsocial-v12 p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfsocial-v12__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfsocial-v12__badges span {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, .06);
        font-weight: 700;
    }

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

    .nfsocial-v12__logos article {
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        min-height: 96px;
        display: grid;
        place-items: center;
        gap: 6px;
        padding: 10px;
    }

    .nfsocial-v12__logos img {
        max-width: 80%;
        max-height: 42px;
    }

    .nfsocial-v12__logos strong {
        font-size: .9rem;
        color: var(--neutral-700, var(--neutral-600));
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.product-list {

        color: var(--fg-on-page);
        background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-page) 40%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

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

    .product-list .product-list__header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

    /* Si randomNumber es 1 (impar) - primer hijo order: 2 */
    .product-list .product-list__header-wrapper > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

    .product-list .product-list__h {
        text-align: left;
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    .product-list .product-list__filters {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 200px;
    }

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

    @media (max-width: 1023px) {
        .product-list .product-list__filters {
            flex-direction: row;
            flex-wrap: wrap;
            min-width: auto;
        }
    }

    .product-list .product-list__filter {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 500;
        text-align: left;
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filter {
            text-align: center;
        }
    }

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

    .product-list .product-list__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 24px);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: grid;
        grid-template-columns: 50% 1fr auto;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

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

    .product-list .product-list__image {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

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

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

    .product-list .product-list__info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
    }

    .product-list .product-list__main {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: var(--neutral-600);
        line-height: 1.6;
        margin: 0;
        font-size: 0.95rem;
    }

    .product-list .product-list__meta {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .product-list .product-list__rating {
        font-weight: 600;
        color: var(--accent);
    }

    .product-list .product-list__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        min-width: 180px;
    }

    .product-list .product-list__btn {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

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

    .product-list__image img {
        width: 100%;
    }
    @media (max-width: 1023px) {
        .product-list .product-list__card {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__image {
            height: 240px;
        }

        .product-list .product-list__actions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            min-width: auto;
        }

        .product-list .product-list__btn {
            width: auto;
        }
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.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 1 (impar) - primer hijo mantiene order: 0 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

    .product-item .product-item__description {
        color: var(--neutral-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 1 (impar) - primer hijo mantiene order: 0 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

.index-feedback-list {
        background: var(--neutral-100);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-list__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-feedback-list__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--neutral-900);
    }

    .index-feedback-list__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-list__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--neutral-900);
        font: inherit;
        text-align: left;
    }

    .index-feedback-list__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-list__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
    }

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

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--neutral-900);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .index-feedback-list__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--neutral-800);
    }

    .index-feedback-list__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.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 1 (impar) - primer hijo mantiene order: 0 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

    .product-item .product-item__description {
        color: var(--neutral-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 1 (impar) - primer hijo mantiene order: 0 */
    .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);
    }

.clar-ux9{padding:clamp(20px,3vw,44px);background:var(--neutral-100);color:var(--neutral-900)}.clar-ux9__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:12px}.clar-ux9__left p{margin:8px 0 0;color:var(--neutral-600)}.clar-ux9__right{display:grid;gap:10px}.clar-ux9__right article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.clar-ux9__right span{display:inline-flex;font-size:.84rem;color:var(--brand)}.clar-ux9__right h3{margin:6px 0}.clar-ux9__right p{margin:0;color:var(--neutral-800)}@media(max-width:780px){.clar-ux9__wrap{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.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 1 (impar) - primer hijo mantiene order: 0 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

    .product-item .product-item__description ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-top: 1rem;
    }

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.checkout {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        outline: none;
    }

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

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

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

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

    .support-ux7__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-ux7__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux7__list {
        display: grid;
        gap: 10px;
    }

    .support-ux7__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-ux7__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-ux7__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-ux7__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx2{padding:calc(var(--space-y)*2.9) var(--space-x)}
.frm-lx2 .frm-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.frm-lx2 .frm-intro{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx2 h2{margin:0;font-size:clamp(1.85rem,3.5vw,2.65rem)}
.frm-lx2 .frm-intro p{margin:.45rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx2 .frm-panel{padding:1.1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);box-shadow:var(--shadow-md);display:grid;gap:.75rem}
.frm-lx2 .frm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.frm-lx2 label{display:grid;gap:.28rem}
.frm-lx2 span{font-size:.84rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx2 input,.frm-lx2 textarea{width:100%;padding:.78rem .82rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.frm-lx2 input:focus,.frm-lx2 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 20%, transparent)}
.frm-lx2 textarea{min-height:128px;resize:vertical}
.frm-lx2 button{justify-self:start;padding:.82rem 1.1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx2 button:hover{background:var(--bg-primary-hover)}
@media (max-width:920px){.frm-lx2 .frm-shell,.frm-lx2 .frm-grid{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .policyitems-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u1 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u1 article,.policyitems-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u1 p{margin:0} .policyitems-u1 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u1 .table{display:grid;gap:.5rem} .policyitems-u1 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .policyitems-u1 .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.policyitems-u1 .split,.policyitems-u1 .media,.policyitems-u1 .grid,.policyitems-u1 .cards,.policyitems-u1 .bento,.policyitems-u1 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: var(--space-y, 16px) var(--space-x, 24px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 24px);
  }
  .logo {
    font-size: calc(var(--font-size-base, 16px) * 1.5);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav {
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }
  .nav-link {
    font-size: var(--font-size-base, 16px);
    color: var(--neutral-800, #333);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-link:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .cta-button {
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    padding: 10px 24px;
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base, 16px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900, #111);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  @media (max-width: 767px) {
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      flex-direction: column;
      padding: var(--space-y, 16px) var(--space-x, 24px);
      gap: var(--gap, 16px);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brand {
  margin-bottom: 1.5rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.contact-info p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.contact-info a {
  color: #f0c040;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover {
  color: #f0c040;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.legal-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}
.legal-links a:hover {
  color: #f0c040;
}
.disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin: 0;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }