:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 14.8px;
  --line-height-base: 1.35;

  --max-w: 1080px;
  --space-x: 0.45rem;
  --space-y: 0.7rem;
  --gap: 0.72rem;

  --radius-xl: 0.92rem;
  --radius-lg: 0.65rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.09);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 6px 24px rgba(0,0,0,0.14);

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

  --brand: #1a3c34;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #f9fafb;
  --fg-on-page: #111827;

  --bg-alt: #e5e7eb;
  --fg-on-alt: #374151;

  --surface-1: #ffffff;
  --surface-2: #f3f4f6;
  --fg-on-surface: #111827;
  --border-on-surface: #d1d5db;

  --surface-light: #f9fafb;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

  --bg-accent: #f59e0b;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b45309;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a3c34 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.intro-buttons-c7 { padding: clamp(3.9rem,9vw,7rem) var(--space-x); background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 25%), var(--gradient-accent); color: var(--fg-on-primary); }
.intro-buttons-c7__wrap { max-width: 58rem; margin: 0 auto; text-align: center; }
.intro-buttons-c7__copy p { margin: 0; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.intro-buttons-c7__copy h1 { margin: .6rem 0 0; font-size: clamp(2.5rem,5vw,4.6rem); line-height: 1; }
.intro-buttons-c7__copy span { display: block; margin-top: .9rem; color: rgba(255,255,255,.88); }
.intro-buttons-c7__actions { margin-top: 1.2rem; display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.intro-buttons-c7__btn { display: inline-flex; min-height: 2.85rem; align-items: center; justify-content: center; padding: 0 1rem; border-radius: 999px; text-decoration: none; background: rgba(255,255,255,.14); color: var(--fg-on-primary); border: 1px solid rgba(255,255,255,.18); }
.intro-buttons-c7__btn--primary { background: var(--surface-1); color: var(--fg-on-page); }

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

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

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

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .next-grid-l8__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

    .next-grid-l8__foot 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;
    }

.faq-fresh-v4 {
        padding: calc(var(--space-y) * 2.7) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v4 details {
        padding: .85rem 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v4 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

    @media (max-width: 860px) {
        .faq-fresh-v4 .shell {
            grid-template-columns:1fr;
        }
    }

.why-choose-light {

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

    .why-choose-light .why-choose-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.product-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.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__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

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

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

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

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

.gallery--light-v6 {

    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.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) -> order: 0; si es 2 (par) -> order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

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

    /* Si randomNumber es 1 (impar) - primer hijo order: 0 (por defecto) */
    .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);
    }

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.checkout--colored-v5 {

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

.checkout__inner {
    max-width: 480px;
    margin: 0 auto;
}

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

.checkout__text {
    margin: 0 0 16px;
    color: var(--neutral-300);
    font-size: 0.95rem;
}

.checkout__summary {
    background: rgba(15,23,42,0.95);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.checkout__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.checkout__row--total {
    font-weight: 600;
    border-top: 1px solid rgba(75,85,99,0.9);
    padding-top: 8px;
    margin-top: 4px;
}

.checkout__button {
    margin-top: 8px;
    border: none;
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

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

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

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

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

.contacts-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .contacts-fresh-v5 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    }

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

    .contacts-fresh-v5 a {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.thank-mode-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  order: 2;
}
.nav {
  flex: 1;
  order: 1;
}
.nav-right {
  order: 3;
  text-align: right;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-left .nav-list {
  justify-content: flex-start;
}
.nav-right .nav-list {
  justify-content: flex-end;
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.nav-link:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  order: 0;
  z-index: 110;
  position: absolute;
  left: var(--space-x);
  top: 50%;
  transform: translateY(-50%);
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header-inner {
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
    pointer-events: none;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 1.5);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }
  .logo {
    order: 1;
    position: relative;
    z-index: 110;
  }
}

footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    text-decoration: none;
    color: #007bff;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
  }
  .footer-contact a {
    color: #007bff;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

.nfcookie-v12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

    .nfcookie-v12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

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