:root {
    --ink: #101115;
    --muted: #5b626c;
    --line: rgba(16, 17, 21, 0.12);
    --paper: #f6f7f8;
    --white: #ffffff;
    --red: #d71920;
    --red-dark: #9f1117;
    --steel: #27313c;
    --mist: #e9eef3;
    --sand: #c9b99c;
    --shadow: 0 22px 70px rgba(16, 17, 21, 0.16);
    --glass: rgba(255, 255, 255, 0.68);
    --glass-dark: rgba(16, 17, 21, 0.44);
    --green: #24594a;
    --font-sans: "Segoe UI Variable Text", "Segoe UI Variable", Aptos, "Helvetica Neue", Arial, sans-serif;
    --shell-max: 1180px;
    --shell-gutter: 18px;
    --shell-inline: max(var(--shell-gutter), calc((100vw - var(--shell-max)) / 2));
    --site-chrome-gutter: max(44px, calc((100vw - 1760px) / 2));
    --site-mega-gap: 10px;
    --site-header-bottom: 96px;
    --site-glass-bg:
        linear-gradient(135deg, rgba(20, 22, 26, 0.42), rgba(34, 38, 44, 0.28)),
        rgba(16, 17, 21, 0.29);
    --site-glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --site-glass-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 18px 55px rgba(0, 0, 0, 0.3);
    --site-glass-backdrop: blur(34px) saturate(1.45);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
    scrollbar-gutter: stable;
    overflow-x: clip;
}

[id] {
    scroll-margin-top: 0;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    letter-spacing: 0;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    min-height: 100vh;
}

html.is-scroll-locked {
    scrollbar-gutter: auto;
    overflow: hidden;
}

body.is-mega-open {
    touch-action: none;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 247, 248, 0.94)),
        linear-gradient(120deg, rgba(215, 25, 32, 0.06), rgba(39, 49, 60, 0.08) 48%, rgba(201, 185, 156, 0.08));
}

body:has(.public-admin-toolbar:not(.is-hidden)) {
    --site-header-bottom: 136px;
}

body:has(.public-admin-toolbar:not(.is-hidden)) .site-header {
    top: 58px;
}

.public-admin-toolbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    color: #eef2f6;
    background: rgba(12, 16, 21, 0.94);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.public-admin-toolbar.is-hidden {
    display: none;
}

.public-admin-toolbar__inner {
    display: grid;
    grid-template-columns: auto minmax(220px, 0.8fr) minmax(520px, 1.8fr) auto;
    min-height: 42px;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    font-size: 0.86rem;
}

.public-admin-toolbar__brand,
.public-admin-toolbar__primary,
.public-admin-toolbar__nav > a,
.public-admin-toolbar__menu summary,
.public-admin-toolbar__session button {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 7px;
    border: 0;
    border-radius: 6px;
    color: inherit;
    font: inherit;
    font-weight: 650;
    cursor: pointer;
}

.public-admin-toolbar__brand {
    flex: 0 0 auto;
}

.public-admin-toolbar__brand span {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.78rem;
}

.public-admin-toolbar__context {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    color: rgba(238, 242, 246, 0.78);
}

.public-admin-toolbar__context span,
.public-admin-toolbar__context code {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.public-admin-toolbar__context span {
    min-width: 0;
    color: #fff;
    font-weight: 650;
}

.public-admin-toolbar__context code {
    flex: 0 1 auto;
    max-width: min(280px, 26vw);
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(238, 242, 246, 0.56);
    font-size: 0.74rem;
}

.public-admin-toolbar__nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 4px;
}

.public-admin-toolbar__nav > a,
.public-admin-toolbar__menu summary {
    white-space: nowrap;
}

.public-admin-toolbar__primary,
.public-admin-toolbar__nav > a,
.public-admin-toolbar__menu summary,
.public-admin-toolbar__session button {
    padding: 5px 9px;
}

.public-admin-toolbar__primary {
    background: var(--red);
}

.public-admin-toolbar__nav > a,
.public-admin-toolbar__menu summary,
.public-admin-toolbar__session button {
    background: transparent;
    color: rgba(238, 242, 246, 0.82);
}

.public-admin-toolbar__primary:hover,
.public-admin-toolbar__primary:focus-visible,
.public-admin-toolbar__nav > a:hover,
.public-admin-toolbar__nav > a:focus-visible,
.public-admin-toolbar__menu summary:hover,
.public-admin-toolbar__menu summary:focus-visible,
.public-admin-toolbar__session button:hover,
.public-admin-toolbar__session button:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    outline: none;
}

.public-admin-toolbar__menu {
    position: relative;
}

.public-admin-toolbar__menu summary {
    list-style: none;
}

.public-admin-toolbar__menu summary::-webkit-details-marker {
    display: none;
}

.public-admin-toolbar__menu summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 1px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.public-admin-toolbar__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: min(560px, calc(100vw - 28px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(17, 22, 28, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.public-admin-toolbar__panel h2 {
    margin: 0 0 8px;
    color: rgba(238, 242, 246, 0.56);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.public-admin-toolbar__panel a {
    display: block;
    padding: 7px 8px;
    border-radius: 6px;
    color: rgba(238, 242, 246, 0.88);
}

.public-admin-toolbar__panel a:hover,
.public-admin-toolbar__panel a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.public-admin-toolbar__session {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: rgba(238, 242, 246, 0.62);
}

@media (max-width: 1100px) {
    .public-admin-toolbar__inner {
        grid-template-columns: auto minmax(140px, 1fr) auto auto;
    }

    .public-admin-toolbar__nav {
        justify-content: flex-end;
    }

    .public-admin-toolbar__nav > a:not(.public-admin-toolbar__primary) {
        display: none;
    }
}

@media (max-width: 780px) {
    body:has(.public-admin-toolbar:not(.is-hidden)) {
        --site-header-bottom: 146px;
    }

    body:has(.public-admin-toolbar:not(.is-hidden)) .site-header {
        top: 64px;
    }

    .public-admin-toolbar__inner {
        grid-template-columns: auto 1fr auto;
        min-height: 48px;
        gap: 8px;
        padding-inline: 10px;
    }

    .public-admin-toolbar__context,
    .public-admin-toolbar__session span,
    .public-admin-toolbar__nav > a {
        display: none;
    }

    .public-admin-toolbar__nav {
        justify-content: flex-end;
    }

    .public-admin-toolbar__panel {
        right: 0;
        left: auto;
        grid-template-columns: 1fr;
    }
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--white);
}

.skip-link:focus {
    left: 12px;
}

/* ------------------------------------------------------------------
   Header (pill, glass, dark)
------------------------------------------------------------------ */
.site-header {
    position: fixed;
    top: 16px;
    right: var(--site-chrome-gutter);
    left: var(--site-chrome-gutter);
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    width: auto;
    min-height: 70px;
    padding: 9px 34px 9px 34px;
    border: var(--site-glass-border);
    border-radius: 34px;
    background: var(--site-glass-bg);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
    backdrop-filter: var(--site-glass-backdrop);
    -webkit-backdrop-filter: var(--site-glass-backdrop);
    transform: none;
}

.brand {
    position: relative;
    display: flex;
    width: 168px;
    height: 40px;
    align-items: center;
    overflow: hidden;
}

.brand-logo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 168px;
    max-width: none;
    height: auto;
    transition: opacity 0.18s ease;
    transform: translateY(-50%);
}

.brand-logo-light {
    display: none;
    opacity: 0;
}

.main-nav {
    display: flex;
    justify-self: end;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 0.96rem;
    font-weight: 550;
}

.main-nav > a,
.nav-item > a {
    display: block;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a:focus,
.nav-item > a:hover,
.nav-item > a:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.nav-social-divider {
    width: 1px;
    height: 22px;
    margin: 0 5px 0 9px;
    background: rgba(255, 255, 255, 0.2);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 3px;
}

.social-link {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.56);
    transition:
        color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-link--maps {
    color: rgba(255, 255, 255, 0.72);
}

.social-link--maps svg {
    width: 17px;
    height: 17px;
}

.social-link:hover {
    color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.social-link--maps:hover,
.social-link--maps:focus-visible {
    color: #ff4b4f;
}

.has-mega {
    position: relative;
}

.has-mega.is-open > .nav-mega-toggle {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.mobile-model-menu {
    display: none;
}

.mobile-model-menu[hidden] {
    display: none !important;
}

.mega-menu {
    position: fixed;
    top: calc(var(--site-header-bottom) + var(--site-mega-gap));
    right: var(--site-chrome-gutter);
    left: var(--site-chrome-gutter);
    z-index: 19;
    width: auto;
    height: min(760px, calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 16px));
    max-height: calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 16px);
    padding: 14px;
    overflow: hidden;
    border: var(--site-glass-border);
    border-radius: 30px;
    background: var(--site-glass-bg);
    box-shadow: var(--site-glass-shadow);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: var(--site-glass-backdrop);
    -webkit-backdrop-filter: var(--site-glass-backdrop);
    filter: blur(3px) saturate(0.98);
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    clip-path: inset(0 2% 92% 2% round 30px);
    transition:
        opacity 0.12s ease,
        transform 0.16s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.12s ease,
        clip-path 0.16s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0ms linear 0.16s;
    isolation: isolate;
    visibility: hidden;
}

body.is-mega-open .mega-menu {
    opacity: 1;
    pointer-events: auto;
    filter: blur(0) saturate(1.12);
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 30px);
    transition:
        opacity 0.12s ease,
        transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.12s ease,
        clip-path 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0ms linear;
    visibility: visible;
}

.model-mega__layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    height: 100%;
    max-height: calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 44px);
}

.model-mega__tabs {
    display: grid;
    align-content: start;
    gap: 2px;
    height: 100%;
    min-height: 0;
    max-height: calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 64px);
    overflow-y: auto;
    padding: 8px 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    scrollbar-width: none;
}

.model-mega__tabs::-webkit-scrollbar,
.model-mega__panels::-webkit-scrollbar {
    display: none;
}

.model-mega__tab-shell {
    border-left: 2px solid transparent;
    border-radius: 0 14px 14px 0;
    transition:
        background 0.16s ease,
        border-color 0.16s ease,
        color 0.16s ease,
        transform 0.18s ease,
        opacity 0.18s ease;
}

.model-mega__tab {
    display: grid;
    width: 100%;
    min-height: 0;
    padding: 9px 8px 9px 12px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background 0.16s ease,
        border-color 0.16s ease,
        color 0.16s ease,
        transform 0.18s ease,
        opacity 0.18s ease;
}

.model-mega__tab span {
    overflow: visible;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    font-weight: 620;
    line-height: 1.22;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
    text-overflow: clip;
    text-transform: none;
    white-space: normal;
}

.model-mega__tab small {
    display: none;
}

.model-mega__tab:hover,
.model-mega__tab:focus-visible,
.model-mega__tab.is-active {
    color: #fff;
}

.model-mega__tab-shell:hover,
.model-mega__tab-shell:focus-within,
.model-mega__tab-shell.is-active {
    border-left-color: var(--red);
    background: linear-gradient(90deg, rgba(215, 25, 32, 0.16), rgba(215, 25, 32, 0.02) 74%, transparent);
}

.model-mega__tab-shell.is-active .model-mega__tab {
    padding-bottom: 4px;
}

.model-mega__tab:hover span,
.model-mega__tab:focus-visible span,
.model-mega__tab.is-active span {
    color: #fff;
}

.model-mega__tab:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 2px;
}

.model-mega__tab-link {
    display: none;
    align-items: center;
    gap: 7px;
    width: max-content;
    max-width: calc(100% - 20px);
    margin: -2px 0 10px 12px;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1.1;
    transition: color 0.16s ease, transform 0.16s ease;
}

.model-mega__tab-link span {
    color: #ff4b4f;
    font-size: 0.9rem;
    line-height: 1;
}

.model-mega__tab-shell.is-active .model-mega__tab-link {
    display: inline-flex;
}

.model-mega__tab-link:hover,
.model-mega__tab-link:focus-visible {
    color: #fff;
    transform: translateX(2px);
}

.model-mega__panels {
    height: 100%;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(22, 27, 33, 0.9), rgba(7, 13, 20, 0.96)),
        rgba(5, 8, 12, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 80px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(1.08) brightness(0.82);
    -webkit-backdrop-filter: blur(20px) saturate(1.08) brightness(0.82);
    scrollbar-width: none;
}

.model-mega__panel {
    display: none;
}

.model-mega__panel.is-active {
    display: block;
}

/* ------------------------------------------------------------------
   Promotions landing
------------------------------------------------------------------ */
.promotions-hero .public-hero-media img {
    object-position: center 48%;
    filter: saturate(0.9) contrast(1.1);
}

.promotions-hero .public-hero-shade {
    background:
        radial-gradient(circle at 76% 32%, rgba(215, 25, 32, 0.18), transparent 25rem),
        linear-gradient(90deg, rgba(6, 7, 9, 0.9) 0%, rgba(6, 7, 9, 0.52) 44%, rgba(6, 7, 9, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.04), rgba(6, 7, 9, 0.72));
}

.promotions-hero__actions,
.promotions-featured__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.promotions-page .eyebrow.dark,
.promotions-featured__copy .eyebrow,
.promotions-plus .eyebrow {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.promotions-page .eyebrow.dark::after,
.promotions-featured__copy .eyebrow::after,
.promotions-plus .eyebrow::after {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.promotions-page {
    background:
        radial-gradient(circle at 10% 0%, rgba(215, 25, 32, 0.08), transparent 24rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 248, 0.96) 28rem),
        var(--paper);
}

.promotions-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 104px) 0;
}

.promotions-intro__copy {
    max-width: 780px;
}

.promotions-intro__copy h2 {
    margin-bottom: 18px;
}

.promotions-intro__copy p:not(.eyebrow) {
    max-width: 740px;
    font-size: clamp(1rem, 1vw, 1.125rem);
}

.promotions-intro__stats {
    display: grid;
    gap: 10px;
}

.promotions-intro__stats span {
    display: grid;
    gap: 6px;
    min-height: 104px;
    padding: 20px 22px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.07);
}

.promotions-intro__stats strong {
    color: var(--ink);
    font-size: clamp(1.2rem, 1.8vw, 1.72rem);
    line-height: 1.05;
}

.promotions-intro__stats small {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.35;
}

.promotions-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
    min-height: clamp(430px, 42vw, 540px);
    color: var(--white);
    background:
        radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.12), transparent 20rem),
        linear-gradient(135deg, #15181f 0%, #080a0e 62%, #1b0d10 100%);
}

.promotions-featured__media {
    display: grid;
    min-height: 360px;
    place-items: center;
    overflow: hidden;
    background: #fff;
}

.promotions-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.promotions-featured__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 5vw, 68px);
}

.promotions-featured__copy .eyebrow,
.promotions-featured__copy h2,
.promotions-featured__copy p,
.promotions-featured__copy small {
    max-width: 620px;
}

.promotions-featured__copy .eyebrow,
.promotions-plus .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.promotions-featured__copy h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(2.3rem, 4.2vw, 4.55rem);
    line-height: 0.96;
    text-wrap: balance;
}

.promotions-featured__copy > strong {
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(1.45rem, 2.6vw, 2.5rem);
    line-height: 1.05;
}

.promotions-featured__copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.08vw, 1.1rem);
}

.promotions-featured__copy small {
    display: block;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.46;
}

.promotions-featured__terms span {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 850;
}

.promotions-list {
    scroll-margin-top: 110px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.promotion-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.promotion-card__media {
    display: block;
    aspect-ratio: 864 / 459;
    overflow: hidden;
    background: #fff;
}

.promotion-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.24s ease;
}

.promotion-card:hover .promotion-card__media img {
    transform: scale(1.035);
}

.promotion-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.promotion-card__topline,
.promotion-card__footer {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.promotion-card__topline {
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.promotion-card__topline strong {
    color: var(--red);
    font-size: 0.72rem;
}

.promotion-card h3 {
    max-width: 18em;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(1.24rem, 1.6vw, 1.58rem);
    line-height: 1.14;
}

.promotion-card__benefit {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.52;
}

.promotion-card__terms {
    margin: 16px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(16, 17, 21, 0.07);
    border-left: 3px solid rgba(215, 25, 32, 0.84);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(82, 96, 115, 0.96);
    font-size: 0.8rem;
    line-height: 1.48;
}

.promotion-card__terms span {
    color: var(--ink);
    font-weight: 850;
}

.promotion-card__footer {
    margin-top: auto;
    padding-top: 16px;
}

.promotion-card__footer strong {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.18;
}

.promotion-card__footer a {
    color: var(--red);
    font-weight: 800;
    white-space: nowrap;
}

.promotions-plus {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    color: var(--white);
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.14), transparent 19rem),
        linear-gradient(135deg, #d71920 0%, #bd131a 54%, #8f1017 100%);
}

.promotions-plus__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 7vw, 104px) clamp(32px, 7vw, 98px);
}

.promotions-plus__main h2,
.promotions-plus__main p {
    max-width: 620px;
    color: var(--white);
}

.promotions-plus__main h2 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5.4vw, 5.65rem);
    line-height: 0.94;
    text-wrap: balance;
}

.promotions-plus__main p {
    color: rgba(255, 255, 255, 0.82);
}

.promotions-plus__main .button {
    width: fit-content;
    margin-top: 18px;
}

.promotions-plus__list {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: clamp(56px, 7vw, 104px) clamp(32px, 7vw, 98px);
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.1), transparent 18rem),
        linear-gradient(145deg, #191d23 0%, #0c0f14 68%, #080a0d 100%);
}

.promotions-plus__list article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.promotions-plus__list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.promotions-plus__list span {
    display: grid;
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    font-weight: 760;
}

.promotions-plus__list h3 {
    grid-column: 2;
    margin-bottom: 6px;
    color: var(--white);
    font-size: 1.12rem;
}

.promotions-plus__list p {
    grid-column: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
    .promotions-intro,
    .promotions-featured,
    .promotions-plus {
        grid-template-columns: 1fr;
    }

    .promotions-featured__media {
        min-height: 360px;
    }
}

@media (max-width: 620px) {
    .promotions-hero__actions .button,
    .promotions-featured__actions .button,
    .promotions-plus__main .button {
        width: 100%;
    }

    .promotions-intro {
        width: min(100% - 28px, 430px);
        padding-top: 46px;
    }

    .promotions-intro__stats,
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotions-featured__media {
        min-height: 280px;
    }

    .promotions-featured__copy,
    .promotions-plus__main,
    .promotions-plus__list {
        padding-right: 22px;
        padding-left: 22px;
    }

    .promotion-card__body {
        padding: 16px;
    }

    .promotions-plus__list article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }
}

/* ------------------------------------------------------------------
   Honda Plus landing
------------------------------------------------------------------ */
.honda-plus-hero .public-hero-media img {
    object-position: center 52%;
    filter: saturate(0.92) contrast(1.08);
}

.honda-plus-hero .public-hero-shade {
    background:
        radial-gradient(circle at 72% 28%, rgba(215, 25, 32, 0.22), transparent 25rem),
        linear-gradient(90deg, rgba(6, 7, 9, 0.9) 0%, rgba(6, 7, 9, 0.5) 46%, rgba(6, 7, 9, 0.08) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.02), rgba(6, 7, 9, 0.74));
}

.honda-plus-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.honda-plus-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(215, 25, 32, 0.08), transparent 24rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 246, 249, 0.98) 28rem),
        var(--paper);
}

.honda-plus-page > .breadcrumbs.breadcrumbs--below-hero {
    padding-top: 22px;
    padding-bottom: 18px;
}

.honda-plus-page > .breadcrumbs.breadcrumbs--below-hero + .honda-plus-intro {
    padding-top: clamp(52px, 6.8vw, 88px);
}

.honda-plus-page .eyebrow.dark,
.honda-plus-mapit .eyebrow,
.honda-plus-options .eyebrow,
.honda-plus-insurance .eyebrow {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.honda-plus-page .eyebrow.dark::after,
.honda-plus-mapit .eyebrow::after,
.honda-plus-options .eyebrow::after,
.honda-plus-insurance .eyebrow::after {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.honda-plus-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.52fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 104px) 0;
}

.honda-plus-intro__copy {
    max-width: 780px;
}

.honda-plus-intro__logo {
    width: min(230px, 64vw);
    height: auto;
    margin-bottom: 28px;
}

.honda-plus-intro__copy h2 {
    margin-bottom: 18px;
}

.honda-plus-intro__copy p:not(.eyebrow) {
    max-width: 720px;
    font-size: clamp(1rem, 1.08vw, 1.08rem);
}

.honda-plus-intro__panel,
.honda-plus-price-grid,
.honda-plus-options__cards,
.honda-plus-go__list {
    display: grid;
    gap: 10px;
}

.honda-plus-intro__panel span,
.honda-plus-benefit-card,
.honda-plus-price-grid article,
.honda-plus-options__cards article,
.honda-plus-go__list article {
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.honda-plus-intro__panel span {
    display: grid;
    gap: 7px;
    min-height: 106px;
    padding: 20px 22px;
}

.honda-plus-intro__panel strong,
.honda-plus-price-grid strong {
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.02;
}

.honda-plus-intro__panel small,
.honda-plus-price-grid span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.35;
}

.honda-plus-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.honda-plus-benefit-card {
    display: grid;
    align-content: start;
    min-height: 280px;
    padding: 24px;
}

.honda-plus-benefit-card img {
    width: auto;
    max-width: 132px;
    height: 58px;
    margin-bottom: 24px;
    object-fit: contain;
    object-position: left center;
}

.honda-plus-benefit-card span,
.honda-plus-options__cards span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.honda-plus-benefit-card h3,
.honda-plus-options__cards h3,
.honda-plus-go__list h3,
.honda-plus-insurance__options h3 {
    color: var(--ink);
    font-size: clamp(1.12rem, 1.4vw, 1.35rem);
}

.honda-plus-benefit-card p,
.honda-plus-options__cards p,
.honda-plus-go__list p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.58;
}

.honda-plus-benefit-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.honda-plus-benefit-card li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.55;
}

.honda-plus-benefit-card li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    content: "";
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}

.honda-plus-benefit-card a {
    color: var(--red);
}

.honda-plus-mapit,
.honda-plus-go {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.84fr);
    min-height: clamp(520px, 54vw, 700px);
    color: var(--white);
    background:
        radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.13), transparent 20rem),
        linear-gradient(135deg, #171c23 0%, #090c11 62%, #1b0d10 100%);
}

.honda-plus-go {
    align-items: center;
}

.honda-plus-mapit__media,
.honda-plus-go__media {
    overflow: hidden;
    background: #0b0e13;
}

.honda-plus-go__media {
    align-self: center;
    aspect-ratio: 16 / 10;
    min-height: clamp(360px, 38vw, 560px);
}

.honda-plus-mapit__media img,
.honda-plus-go__media picture,
.honda-plus-go__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.honda-plus-go__media img {
    object-fit: cover;
    object-position: center;
    filter: saturate(0.94) contrast(1.06);
}

.honda-plus-mapit__copy,
.honda-plus-go__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 78px);
}

.honda-plus-mapit__copy > img,
.honda-plus-options__copy > img,
.honda-plus-insurance__main > img {
    width: auto;
    max-width: 190px;
    max-height: 74px;
    margin-bottom: 22px;
    object-fit: contain;
    object-position: left center;
}

.honda-plus-mapit h2,
.honda-plus-options h2,
.honda-plus-go h2,
.honda-plus-insurance h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    text-wrap: balance;
}

.honda-plus-mapit h2,
.honda-plus-mapit li,
.honda-plus-go h2,
.honda-plus-go__copy > p,
.honda-plus-insurance h2,
.honda-plus-insurance p,
.honda-plus-insurance li {
    color: var(--white);
}

.honda-plus-mapit ul {
    display: grid;
    gap: 10px;
    max-width: 620px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.honda-plus-mapit li,
.honda-plus-insurance li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.48;
}

.honda-plus-mapit li::before,
.honda-plus-insurance li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    content: "";
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.16);
}

.honda-plus-mapit .button,
.honda-plus-insurance .button {
    width: fit-content;
}

.honda-plus-pricing {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.74fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 104px) 0;
}

.honda-plus-pricing__copy {
    max-width: 760px;
}

.honda-plus-pricing__copy h2 {
    margin-bottom: 18px;
}

.honda-plus-price-grid article {
    padding: 22px;
}

.honda-plus-options {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(58px, 8vw, 104px) max(20px, calc((100vw - 1180px) / 2 + 18px));
    color: var(--white);
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), transparent 20rem),
        linear-gradient(135deg, #d71920 0%, #bd131a 52%, #8f1017 100%);
}

.honda-plus-options .eyebrow,
.honda-plus-options h2,
.honda-plus-options p {
    color: var(--white);
}

.honda-plus-options__copy {
    max-width: 650px;
}

.honda-plus-options__copy > img {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(93, 7, 12, 0.18);
}

.honda-plus-options__copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.honda-plus-options__cards p {
    color: var(--muted);
}

.honda-plus-options__cards article {
    padding: 24px;
}

.honda-plus-options__cards span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(215, 25, 32, 0.22);
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.07);
}

.honda-plus-go {
    grid-template-columns: minmax(390px, 0.84fr) minmax(0, 0.96fr);
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 18%, rgba(215, 25, 32, 0.08), transparent 25rem),
        linear-gradient(180deg, #f8fafc, #eef2f6);
}

.honda-plus-go__copy {
    order: -1;
}

.honda-plus-go__copy > img {
    width: min(247px, 62vw);
    height: auto;
    margin-bottom: 22px;
}

.honda-plus-go h2,
.honda-plus-go__copy > p {
    color: var(--ink);
}

.honda-plus-go__copy > p {
    max-width: 680px;
}

.honda-plus-go__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.honda-plus-go__list article {
    padding: 18px;
}

.honda-plus-go__list img {
    width: auto;
    max-width: 128px;
    height: 46px;
    margin-bottom: 16px;
    object-fit: contain;
    object-position: left center;
}

.honda-plus-go__note {
    margin-top: 20px;
    color: var(--muted) !important;
    font-weight: 680;
}

.honda-plus-comparison {
    overflow-x: clip;
}

.honda-plus-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.honda-plus-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: collapse;
}

.honda-plus-table th,
.honda-plus-table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.09);
    text-align: left;
    vertical-align: top;
}

.honda-plus-table thead th {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 820;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.honda-plus-table thead th:not(:first-child) {
    text-align: center;
}

.honda-plus-table thead img {
    width: auto;
    max-width: 168px;
    height: 64px;
    margin: 0 auto;
    object-fit: contain;
}

.honda-plus-table tbody th {
    width: 16%;
    color: var(--ink);
    font-size: 1.04rem;
}

.honda-plus-table td {
    color: var(--muted);
    line-height: 1.55;
}

.honda-plus-table tbody td:nth-child(n+3) {
    width: 16%;
    color: var(--ink);
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.honda-plus-table__group {
    color: var(--red) !important;
    font-size: 0.88rem !important;
    font-weight: 820;
    line-height: 1.18;
    text-transform: none;
}

.honda-plus-table__feature {
    width: 36%;
    color: var(--ink) !important;
}

.honda-plus-table tr.is-new-group th,
.honda-plus-table tr.is-new-group td {
    border-top: 2px solid rgba(215, 25, 32, 0.72);
}

.honda-plus-table__check {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background: #098a53;
    font-weight: 900;
}

.honda-plus-table__dash {
    color: rgba(16, 17, 21, 0.34);
    font-size: 1.3rem;
    font-weight: 800;
}

.honda-plus-table tr:last-child th,
.honda-plus-table tr:last-child td {
    border-bottom: 0;
}

.honda-plus-comparison-mobile {
    display: none;
}

.honda-plus-mobile-product {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(17, 24, 39, 0.08);
}

.honda-plus-mobile-product header {
    display: flex;
    align-items: center;
    min-height: 92px;
    padding: 22px 20px;
    background: linear-gradient(180deg, #f8fafc, #eef2f6);
}

.honda-plus-mobile-product header img {
    width: auto;
    max-width: 178px;
    height: 56px;
    object-fit: contain;
    object-position: left center;
}

.honda-plus-mobile-product__rows {
    display: grid;
    gap: 0;
}

.honda-plus-mobile-product__rows h3 {
    margin: 0;
    padding: 18px 20px 8px;
    color: var(--red);
    font-size: 0.86rem;
    font-weight: 820;
    line-height: 1.2;
}

.honda-plus-mobile-product__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
}

.honda-plus-mobile-product__row:last-child {
    border-bottom: 0;
}

.honda-plus-mobile-product__row span {
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.45;
}

.honda-plus-mobile-product__row strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 820;
    line-height: 1;
    white-space: nowrap;
}

.honda-plus-mobile-product__row .is-included {
    color: #086342;
    background: rgba(9, 138, 83, 0.12);
}

.honda-plus-mobile-product__row .is-not-included {
    color: rgba(16, 17, 21, 0.54);
    background: rgba(16, 17, 21, 0.06);
}

.honda-plus-mobile-product__row .is-text {
    max-width: 134px;
    border-radius: 8px;
    color: var(--ink);
    text-align: right;
    white-space: normal;
    background: rgba(215, 25, 32, 0.08);
}

.honda-plus-conditions {
    display: grid;
    gap: 12px;
    width: min(1180px, calc(100% - 36px));
    margin: 28px auto 0;
    padding: 24px 28px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 251, 0.82)),
        rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 52px rgba(17, 24, 39, 0.07);
}

.honda-plus-conditions p {
    position: relative;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.62;
}

.honda-plus-conditions p::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    content: "";
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}

.honda-plus-insurance {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(58px, 8vw, 104px) max(20px, calc((100vw - 1180px) / 2 + 18px));
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 20rem),
        linear-gradient(135deg, #171c23 0%, #0b0f15 72%, #080a0d 100%);
    color: var(--white);
}

.honda-plus-insurance__main {
    max-width: 700px;
}

.honda-plus-insurance__main p {
    color: rgba(255, 255, 255, 0.78);
}

.honda-plus-insurance__options {
    align-self: start;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 52px rgba(0, 0, 0, 0.18);
}

.honda-plus-insurance__options h3 {
    margin-bottom: 16px;
    color: var(--white);
}

.honda-plus-insurance__options ul {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.honda-plus-insurance__options p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.46;
}

.honda-plus-final-cta {
    margin-top: 0;
}

@media (max-width: 1120px) {
    .honda-plus-benefit-grid,
    .honda-plus-go__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .honda-plus-intro,
    .honda-plus-mapit,
    .honda-plus-pricing,
    .honda-plus-options,
    .honda-plus-go,
    .honda-plus-insurance {
        grid-template-columns: 1fr;
    }

    .honda-plus-mapit__media,
    .honda-plus-go__media {
        min-height: 340px;
    }

    .honda-plus-go__media {
        aspect-ratio: 16 / 9;
    }

    .honda-plus-go__copy {
        order: initial;
    }
}

@media (max-width: 620px) {
    .honda-plus-hero__actions .button,
    .honda-plus-mapit .button,
    .honda-plus-insurance .button {
        width: 100%;
    }

    .honda-plus-intro,
    .honda-plus-pricing {
        width: min(100% - 28px, 430px);
        padding-top: 46px;
    }

    .honda-plus-mapit__copy,
    .honda-plus-go__copy,
    .honda-plus-options,
    .honda-plus-insurance {
        padding-right: 22px;
        padding-left: 22px;
    }

    .honda-plus-mapit__media,
    .honda-plus-go__media {
        min-height: 280px;
    }

    .honda-plus-go__media {
        min-height: 0;
        width: 100%;
    }

    .honda-plus-benefit-card,
    .honda-plus-options__cards article,
    .honda-plus-insurance__options {
        padding: 18px;
    }

    .honda-plus-hero .public-hero-content,
    .honda-plus-hero .public-hero-content p,
    .honda-plus-hero .public-hero-content .button {
        max-width: calc(100vw - 40px);
        overflow-wrap: anywhere;
    }

    .honda-plus-table {
        min-width: 900px;
    }
}

/* Honda Plus landing — quality pass */
.honda-plus-hero.models-landing-hero {
    height: 100svh;
    min-height: 560px;
    align-items: flex-end;
    padding-top: clamp(128px, 12vw, 168px);
    padding-bottom: clamp(78px, 9vw, 112px);
}

.honda-plus-hero.models-landing-hero::after {
    height: clamp(140px, 22vh, 220px);
    background: linear-gradient(180deg, rgba(8, 10, 12, 0), rgba(8, 10, 12, 0.82));
}

.honda-plus-hero .public-hero-content {
    width: min(760px, 100%);
}

.honda-plus-hero .eyebrow {
    margin-bottom: 14px;
}

.honda-plus-hero h1 {
    max-width: 780px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 6.2vw, 5.8rem);
    font-weight: 760;
    line-height: 0.95;
}

.honda-plus-hero p:not(.eyebrow) {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.06rem, 1.34vw, 1.24rem);
    line-height: 1.62;
}

.honda-plus-hero__actions {
    gap: 14px;
    margin-top: 32px;
}

.honda-plus-hero__actions .button {
    min-height: 48px;
    padding-inline: 24px;
}

.honda-plus-page {
    background:
        radial-gradient(circle at 10% 0%, rgba(215, 25, 32, 0.07), transparent 28rem),
        linear-gradient(180deg, #f8fafc 0%, #eef2f6 24rem, #f6f7f8 100%);
}

.honda-plus-page > .breadcrumbs.breadcrumbs--below-hero {
    padding-top: 22px;
    padding-bottom: 18px;
}

.honda-plus-page > .breadcrumbs.breadcrumbs--below-hero + .honda-plus-intro {
    padding-top: clamp(52px, 6.8vw, 88px);
}

.honda-plus-intro {
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.54fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
    padding: clamp(72px, 8vw, 112px) 0 clamp(60px, 7vw, 92px);
}

.honda-plus-intro__logo {
    width: min(172px, 50vw);
    margin-bottom: 22px;
}

.honda-plus-intro__copy h2,
.honda-plus-benefits__heading h2,
.honda-plus-pricing__copy h2,
.honda-plus-go h2,
.honda-plus-comparison .section-heading h2 {
    max-width: 720px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.honda-plus-intro__copy p:not(.eyebrow),
.honda-plus-pricing__copy p:not(.eyebrow) {
    color: #58616d;
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.72;
}

.honda-plus-intro__panel {
    gap: 12px;
}

.honda-plus-intro__panel span,
.honda-plus-benefit-card,
.honda-plus-price-grid article,
.honda-plus-options__cards article,
.honda-plus-go__list article {
    border-color: rgba(16, 17, 21, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 58px rgba(17, 24, 39, 0.08);
}

.honda-plus-intro__panel span {
    min-height: 112px;
    padding: 22px 24px;
}

.honda-plus-intro__panel strong {
    font-size: clamp(1.48rem, 2.35vw, 2.18rem);
}

.honda-plus-benefits {
    background: transparent;
    padding-top: 0;
}

.section-band.section-band--white.honda-plus-benefits {
    background: transparent;
    padding-top: clamp(28px, 4vw, 54px);
}

.section-heading.honda-plus-benefits__heading {
    width: min(1180px, calc(100% - 36px));
    max-width: none;
    margin-bottom: 28px;
}

.honda-plus-benefits__heading h2 {
    max-width: 720px;
}

.honda-plus-comparison .section-heading h2 {
    max-width: 720px;
}

.honda-plus-benefit-grid {
    gap: 18px;
}

.honda-plus-benefit-card {
    min-height: 0;
    padding: clamp(22px, 2.4vw, 32px);
}

.honda-plus-benefit-card img {
    max-width: 148px;
    height: 62px;
    margin-bottom: 26px;
}

.honda-plus-pricing {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: clamp(22px, 3vw, 38px);
    padding: clamp(42px, 5.8vw, 78px) 0 clamp(72px, 8vw, 112px);
}

.honda-plus-pricing__copy {
    max-width: 860px;
}

.honda-plus-pricing__copy h2 {
    max-width: 860px;
}

.honda-plus-price-grid {
    gap: 14px;
}

.honda-plus-price-grid article {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 24px 26px;
}

.honda-plus-price-grid strong {
    flex: 0 0 auto;
    color: #11151b;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.honda-plus-options {
    min-height: clamp(620px, 68vw, 820px);
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
    gap: clamp(34px, 6vw, 88px);
    background:
        radial-gradient(circle at 10% 6%, rgba(255, 255, 255, 0.18), transparent 20rem),
        radial-gradient(circle at 92% 76%, rgba(64, 0, 5, 0.24), transparent 26rem),
        linear-gradient(135deg, #d71920 0%, #bf141b 48%, #8f0f16 100%);
}

.honda-plus-options__copy {
    max-width: 600px;
}

.honda-plus-options__copy > img {
    max-width: 210px;
    margin-bottom: 28px;
}

.honda-plus-options__copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.honda-plus-options__copy p:not(.eyebrow) {
    max-width: 520px;
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.72;
}

.honda-plus-options__cards {
    gap: 16px;
}

.honda-plus-options__cards article {
    padding: clamp(24px, 2.8vw, 34px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 26px 70px rgba(82, 7, 12, 0.2);
}

.honda-plus-options__cards h3 {
    margin-bottom: 8px;
    font-size: clamp(1.28rem, 1.7vw, 1.62rem);
}

.honda-plus-go {
    min-height: 0;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
    padding: clamp(72px, 8vw, 112px) max(20px, calc((100vw - 1180px) / 2 + 18px));
}

.honda-plus-go__copy {
    order: -1;
    padding: 0;
}

.honda-plus-go__copy > img {
    width: min(190px, 56vw);
}

.honda-plus-go__media {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.25 / 1;
    border-radius: 8px;
    box-shadow: 0 28px 78px rgba(17, 24, 39, 0.16);
}

.honda-plus-go h2 {
    max-width: 720px;
    font-size: clamp(2.25rem, 4.2vw, 4.4rem);
    line-height: 0.98;
}

.honda-plus-go__list {
    gap: 12px;
    margin-top: 28px;
}

.honda-plus-go__list article {
    padding: 20px;
}

.honda-plus-comparison {
    background: #ffffff;
}

.honda-plus-table-wrap {
    border-color: rgba(16, 17, 21, 0.08);
    background: #ffffff;
    box-shadow: 0 24px 68px rgba(17, 24, 39, 0.08);
}

.honda-plus-table thead th {
    background: #f6f8fa;
}

.honda-plus-table tr.is-new-group th,
.honda-plus-table tr.is-new-group td {
    border-top-color: rgba(215, 25, 32, 0.42);
}

.honda-plus-insurance {
    align-items: start;
    background:
        radial-gradient(circle at 16% 0%, rgba(215, 25, 32, 0.16), transparent 22rem),
        linear-gradient(135deg, #161b22 0%, #090d12 74%, #08090b 100%);
}

@media (max-width: 980px) {
    .honda-plus-hero.models-landing-hero {
        height: 100svh;
        min-height: 560px;
        align-items: flex-end;
    }

    .honda-plus-intro,
    .honda-plus-pricing,
    .honda-plus-options,
    .honda-plus-go,
    .honda-plus-insurance {
        grid-template-columns: 1fr;
    }

    .honda-plus-go__copy {
        order: initial;
    }

    .honda-plus-go__media {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 760px) {
    .honda-plus-table-wrap {
        display: none;
    }

    .honda-plus-comparison-mobile {
        display: grid;
        gap: 18px;
        width: min(100% - 32px, 430px);
        margin: 0 auto;
    }

    .honda-plus-comparison .section-heading {
        width: min(100% - 32px, 430px);
    }

    .honda-plus-mobile-product__row {
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
    }

    .honda-plus-mobile-product__row strong {
        width: fit-content;
    }

    .honda-plus-mobile-product__row .is-text {
        max-width: 100%;
        text-align: left;
    }

    .honda-plus-conditions {
        width: min(100% - 32px, 430px);
    }
}

@media (max-width: 620px) {
    .honda-plus-hero.models-landing-hero {
        height: 100svh;
        min-height: 560px;
        padding-top: 110px;
        padding-bottom: 54px;
    }

    .honda-plus-hero h1 {
        font-size: clamp(2.72rem, 13vw, 4rem);
    }

    .honda-plus-hero p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.55;
    }

    .honda-plus-hero__actions {
        margin-top: 24px;
    }

    .honda-plus-intro,
    .honda-plus-pricing {
        width: min(100% - 32px, 430px);
        padding-top: 54px;
    }

    .honda-plus-benefits,
    .honda-plus-comparison {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .honda-plus-price-grid article {
        min-height: 82px;
        padding: 20px;
    }

    .honda-plus-options,
    .honda-plus-go,
    .honda-plus-insurance {
        padding-top: 58px;
        padding-bottom: 64px;
    }

    .honda-plus-options__copy h2 {
        font-size: clamp(2.85rem, 14vw, 4.35rem);
    }

    .honda-plus-go__media {
        aspect-ratio: 16 / 9;
    }
}

.model-mega__panel-head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    padding: 2px 2px 0;
}

.model-mega__panel-title {
    color: rgba(255, 255, 255, 0.94);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.model-mega__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.model-mega__card {
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(246, 247, 248, 0.95);
    color: var(--ink);
    box-shadow: none;
    transform-origin: center top;
    transition:
        transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.18s ease;
}

.model-mega__card:hover,
.model-mega__card:focus-visible {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    transform: translateY(-3px);
}

.model-mega__media {
    position: relative;
    display: block;
    aspect-ratio: 1.72 / 1;
    overflow: hidden;
    background: linear-gradient(180deg, #d7d9dc, #f5f5f5 78%);
}

.model-mega__promo-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    max-width: calc(100% - 20px);
    padding: 5px 10px;
    overflow: hidden;
    border-radius: 7px;
    background: linear-gradient(135deg, #e8242c, var(--red-dark));
    color: var(--white);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 14px rgba(215, 25, 32, 0.35);
}

.model-mega__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-mega__body {
    display: grid;
    gap: 5px;
    min-height: 68px;
    padding: 13px 14px 15px;
}

.model-mega__body strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.96rem;
    font-weight: 760;
    line-height: 1.14;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.model-mega__body small {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 650;
    line-height: 1.2;
}

body.is-mega-open .model-mega__tab,
body.is-mega-open .model-mega__card {
    animation: menu-item-in 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--i, 0) * 4ms);
}

@keyframes menu-item-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.model-mega--fallback {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-mega--fallback a {
    padding: 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-height: 820px) {
    .model-mega__tabs {
        gap: 0;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .model-mega__tab {
        padding: 5px 0 5px 14px;
    }

    .model-mega__tab span {
        font-size: 0.82rem;
    }
}

@media (max-height: 700px) {
    .model-mega__tab {
        padding: 4px 0 4px 14px;
    }

    .model-mega__tab span {
        font-size: 0.78rem;
    }
}

@media (max-height: 620px) {
    .model-mega__tab {
        padding: 3px 0 3px 14px;
    }
}

@media (max-width: 1180px) {
    .site-header {
        gap: 12px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .brand,
    .brand-logo {
        width: 150px;
    }

    .main-nav {
        gap: 2px;
        font-size: 0.9rem;
    }

    .main-nav > a,
    .nav-item > a {
        padding-right: 10px;
        padding-left: 10px;
    }

    .model-mega__layout {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 14px;
    }

    .model-mega__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.nav-button {
    display: none;
}

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */
.button,
.lead-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button.primary,
.lead-form button {
    color: var(--white);
    background: var(--red);
}

.button.primary:hover,
.button.primary:focus,
.lead-form button:hover {
    background: var(--red-dark);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.48);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.button.secondary:hover,
.button.secondary:focus {
    background: rgba(255, 255, 255, 0.2);
}

.button.light {
    color: var(--ink);
    background: var(--white);
}

.button.light:hover {
    background: var(--mist);
}

/* For inner pages where buttons are on a light background */
.actions .button.secondary,
.lead-form-card .button.secondary,
.split-panel .button.secondary,
.page-hero .button.secondary,
.model-hero .button.secondary {
    border-color: rgba(16, 17, 21, 0.16);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.62);
}

.actions .button.secondary:hover,
.lead-form-card .button.secondary:hover {
    background: rgba(255, 255, 255, 0.92);
}

/* ------------------------------------------------------------------
   Typography
------------------------------------------------------------------ */
h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.55rem, 5vw, 4.35rem);
    font-weight: 680;
    line-height: 1.04;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
}

h3 {
    margin-bottom: 10px;
    font-size: clamp(1.18rem, 1.45vw, 1.38rem);
    font-weight: 700;
    line-height: 1.15;
}

p {
    color: var(--muted);
    line-height: 1.62;
}

.eyebrow,
.meta {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
}

.eyebrow.dark,
.meta {
    color: var(--red);
}

.shell {
    width: min(var(--shell-max), calc(100% - (var(--shell-gutter) * 2)));
    margin: 0 auto;
}

.section {
    width: min(var(--shell-max), calc(100% - (var(--shell-gutter) * 2)));
    margin: 0 auto;
    padding: clamp(66px, 8vw, 116px) 0;
}

.section-heading {
    max-width: 840px;
    margin-bottom: 34px;
}

.section-heading.split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--red);
    font-weight: 500;
}

.text-link:hover {
    color: var(--red-dark);
}

/* ------------------------------------------------------------------
   Breadcrumbs
------------------------------------------------------------------ */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 110px 0 8px;
    color: var(--muted);
    font-size: 0.9375rem;
}

.breadcrumbs a {
    color: var(--red);
    font-weight: 500;
}

.breadcrumbs strong {
    color: var(--ink);
    font-weight: 500;
}

/* Breadcrumbs justo encima de un public-hero oscuro: tono claro */
.breadcrumbs:has(+ * .public-hero),
main:has(.public-hero) > .breadcrumbs:not(.breadcrumbs--below-hero) {
    padding-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(180deg, rgba(8, 10, 12, 0.96), rgba(8, 10, 12, 0.86));
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: max(20px, calc((100vw - 1180px) / 2 + 18px));
    padding-right: max(20px, calc((100vw - 1180px) / 2 + 18px));
}

main:has(.public-hero) > .breadcrumbs:not(.breadcrumbs--below-hero) a {
    color: rgba(255, 255, 255, 0.86);
}

main:has(.public-hero) > .breadcrumbs:not(.breadcrumbs--below-hero) strong {
    color: var(--white);
}

.breadcrumbs.breadcrumbs--below-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 18px var(--shell-inline) 20px;
    color: var(--muted);
    background: transparent;
}

.breadcrumbs.breadcrumbs--below-hero a {
    color: var(--red);
}

.breadcrumbs.breadcrumbs--below-hero strong {
    color: var(--ink);
}

.honda-plus-page > .breadcrumbs.breadcrumbs--below-hero,
.promotions-page > .breadcrumbs.breadcrumbs--below-hero,
.occasion-page > .breadcrumbs.breadcrumbs--below-hero,
.about-page > .breadcrumbs.breadcrumbs--below-hero {
    background: transparent;
}

.promotions-page > .breadcrumbs.breadcrumbs--below-hero + .promotions-intro,
.occasion-page > .breadcrumbs.breadcrumbs--below-hero + .occasion-intro,
.about-page > .breadcrumbs.breadcrumbs--below-hero + .about-intro {
    padding-top: clamp(52px, 6.8vw, 88px);
}

.breadcrumbs.breadcrumbs--below-hero:has(+ .contact-intro) {
    background:
        radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.08), transparent 26rem),
        linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(238, 242, 246, 0.96));
}

.breadcrumbs.breadcrumbs--below-hero:has(+ .section-band--white) {
    background: rgba(255, 255, 255, 0.7);
}

/* ------------------------------------------------------------------
   HOME — Hero cinematográfico con slider
------------------------------------------------------------------ */
.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-end;
    padding: 148px max(40px, calc((100vw - 1180px) / 2 + 24px)) clamp(58px, 8vh, 96px);
    overflow: hidden;
    overflow-anchor: none;
    color: var(--white);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: 0;
}

.hero-shade {
    z-index: 1;
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.04) blur(0);
}

.hero-slider {
    background: #08090b;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    filter: saturate(0.9) contrast(1.03) blur(3px);
    transform: scale(1.018);
    transition:
        opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.hero-slide--video {
    overflow: hidden;
    background: #08090b;
}

.hero-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.04) blur(0);
    transition: opacity 0.45s ease;
}

.hero-slide--video.is-video-visible .hero-video-frame {
    opacity: 1;
}

.hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    filter: saturate(0.92) contrast(1.04) blur(0);
    transform: scale(1);
}

.hero-slide.is-leaving {
    z-index: 1;
    opacity: 0;
    filter: saturate(0.9) contrast(1.02) blur(2px);
    transform: scale(0.996);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.92s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider.is-ready .hero-slide.is-active {
    animation: hero-first-focus 1.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.68) 0%, rgba(8, 10, 12, 0.3) 42%, rgba(8, 10, 12, 0.08) 100%),
        linear-gradient(180deg, rgba(8, 10, 12, 0.08), rgba(8, 10, 12, 0.58));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero h1,
.hero p,
.hero .eyebrow {
    color: var(--white);
}

.hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 5vw, 4.35rem);
    font-weight: 680;
    line-height: 1.04;
}

.hero-copy {
    max-width: 510px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-progress {
    display: flex;
    width: min(360px, 100%);
    gap: 8px;
    margin-top: 18px;
}

.hero-progress button {
    position: relative;
    display: block;
    width: 100%;
    height: 22px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hero-progress button::before,
.hero-progress button span {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 4px;
    border-radius: 999px;
    content: "";
    transform: translateY(-50%);
}

.hero-progress button::before {
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.hero-progress button span {
    right: auto;
    width: 100%;
    background: var(--white);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.46);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
}

.hero-progress button.is-active span {
    animation: hero-progress-fill var(--hero-slide-duration, 5.2s) linear both;
}

.hero-progress button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
    border-radius: 999px;
}

@keyframes hero-progress-fill {
    from {
        transform: translateY(-50%) scaleX(0);
    }

    to {
        transform: translateY(-50%) scaleX(1);
    }
}

@keyframes hero-first-focus {
    from {
        filter: saturate(0.86) contrast(1.02) blur(12px);
        transform: scale(1.032);
    }

    to {
        filter: saturate(0.92) contrast(1.04) blur(0);
        transform: scale(1);
    }
}

@keyframes model-hero-first-focus {
    from {
        filter: saturate(0.94) contrast(1.04) blur(3px);
        transform: scale(1.012);
    }

    to {
        filter: saturate(0.96) contrast(1.05) blur(0);
        transform: scale(1);
    }
}

/* ------------------------------------------------------------------
   HOME — Quick access (3 columnas, full-bleed)
------------------------------------------------------------------ */
.quick-access {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1px;
    background: #08090b;
}

.access-card {
    position: relative;
    display: flex;
    min-height: 38vh;
    padding: 22px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.access-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(8, 10, 12, 0.02), rgba(8, 10, 12, 0.64));
}

.access-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.access-card:hover img {
    transform: scale(1.04);
}

.access-card span,
.access-card strong {
    position: relative;
    z-index: 1;
}

.access-card span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 650;
    text-transform: none;
}

.access-card strong {
    max-width: 240px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.15;
}

/* ------------------------------------------------------------------
   HOME — Modelos destacados (overlay style)
------------------------------------------------------------------ */
.models {
    padding-top: clamp(72px, 9vw, 124px);
    padding-bottom: clamp(50px, 6vw, 80px);
}

.models .section-heading {
    max-width: 680px;
    margin-bottom: 26px;
}

.models .section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.home-model-grid {
    display: grid;
    grid-template-columns: 1.24fr 1fr 1fr;
    gap: 10px;
}

.home-model-card {
    position: relative;
    display: block;
    min-height: 520px;
    overflow: hidden;
    border-radius: 18px;
    background: #0b0c0f;
    color: var(--white);
}

.home-model-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(8, 10, 12, 0.02), rgba(8, 10, 12, 0.72));
}

.home-model-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-model-card:hover img {
    transform: scale(1.04);
}

.home-model-card .body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 24px;
}

.home-model-card span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    font-weight: 500;
}

.home-model-card h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: clamp(1.18rem, 1.45vw, 1.38rem);
    font-weight: 700;
    line-height: 1.15;
}

.home-model-card a.cta {
    display: inline-flex;
    margin-top: 6px;
    color: var(--white);
    font-weight: 500;
}

.home-model-card a.cta::after {
    content: " →";
}

/* ------------------------------------------------------------------
   HOME — Modelo destacado ficha glass
------------------------------------------------------------------ */
.models {
    width: min(1220px, calc(100% - 72px));
    padding-top: clamp(56px, 7vw, 86px);
    padding-bottom: clamp(48px, 5vw, 74px);
}

.models .models-heading {
    display: grid;
    gap: 18px;
    max-width: 650px;
    margin-bottom: 22px;
}

.models .models-heading .eyebrow.dark {
    position: relative;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 560;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
}

.models .models-heading .eyebrow.dark::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: currentColor;
}

.models .models-heading h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.models .models-heading__copy {
    max-width: 660px;
    margin: 16px 0 0;
    color: rgba(39, 49, 60, 0.72);
    font-size: 1rem;
    line-height: 1.62;
}

.models .models-heading__cta {
    width: fit-content;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 7px;
    font-size: 0.78rem;
    box-shadow: 0 12px 26px rgba(230, 0, 18, 0.24);
}

.models .models-heading__cta::after {
    margin-left: 18px;
    content: "→";
}

.models .home-model-grid {
    grid-template-columns: minmax(0, 1.72fr) minmax(0, 0.72fr) minmax(0, 0.68fr);
    gap: 12px;
    align-items: stretch;
}

.models .home-model-card {
    min-height: 370px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: 0 12px 32px rgba(15, 18, 24, 0.1);
    transition:
        opacity 0.24s ease,
        filter 0.24s ease,
        transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.18s ease;
}

.models .home-model-card img {
    object-position: var(--model-image-focus, 50% 50%);
}

.models .home-model-grid.is-exiting .home-model-card {
    box-shadow: 0 12px 32px rgba(15, 18, 24, 0.07);
}

.models .home-model-grid.is-exiting .home-model-card img,
.models .home-model-grid.is-exiting .home-model-card::after,
.models .home-model-grid.is-exiting .home-model-card .body {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-14px) scale(0.985);
    transition:
        opacity 0.18s ease,
        filter 0.18s ease,
        transform 0.18s ease;
}

.models .home-model-grid.is-exiting.is-moving-backward .home-model-card img,
.models .home-model-grid.is-exiting.is-moving-backward .home-model-card::after,
.models .home-model-grid.is-exiting.is-moving-backward .home-model-card .body {
    transform: translateX(14px) scale(0.985);
}

.models .home-model-grid.is-entering .home-model-card {
    animation: models-card-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--models-card-order, 0) * 36ms);
}

.models .home-model-grid.is-entering .home-model-card:nth-child(1) {
    --models-card-order: 0;
}

.models .home-model-grid.is-entering .home-model-card:nth-child(2) {
    --models-card-order: 1;
}

.models .home-model-grid.is-entering .home-model-card:nth-child(3) {
    --models-card-order: 2;
}

@keyframes models-card-in {
    from {
        opacity: 0;
        filter: blur(4px);
        transform: translateX(18px) scale(0.985);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1);
    }
}

.models .home-model-grid.is-entering.is-moving-backward .home-model-card {
    animation-name: models-card-in-backward;
}

@keyframes models-card-in-backward {
    from {
        opacity: 0;
        filter: blur(4px);
        transform: translateX(-18px) scale(0.985);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1);
    }
}

.models .home-model-card::after {
    background:
        linear-gradient(180deg, rgba(7, 8, 10, 0) 40%, rgba(7, 8, 10, 0.92) 100%),
        linear-gradient(90deg, rgba(7, 8, 10, 0.36), rgba(7, 8, 10, 0.02) 55%);
}

.models .home-model-card .body {
    padding: 0 18px 20px;
}

.models .home-model-card span {
    position: relative;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
}

.models .home-model-card span::after {
    display: block;
    width: 15px;
    height: 1px;
    margin-top: 8px;
    content: "";
    background: var(--red);
}

.models .home-model-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.18rem, 1.45vw, 1.38rem);
    font-weight: 760;
    line-height: 1.14;
    letter-spacing: 0;
}

.models .home-model-card a.cta {
    align-items: center;
    margin-top: 0;
    font-size: 0.92rem;
}

.models .home-model-card a.cta::after {
    margin-left: 9px;
    color: var(--red);
    content: "→";
}

.models-carousel-ui {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}

.models-carousel-ui__arrow {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        inset 0 0 0 1px rgba(9, 11, 14, 0.06),
        0 8px 24px rgba(15, 18, 24, 0.12);
    color: var(--ink);
    font-size: 1.3rem;
}

.models-carousel-ui__arrow--next {
    justify-self: end;
}

.models-carousel-ui__dots {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.models-carousel-ui__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 18, 21, 0.16);
    cursor: pointer;
}

.models-carousel-ui__dots button.is-active {
    background: var(--red);
}

.model-detail {
    position: relative;
    display: flex;
    min-height: 92svh;
    align-items: center;
    justify-content: flex-end;
    isolation: isolate;
    overflow: hidden;
    padding: 120px max(56px, calc((100vw - 1180px) / 2 + 24px)) 72px;
    color: var(--white);
    background: #08090b;
}

.model-detail-sticky {
    position: relative;
    display: flex;
    width: 100%;
    min-height: inherit;
    align-items: center;
    justify-content: flex-end;
}

.model-detail-media,
.model-detail-shade {
    position: absolute;
    inset: 0;
}

.model-detail-media {
    z-index: -2;
}

.model-detail-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    filter: saturate(0.96) contrast(1.05);
    transform: scale(1.02);
}

.model-detail-reveal-svg {
    position: absolute;
    inset: 0;
    display: none;
    width: 100%;
    height: 100%;
}

.model-detail-reveal-svg image {
    filter: saturate(1.04) contrast(1.08);
}

.model-detail-shade {
    z-index: -1;
    background:
        radial-gradient(circle at 76% 34%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(90deg, rgba(6, 7, 9, 0.72) 0%, rgba(6, 7, 9, 0.28) 46%, rgba(6, 7, 9, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.06), rgba(6, 7, 9, 0.76));
}

.model-detail-content {
    position: relative;
    z-index: 1;
    width: min(590px, 100%);
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 46%),
        rgba(16, 18, 24, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 28px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(30px) saturate(1.32);
    -webkit-backdrop-filter: blur(30px) saturate(1.32);
    transform: translateX(clamp(140px, 10vw, 240px));
}

.model-detail-content::before {
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%);
    opacity: 0.5;
}

.model-detail-content > * {
    position: relative;
    z-index: 1;
}

.model-kicker {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 560;
    line-height: 1.2;
}

.model-name {
    max-width: none;
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(2.55rem, 5vw, 4.35rem);
    font-weight: 680;
    line-height: 1.04;
    white-space: nowrap;
}

.model-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 7px;
    color: var(--white);
    font-size: clamp(2rem, 3.3vw, 2.75rem);
    font-weight: 680;
    line-height: 1;
}

.model-price small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    font-weight: 560;
}

.model-lede {
    display: flex;
    flex-wrap: wrap;
    gap: 0 6px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    font-weight: 560;
    line-height: 1.5;
}

.model-pvp {
    white-space: nowrap;
}

.model-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.model-specs span {
    display: flex;
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    padding: 16px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(22px) saturate(1.3);
    -webkit-backdrop-filter: blur(22px) saturate(1.3);
}

.model-specs small {
    margin-bottom: 4px;
    color: var(--red);
    font-size: 1.02rem;
    font-weight: 760;
    line-height: 1.1;
}

.model-specs strong {
    display: block;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.98rem;
    font-weight: 720;
    line-height: 1.2;
}

.model-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.model-actions .button {
    min-height: 52px;
    border-radius: 16px;
    font-size: 0.98rem;
    font-weight: 560;
}

.model-finance-note {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.8rem;
    font-weight: 520;
    line-height: 1.55;
}

.model-finance-note p {
    margin: 0;
    color: inherit;
}

.model-finance-note p + p {
    margin-top: 10px;
}

.model-detail--reveal {
    --featured-reveal-progress: 0;
    --featured-offer-progress: 1;
}

.model-detail--reveal.has-featured-reveal {
    display: block;
    height: 560svh;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: #090b10;
}

.model-detail--reveal.has-featured-reveal .model-detail-sticky {
    position: sticky;
    top: 0;
    display: flex;
    height: 100svh;
    min-height: 0;
    padding: 120px max(56px, calc((100vw - 1180px) / 2 + 24px)) 72px;
    overflow: hidden;
}

.model-detail--reveal.has-featured-reveal .model-detail-media {
    z-index: 0;
}

.model-detail--reveal.has-featured-reveal .model-detail-media img {
    opacity: 0;
}

.model-detail--reveal.has-featured-reveal .model-detail-reveal-svg {
    display: block;
}

.model-detail--reveal.has-featured-reveal .model-detail-shade {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.66) 0%, rgba(5, 7, 10, 0.08) 26%, rgba(5, 7, 10, 0.12) 58%, rgba(5, 7, 10, 0.72) 100%),
        radial-gradient(circle at 52% 44%, transparent 22%, rgba(0, 0, 0, 0.44) 100%);
}

.model-detail--reveal.has-featured-reveal .model-detail-shade::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: calc(0.24 - (var(--featured-reveal-progress) * 0.12));
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(17, 19, 25, 0.58), rgba(8, 10, 15, 0.72));
}

.model-detail--reveal.has-featured-reveal .model-detail-content {
    position: absolute;
    right: max(72px, 11vw);
    top: 56%;
    bottom: auto;
    z-index: 2;
    width: min(506px, calc(100% - 48px));
    padding: clamp(28px, 3.4vw, 44px) clamp(22px, 2.4vw, 28px) clamp(24px, 3vw, 32px);
    border-radius: 32px;
    background:
        radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018) 42%),
        rgba(19, 21, 27, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 34px 90px rgba(0, 0, 0, 0.4);
    opacity: var(--featured-offer-progress);
    pointer-events: none;
    transform: translateY(calc(-50% + ((1 - var(--featured-offer-progress)) * 34px))) scale(calc(0.98 + (var(--featured-offer-progress) * 0.02)));
    transition: opacity 0.12s linear;
}

.model-detail--reveal.has-featured-reveal .model-detail-content.is-offer-active {
    pointer-events: auto;
}

.model-detail--reveal.has-featured-reveal .model-detail-content:not(.is-offer-active) a,
.model-detail--reveal.has-featured-reveal .model-detail-content:not(.is-offer-active) button {
    pointer-events: none;
}

.model-detail--reveal.has-featured-reveal .model-name {
    white-space: normal;
}

.model-detail--reveal.has-featured-reveal .model-kicker {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    font-weight: 700;
}

.model-detail--reveal.has-featured-reveal .model-price {
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 0 10px;
    font-size: clamp(2rem, 2.6vw, 2.7rem);
    line-height: 0.98;
    white-space: nowrap;
}

.model-detail--reveal.has-featured-reveal .model-price span {
    flex: 0 1 auto;
    min-width: 0;
}

.model-detail--reveal.has-featured-reveal .model-price small {
    flex: 0 0 auto;
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    font-weight: 500;
}

.model-detail--reveal.has-featured-reveal .model-lede {
    display: block;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    font-weight: 560;
    line-height: 1.55;
}

.model-detail--reveal.has-featured-reveal .model-pvp {
    white-space: normal;
}

.model-detail--reveal.has-featured-reveal .model-specs {
    gap: 14px;
    margin: 0 0 34px;
}

.model-detail--reveal.has-featured-reveal .model-specs span {
    min-height: 104px;
    padding: 18px 14px;
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 18px 32px rgba(0, 0, 0, 0.16);
}

.model-detail--reveal.has-featured-reveal .model-specs small {
    font-size: 1.08rem;
}

.model-detail--reveal.has-featured-reveal .model-specs strong {
    font-size: 1rem;
    font-weight: 680;
}

.model-detail--reveal.has-featured-reveal .model-actions {
    gap: 14px;
    margin-bottom: 0;
}

.model-detail--reveal.has-featured-reveal .model-actions .button {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    font-size: 1rem;
}

.model-detail--reveal.has-featured-reveal .model-actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 18px 34px rgba(0, 0, 0, 0.18);
}

/* ------------------------------------------------------------------
   HOME — Service band (taller)
------------------------------------------------------------------ */
.service-band {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 560px;
    color: var(--white);
    background: var(--steel);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.service-copy {
    display: flex;
    padding: clamp(42px, 7vw, 82px);
    flex-direction: column;
    justify-content: center;
}

.service-copy h2 {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
}

.service-copy p {
    max-width: 560px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.62;
}

/* ------------------------------------------------------------------
   HOME — Dual panels (Ocasion + Promociones)
------------------------------------------------------------------ */
.dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 68px;
    padding-bottom: 68px;
}

.panel {
    min-height: 220px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(22px) saturate(1.24);
    -webkit-backdrop-filter: blur(22px) saturate(1.24);
}

.panel h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
}

.panel p {
    max-width: 560px;
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.62;
}

.red-panel {
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(215, 25, 32, 0.94), rgba(159, 17, 23, 0.96)),
        var(--red);
    border-color: rgba(255, 255, 255, 0.14);
}

.red-panel h2 {
    color: var(--white);
}

.red-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.red-panel .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

/* ------------------------------------------------------------------
   HOME — Trust
------------------------------------------------------------------ */
.trust {
    padding-top: 28px;
}

.trust .section-heading h2 {
    max-width: 740px;
    font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}

.home-action-cards {
    width: min(1160px, calc(100% - 76px));
    gap: 24px;
    align-items: stretch;
    padding-top: clamp(58px, 7vw, 82px);
    padding-bottom: 12px;
}

.home-action-cards .panel {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 4.8vw, 58px);
    border: 1px solid rgba(17, 18, 21, 0.08);
    border-radius: 15px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.92)),
        #fff;
    box-shadow:
        0 18px 42px rgba(18, 20, 25, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.home-action-cards .eyebrow,
.home-trust-card .eyebrow {
    position: relative;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
}

.home-action-cards .eyebrow::after,
.home-trust-card .eyebrow::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: currentColor;
}

.home-action-cards .panel h2 {
    max-width: 500px;
    margin: 0 0 24px;
    color: var(--ink);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-action-cards .panel p:not(.eyebrow) {
    max-width: 480px;
    margin: 0 0 38px;
    color: rgba(20, 24, 31, 0.76);
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    line-height: 1.62;
}

.home-action-cards .text-link,
.home-trust-card .text-link {
    width: fit-content;
    min-height: 34px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 750;
}

.home-action-cards .text-link::after,
.home-trust-card .text-link::after {
    margin-left: 18px;
    content: "→";
}

.home-action-cards .red-panel {
    overflow: hidden;
    border: 0;
    background:
        radial-gradient(circle at 26% 20%, rgba(255, 58, 69, 0.42), transparent 34%),
        radial-gradient(circle at 76% 84%, rgba(81, 2, 8, 0.38), transparent 42%),
        linear-gradient(145deg, #ed101e 0%, #c80c18 48%, #a90610 100%);
    box-shadow:
        0 24px 48px rgba(190, 8, 18, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.home-action-cards .red-panel .eyebrow {
    color: rgba(255, 255, 255, 0.94);
}

.home-action-cards .red-panel h2 {
    color: var(--white);
}

.home-action-cards .red-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.88);
}

.home-action-cards .red-panel .button.light {
    width: fit-content;
    min-height: 58px;
    padding: 0 30px;
    border: 0;
    border-radius: 13px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 249, 0.96));
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 650;
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.home-trust-card {
    position: relative;
    width: min(1160px, calc(100% - 76px));
    margin-top: 0;
    margin-bottom: clamp(58px, 7vw, 86px);
    padding: clamp(46px, 5vw, 58px) clamp(44px, 5vw, 54px);
    overflow: hidden;
    border: 1px solid rgba(17, 18, 21, 0.06);
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.94)),
        #fff;
    box-shadow:
        0 18px 42px rgba(18, 20, 25, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-trust-card::after {
    position: absolute;
    top: -30%;
    right: 2%;
    width: 38%;
    height: 160%;
    content: "";
    transform: rotate(24deg);
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
    opacity: 0.56;
    pointer-events: none;
}

.home-trust-card .section-heading {
    position: relative;
    z-index: 1;
    margin: 0;
}

.home-trust-card .section-heading.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
}

.home-trust-card .eyebrow {
    margin-bottom: 24px;
}

.home-trust-card .section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.home-trust-card__copy {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(39, 49, 60, 0.74);
    font-size: clamp(1rem, 1.1vw, 1.08rem);
    line-height: 1.66;
}

/* ------------------------------------------------------------------
   HOME — Contact band
------------------------------------------------------------------ */
@media (min-width: 981px) and (max-width: 1440px) and (max-height: 820px) {
    .models {
        width: min(1120px, calc(100% - 96px));
        padding-top: 48px;
        padding-bottom: 42px;
    }

    .models .models-heading {
        gap: 12px;
        max-width: 600px;
        margin-bottom: 18px;
    }

    .models .models-heading .eyebrow.dark {
        margin-bottom: 12px;
        font-size: 0.78rem;
    }

    .models .models-heading .eyebrow.dark::after {
        display: block;
    }

.models .models-heading h2 {
        max-width: 580px;
        font-size: clamp(2rem, 3vw, 3rem);
        line-height: 1.08;
    }

    .models .models-heading__copy {
        max-width: 560px;
        margin-top: 10px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .models .models-heading__cta {
        min-height: 34px;
        padding: 0 16px;
        font-size: 0.72rem;
    }

    .models .home-model-grid {
        gap: 10px;
    }

    .models .home-model-card {
        min-height: 300px;
        border-radius: 10px;
    }

    .models .home-model-card .body {
        padding: 0 16px 17px;
    }

    .models .home-model-card span {
        margin-bottom: 10px;
        font-size: 0.72rem;
    }

    .models .home-model-card h3 {
        margin-bottom: 8px;
        font-size: clamp(1.1rem, 1.55vw, 1.34rem);
    }

    .models .home-model-card a.cta {
        font-size: 0.82rem;
    }

    .models-carousel-ui {
        grid-template-columns: 42px 1fr 42px;
        margin-top: 14px;
    }

    .models-carousel-ui__arrow {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }

    .home-action-cards {
        width: min(1080px, calc(100% - 116px));
        gap: 20px;
        padding-top: 44px;
        padding-bottom: 10px;
    }

    .home-action-cards .panel {
        min-height: 300px;
        padding: 38px 44px;
        border-radius: 13px;
    }

    .home-action-cards .eyebrow,
    .home-trust-card .eyebrow {
        margin-bottom: 18px;
        font-size: 0.78rem;
    }

    .home-action-cards .eyebrow::after,
    .home-trust-card .eyebrow::after {
        display: block;
    }

    .home-action-cards .panel h2 {
        max-width: 440px;
        margin-bottom: 18px;
        font-size: clamp(1.85rem, 2.75vw, 2.48rem);
    }

    .home-action-cards .panel p:not(.eyebrow) {
        max-width: 430px;
        margin-bottom: 28px;
        font-size: 0.96rem;
        line-height: 1.42;
    }

    .home-action-cards .red-panel .button.light {
        min-height: 48px;
        padding: 0 24px;
        border-radius: 11px;
        font-size: 0.86rem;
    }

    .home-action-cards .text-link,
    .home-trust-card .text-link {
        min-height: 30px;
        font-size: 0.9rem;
    }

    .home-trust-card {
        width: min(1080px, calc(100% - 116px));
        margin-bottom: 54px;
        padding: 36px 44px;
        border-radius: 13px;
    }

    .home-trust-card .section-heading.split {
        gap: 26px;
    }

    .home-trust-card .eyebrow {
        margin-bottom: 20px;
    }

    .home-trust-card .section-heading h2 {
        max-width: 700px;
        font-size: clamp(1.8rem, 2.8vw, 2.55rem);
    }

    .home-trust-card__copy {
        max-width: 680px;
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.5;
    }
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(28px, 6vw, 70px);
    align-items: center;
    min-height: 480px;
    padding: clamp(52px, 7vw, 96px) clamp(18px, 6vw, 86px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(16, 17, 21, 0.88), rgba(16, 17, 21, 0.68)),
        var(--contact-bg, #111) center / cover;
}

.contact-band h2 {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
}

.contact-band p {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.62;
}

.contact-band .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.lead-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #090a0c;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1.78fr);
    gap: clamp(22px, 3.8vw, 54px);
    align-items: start;
    padding: clamp(38px, 5.4vw, 66px) clamp(18px, 6vw, 86px);
}

.site-footer strong {
    display: block;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 0.96rem;
    font-weight: 760;
}

.footer-logo {
    position: relative;
    display: block;
    width: 180px;
    height: 42px;
    overflow: hidden;
    margin-bottom: 12px;
}

.footer-logo img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 180px;
    height: auto;
    transition: opacity 0.18s ease;
    transform: translateY(-50%);
}

.footer-logo-light {
    display: none;
    opacity: 0;
}

.site-footer p {
    margin: 0;
    max-width: 210px;
    color: inherit;
    line-height: 1.58;
}

.site-footer__brand {
    min-height: 100%;
    padding-right: clamp(20px, 3vw, 42px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand small {
    display: block;
    max-width: 220px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
    line-height: 1.5;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: minmax(150px, 0.75fr) minmax(330px, 1.5fr) minmax(145px, 0.74fr) minmax(190px, 0.9fr);
    gap: clamp(18px, 3vw, 34px);
}

.site-footer__nav nav {
    display: grid;
    align-content: start;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.site-footer__nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
    line-height: 1.32;
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__nav a:hover {
    color: var(--white);
    transform: translateX(2px);
}

.site-footer__nav a::before {
    position: absolute;
    top: 0.62em;
    left: -12px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    content: "";
    opacity: 0;
    transition: width 0.18s ease, opacity 0.18s ease;
}

.site-footer__nav a:hover::before,
.site-footer__nav a:focus-visible::before {
    width: 7px;
    opacity: 1;
}

.site-footer__models {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 28px;
}

.site-footer__models strong {
    grid-column: 1 / -1;
    font-size: 1.02rem;
}

.site-footer__models div {
    display: grid;
    gap: 9px;
    align-content: start;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px clamp(18px, 6vw, 86px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.86rem;
    line-height: 1.4;
}

/* ------------------------------------------------------------------
   Inner pages — public-hero (cinematográfico)
------------------------------------------------------------------ */
.public-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(360px, 56vh, 520px);
    padding: clamp(80px, 11vw, 130px) max(20px, calc((100vw - 1180px) / 2 + 18px)) clamp(40px, 6vw, 64px);
    color: var(--white);
    background: #08090b;
}

.public-hero--simple {
    min-height: clamp(280px, 40vh, 380px);
    background:
        radial-gradient(circle at 78% 20%, rgba(215, 25, 32, 0.18), transparent 24rem),
        linear-gradient(135deg, #111318, #242a31);
}

.public-hero-media,
.public-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.public-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.04);
}

.public-hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.78) 0%, rgba(8, 10, 12, 0.34) 60%, rgba(8, 10, 12, 0.06) 100%),
        linear-gradient(180deg, rgba(8, 10, 12, 0.1), rgba(8, 10, 12, 0.62));
}

.public-hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}

.public-hero h1 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: clamp(2.55rem, 5vw, 4.35rem);
    font-weight: 680;
    line-height: 1.04;
}

.public-hero p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.58;
}

.public-hero .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.public-hero .actions {
    margin-top: 24px;
}

.models-landing-hero {
    box-sizing: border-box;
    height: 100svh;
    min-height: 560px;
    padding-top: clamp(148px, 14vw, 190px);
}

.models-landing-hero::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 0;
    height: clamp(110px, 17vh, 180px);
    pointer-events: none;
    content: "";
    background: linear-gradient(180deg, rgba(8, 10, 12, 0), rgba(8, 10, 12, 0.74));
}

.models-landing-hero .public-hero-media img {
    object-position: center 72%;
    filter: saturate(0.96) contrast(1.08);
}

.models-landing-hero .public-hero-shade {
    background:
        radial-gradient(circle at 76% 30%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(90deg, rgba(6, 7, 9, 0.86) 0%, rgba(6, 7, 9, 0.5) 42%, rgba(6, 7, 9, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.08), rgba(6, 7, 9, 0.66));
}

.models-landing-hero .public-hero-content {
    max-width: 720px;
}

.models-landing-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.models-landing-hero .eyebrow::before {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    content: "";
}

.models-landing-hero h1 {
    max-width: 760px;
    margin-bottom: 18px;
    text-wrap: balance;
}

.models-landing-hero p:not(.eyebrow) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.02rem, 1.28vw, 1.18rem);
}

/* Inner pages — page hero, model cards, sections */
.page-landing-hero {
    height: 100svh;
    min-height: 560px;
}

.page-landing-hero .public-hero-content {
    max-width: 700px;
}

.page-landing-hero .public-hero-media img {
    object-position: center 54%;
}

.page-landing-hero--occasion .public-hero-media img {
    object-position: center 48%;
}

.page-landing-hero--promotions .public-hero-media img {
    object-position: center 50%;
}

.page-landing-hero--contact .public-hero-media img {
    object-position: center 44%;
}

.page-landing-hero--about .public-hero-media img {
    object-position: center 46%;
}

.page-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(120px, 14vw, 180px) 0 48px;
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.62;
}

.page-hero h1 {
    color: var(--ink);
}

.page-hero .eyebrow {
    color: var(--red);
}

.page-hero--media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 28px;
}

.page-hero--media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 18px 60px rgba(16, 17, 21, 0.12);
}

.section-band {
    padding: clamp(54px, 8vw, 92px) 0;
}

.model-page > .section-band {
    padding: clamp(42px, 5.6vw, 72px) 0;
}

.section-band--white {
    background: rgba(255, 255, 255, 0.7);
}

.section-band .section-heading {
    margin-bottom: 24px;
}

.model-page > .section-band .section-heading {
    width: var(--model-shell, min(1180px, calc(100% - 36px)));
    max-width: none;
    margin-bottom: 20px;
}

.section-band h2 {
    color: var(--ink);
}

.section-band .eyebrow {
    color: var(--red);
}

.model-page .section-band .section-heading .eyebrow::after,
.model-page .faq-section .eyebrow.dark::after,
.model-page .model-seo-section__intro .eyebrow.dark::after,
.model-page .specs-band__heading .eyebrow::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: currentColor;
}

.section-band p {
    color: var(--muted);
}

/* Family chips strip */

.family-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.family-strip a {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.family-strip a:hover {
    border-color: rgba(215, 25, 32, 0.32);
    box-shadow: 0 14px 36px rgba(16, 17, 21, 0.08);
    transform: translateY(-1px);
}

.family-strip a.is-active {
    border-color: rgba(215, 25, 32, 0.4);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(215, 25, 32, 0.1);
}

.family-strip span {
    font-size: 0.98rem;
    font-weight: 720;
    line-height: 1.15;
}

.family-strip strong {
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 700;
}

.family-strip--dense {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.family-strip--dense a {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    min-height: 170px;
    padding: 16px 18px;
    overflow: hidden;
}

.family-strip--dense .family-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.family-strip--dense .family-card__name {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 760;
    line-height: 1.2;
}

.family-strip--dense .family-card__count {
    flex: none;
    display: inline-grid;
    place-items: center;
    min-width: 26px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.1);
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.family-strip--dense a.family-card--image {
    justify-content: flex-start;
}

.family-strip--dense .family-card__media {
    display: grid;
    flex: 1 1 auto;
    place-items: center;
    margin-top: 10px;
    min-height: 0;
}

.family-strip--dense .family-card__media img {
    max-width: 92%;
    max-height: 104px;
    object-fit: contain;
    filter: drop-shadow(0 9px 11px rgba(16, 17, 21, 0.16));
}

/* Model/Post cards (BEM style for inner pages) */
.model-grid,
.post-grid,
.variant-grid,
.gallery-grid {
    display: grid;
    gap: 18px;
}

.model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.models-catalog {
    --models-catalog-gap: 68px;
    --models-catalog-top-gap: 46px;
    padding-top: clamp(74px, 8vw, 112px);
}

.breadcrumbs--below-hero + .models-catalog {
    padding-top: var(--models-catalog-top-gap);
}

.models-catalog__heading {
    display: block;
    max-width: var(--shell-max);
    margin-bottom: clamp(26px, 3vw, 38px);
    text-align: left;
}

.models-catalog__heading .eyebrow {
    display: inline-grid;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 780;
    line-height: 1.2;
}

.models-catalog__count {
    width: max-content;
    color: var(--red);
}

.models-catalog__heading .eyebrow::after {
    display: block;
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.models-catalog__heading h2 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(2.7rem, 4.1vw, 4.2rem);
    font-weight: 780;
    line-height: 1.02;
}

.models-catalog__heading p:not(.eyebrow) {
    max-width: 740px;
    margin: 14px 0 0;
    color: #59616b;
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.62;
}

.model-finder {
    margin-bottom: clamp(30px, 3.4vw, 48px);
}

.model-finder__toggle {
    display: none;
}

.breadcrumbs--below-hero + .models-catalog .model-finder {
    margin-bottom: max(18px, calc(var(--models-catalog-gap) - 46px));
}

.model-finder__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.model-finder__search {
    display: grid;
    gap: 8px;
}

.model-finder__search span {
    color: #59616b;
    font-size: 0.78rem;
    font-weight: 780;
}

.model-finder__search input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(16, 17, 21, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font: inherit;
    outline: none;
}

.model-finder__search input:focus {
    border-color: rgba(215, 25, 32, 0.52);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.08);
}

.model-finder__count {
    margin: 0;
    color: #59616b;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.model-finder__count strong {
    color: var(--red);
}

.model-finder__reset {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.model-finder__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: max-content;
}

.model-finder__filters {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 9px;
    align-items: start;
    min-height: 50px;
}

.model-finder__active {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    min-height: 34px;
}

.model-finder__active[hidden] {
    display: flex !important;
    visibility: hidden;
    pointer-events: none;
}

.model-finder__chip {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(215, 25, 32, 0.18);
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.07);
    color: #4a1014;
    font-size: 0.82rem;
    font-weight: 760;
    line-height: 1.15;
}

.model-finder__chip span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-finder__chip button {
    display: grid;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(215, 25, 32, 0.12);
    color: var(--red);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.model-filter {
    position: relative;
    border: 1px solid rgba(16, 17, 21, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
}

.model-filter[open] {
    z-index: 20;
    background: rgba(255, 255, 255, 0.98);
}

.model-filter summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 14px;
    color: #59616b;
    font-size: 0.92rem;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.model-filter summary span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-filter summary::-webkit-details-marker {
    display: none;
}

.model-filter summary::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    transform: rotate(-45deg) translateY(2px);
    transition: transform 0.18s ease;
}

.model-filter:not([open]) summary::after {
    transform: rotate(135deg) translateY(2px);
}

.model-filter__body {
    position: absolute;
    z-index: 12;
    top: calc(100% - 1px);
    right: -1px;
    left: -1px;
    display: grid;
    gap: 14px;
    padding: 14px 16px 18px;
    border: 1px solid rgba(16, 17, 21, 0.16);
    border-top: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 54px rgba(16, 17, 21, 0.14);
}

.model-filter:not([open]) .model-filter__body {
    display: none;
}

.model-filter__body label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 620;
    line-height: 1.2;
}

.model-filter input[type="checkbox"],
.model-filter input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

.model-filter__segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 4px;
    border-radius: 8px;
    background: rgba(16, 17, 21, 0.06);
}

.model-filter__segmented label {
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
}

.model-filter__range {
    display: grid;
    gap: 10px;
}

.model-filter__range-values {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 720;
}

.model-filter__range-control {
    position: relative;
    min-height: 28px;
}

.model-filter__range-control::before {
    position: absolute;
    top: 13px;
    right: 2px;
    left: 2px;
    height: 3px;
    border-radius: 999px;
    content: "";
    background: #101115;
}

.model-filter__range-control input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 28px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
}

.model-filter__range-control input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: #050506;
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
}

.model-filter__range-control input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: #050506;
    cursor: pointer;
    pointer-events: auto;
}

.model-grid--catalog {
    margin-top: 0;
}

.model-card[hidden] {
    display: none;
}

.model-finder__empty {
    margin-top: 28px;
    color: #59616b;
    font-weight: 720;
    text-align: center;
}

.post-grid,
.post-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-card,
.post-card {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 50px rgba(16, 17, 21, 0.06);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.model-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.model-card:hover,
.post-card:hover {
    border-color: rgba(215, 25, 32, 0.28);
    box-shadow: 0 22px 60px rgba(16, 17, 21, 0.12);
    transform: translateY(-2px);
}

.model-card__media,
.post-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8ecef;
}

.model-card__media {
    position: relative;
    aspect-ratio: 1.72 / 1;
    background: linear-gradient(180deg, #eef1f3, #f7f7f7 78%);
}

.model-card__top {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.model-card__fam {
    min-width: 0;
    max-width: calc(100% - 100px);
    overflow: hidden;
    padding: 4px 9px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);
    color: #59616b;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.model-card__promo-flag {
    flex: 0 0 auto;
    padding: 5px 10px;
    border-radius: 7px;
    background: linear-gradient(135deg, #e8242c, var(--red-dark));
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: none;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 14px rgba(215, 25, 32, 0.35);
}

.model-card__media img,
.post-card__media img,
.variant-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.model-card__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.model-card__media img {
    object-fit: contain;
}

.model-card:hover .model-card__media img,
.post-card:hover .post-card__media img {
    transform: scale(1.03);
}

.model-card:hover .model-card__media img {
    transform: none;
}

.model-card__body,
.post-card__body {
    min-height: 220px;
    gap: 14px;
    padding: 22px;
}

.model-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.post-card__body {
    display: grid;
    align-content: start;
}

.post-card--with-button .post-card__body {
    min-height: 190px;
    align-content: start;
}

.model-card h3 a,
.post-card h3 a {
    color: var(--ink);
    line-height: 1.15;
}

.model-card h3 {
    display: flex;
    min-height: calc(2 * 1.12em);
    align-items: center;
    justify-content: center;
    margin: -4px 0 8px;
    font-size: clamp(1.28rem, 1.22vw, 1.375rem);
    font-weight: 780;
    line-height: 1.12;
    text-align: center;
}

.model-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.model-card p,
.post-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.62;
}

.post-card__button {
    width: fit-content;
    min-height: 42px;
    margin-top: 4px;
    padding: 0 20px;
    font-size: 0.9rem;
    box-shadow: none;
}

.news-landing-hero {
    position: relative;
    display: grid;
    min-height: clamp(470px, 58svh, 660px);
    padding: clamp(132px, 12vw, 170px) 0 clamp(48px, 7vw, 86px);
    overflow: hidden;
    background: #11151c;
    isolation: isolate;
}

.news-landing-hero__media,
.news-landing-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.news-landing-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.02);
}

.news-landing-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 10, 14, 0.9) 0%, rgba(8, 10, 14, 0.68) 42%, rgba(8, 10, 14, 0.28) 100%),
        linear-gradient(180deg, rgba(8, 10, 14, 0.42), rgba(8, 10, 14, 0.72));
}

.news-landing-hero__content {
    display: flex;
    width: min(1480px, calc(100% - 72px));
    margin: auto auto 0;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 86px);
}

.news-landing-hero__copy {
    max-width: 760px;
}

.news-landing-hero .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.news-landing-hero .eyebrow::before {
    background: var(--red);
}

.news-landing-hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 6.4rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.news-landing-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.02rem, 1.4vw, 1.24rem);
    line-height: 1.58;
}

.news-landing-hero .button {
    flex: 0 0 auto;
}

.news-editorial {
    padding-top: clamp(52px, 7vw, 92px);
}

.news-editorial__inner {
    width: min(1480px, calc(100% - 72px));
    margin: 0 auto;
}

/* Noticias: escala editorial compacta */
.news-landing-hero {
    min-height: clamp(360px, 44svh, 500px);
    padding: clamp(118px, 10vw, 148px) 0 clamp(34px, 5vw, 58px);
}

.news-landing-hero__content,
.news-editorial__inner {
    width: min(1320px, calc(100% - 72px));
}

.news-landing-hero__copy {
    max-width: 660px;
}

.news-landing-hero h1 {
    font-size: clamp(2.55rem, 4.8vw, 4.8rem);
    line-height: 0.98;
}

.news-landing-hero p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 16px;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.news-editorial {
    padding-top: clamp(22px, 3vw, 38px);
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: clamp(34px, 5vw, 58px);
}

.news-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.news-pagination a,
.news-pagination span {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    padding: 0 14px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 760;
    box-shadow: 0 12px 30px rgba(16, 17, 21, 0.075);
}

.news-pagination a:hover,
.news-pagination a:focus-visible,
.news-pagination span[aria-current="page"] {
    border-color: rgba(215, 25, 32, 0.72);
    background: var(--red);
    color: var(--white);
}

/* Noticias: masonry visual tipo Pinterest */
.news-mosaic {
    display: block;
    column-count: 3;
    column-gap: clamp(20px, 1.8vw, 30px);
}

.news-mosaic .post-card,
.news-mosaic .post-card:nth-child(1),
.news-mosaic .post-card:nth-child(6n + 1),
.news-mosaic .post-card:nth-child(6n + 2),
.news-mosaic .post-card:nth-child(6n + 4),
.news-mosaic .post-card:nth-child(6n + 5),
.news-mosaic .post-card:nth-child(7n + 1),
.news-mosaic .post-card:nth-child(7n + 3),
.news-mosaic .post-card:nth-child(7n + 5),
.news-mosaic .post-card:nth-child(8n + 2),
.news-mosaic .post-card:nth-child(8n + 4),
.news-mosaic .post-card:nth-child(8n + 6),
.news-mosaic .post-card:nth-child(8n + 7),
.news-mosaic .post-card:nth-child(8n + 8),
.news-mosaic .post-card:nth-child(12n + 2),
.news-mosaic .post-card:nth-child(12n + 3),
.news-mosaic .post-card:nth-child(12n + 5),
.news-mosaic .post-card:nth-child(12n + 6),
.news-mosaic .post-card:nth-child(12n + 7),
.news-mosaic .post-card:nth-child(12n + 8),
.news-mosaic .post-card:nth-child(12n + 10),
.news-mosaic .post-card:nth-child(12n + 11) {
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    min-height: auto;
    max-height: none;
    margin: 0 0 clamp(20px, 1.8vw, 30px);
    overflow: hidden;
    break-inside: avoid;
    border: 0;
    border-radius: 22px;
    background: #11151c;
    box-shadow: 0 22px 58px rgba(16, 17, 21, 0.14);
}

.news-mosaic .post-card__media,
.news-mosaic .post-card:nth-child(6n + 1) .post-card__media,
.news-mosaic .post-card:nth-child(6n + 4) .post-card__media {
    position: relative;
    grid-area: 1 / 1;
    min-height: 0;
    aspect-ratio: 4 / 5;
}

.news-mosaic .post-card:nth-child(5n + 1) .post-card__media {
    aspect-ratio: 1 / 1.22;
}

.news-mosaic .post-card:nth-child(5n + 2) .post-card__media {
    aspect-ratio: 4 / 3;
}

.news-mosaic .post-card:nth-child(5n + 3) .post-card__media {
    aspect-ratio: 3 / 4;
}

.news-mosaic .post-card:nth-child(5n + 4) .post-card__media {
    aspect-ratio: 1 / 1;
}

.news-mosaic .post-card__media::after {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(16, 17, 21, 0.88));
}

.news-mosaic .post-card__media img {
    height: 100%;
    object-fit: cover;
}

.news-mosaic .post-card__body {
    position: relative;
    z-index: 1;
    grid-area: 1 / 1;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    padding: clamp(22px, 2vw, 30px);
    color: var(--white);
    background: linear-gradient(180deg, transparent 42%, rgba(16, 17, 21, 0.18));
}

.news-mosaic .post-card h3,
.news-mosaic .post-card:nth-child(1) h3,
.news-mosaic .post-card:nth-child(6n + 1) h3,
.news-mosaic .post-card:nth-child(6n + 2) h3,
.news-mosaic .post-card:nth-child(6n + 5) h3,
.news-mosaic .post-card:nth-child(7n + 1) h3,
.news-mosaic .post-card:nth-child(7n + 3) h3,
.news-mosaic .post-card:nth-child(7n + 5) h3,
.news-mosaic .post-card:nth-child(8n + 2) h3,
.news-mosaic .post-card:nth-child(8n + 4) h3,
.news-mosaic .post-card:nth-child(8n + 6) h3,
.news-mosaic .post-card:nth-child(8n + 7) h3,
.news-mosaic .post-card:nth-child(8n + 8) h3,
.news-mosaic .post-card:nth-child(12n + 2) h3,
.news-mosaic .post-card:nth-child(12n + 7) h3,
.news-mosaic .post-card:nth-child(12n + 8) h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.22rem, 1.45vw, 1.78rem);
    line-height: 1.08;
    text-wrap: balance;
}

.news-mosaic .post-card h3 a {
    color: var(--white);
}

.news-mosaic .post-card h3 a:hover,
.news-mosaic .post-card h3 a:focus-visible {
    color: rgba(255, 255, 255, 0.84);
}

.news-mosaic .post-card__button {
    width: fit-content;
    min-height: 40px;
    padding: 0 18px;
    box-shadow: 0 14px 28px rgba(215, 25, 32, 0.24);
}

/* Noticias: microinteracciones acotadas */
.news-mosaic .post-card,
.news-pagination {
    will-change: transform, opacity;
}

body:not(.has-reduced-motion) .news-reveal {
    opacity: 0;
    transform: translateY(8px) scale(0.992);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--news-reveal-delay, 0ms);
}

body:not(.has-reduced-motion) .news-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body:not(.has-reduced-motion) .news-mosaic .post-card:hover {
    transform: translateY(-4px);
}

body:not(.has-reduced-motion) .news-mosaic .post-card {
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

body:not(.has-reduced-motion) .news-mosaic .post-card:hover {
    box-shadow: 0 30px 74px rgba(16, 17, 21, 0.22);
}

body:not(.has-reduced-motion) .news-mosaic .post-card__media img {
    transition: transform 0.42s ease, filter 0.42s ease;
}

body:not(.has-reduced-motion) .news-mosaic .post-card:hover .post-card__media img {
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.035);
}

body:not(.has-reduced-motion) .news-mosaic .post-card__body {
    transition: transform 0.24s ease;
}

body:not(.has-reduced-motion) .news-mosaic .post-card__button,
body:not(.has-reduced-motion) .news-pagination a {
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
}

body:not(.has-reduced-motion) .news-mosaic .post-card__button:hover,
body:not(.has-reduced-motion) .news-pagination a:hover {
    box-shadow: 0 18px 34px rgba(215, 25, 32, 0.3);
    transform: translateY(-1px);
}

.news-mosaic .post-card::after {
    position: absolute;
    left: var(--news-hover-x, 50%);
    top: var(--news-hover-y, 50%);
    z-index: 1;
    width: 320%;
    aspect-ratio: 1;
    content: "";
    border: 0;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(215, 25, 32, 0.28) 0%, rgba(215, 25, 32, 0.24) 58%, rgba(215, 25, 32, 0.16) 78%, transparent 100%);
    box-shadow:
        inset 0 0 54px rgba(215, 25, 32, 0.08),
        0 0 80px rgba(215, 25, 32, 0.16);
    backdrop-filter: saturate(1.12);
    -webkit-backdrop-filter: saturate(1.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    transition:
        opacity 0.32s ease,
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        left 0.18s ease,
        top 0.18s ease;
}

.news-mosaic .post-card.is-news-hovering::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.news-mosaic .post-card__body {
    z-index: 2;
}

.news-mosaic .post-card__media {
    z-index: 0;
}

body:not(.has-reduced-motion) .news-mosaic .post-card.news-reveal,
body:not(.has-reduced-motion) .news-pagination.news-reveal {
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

@media (prefers-reduced-motion: reduce) {
    .news-mosaic .post-card,
    .news-pagination,
    .news-mosaic .post-card__media img,
    .news-mosaic .post-card__body {
        transition: none !important;
        transform: none !important;
    }
}

.model-card__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 6px 0 6px;
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 12px;
}

.model-card__specs div {
    min-width: 0;
    padding: 11px 6px 10px;
    background: #fafbfc;
    text-align: center;
}

.model-card__specs div + div {
    border-left: 1px solid rgba(16, 17, 21, 0.08);
}

.model-card__specs dt {
    margin: 0 0 4px;
    color: #67707b;
    font-size: 0.68rem;
    font-weight: 780;
    line-height: 1.15;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.model-card__specs dd {
    margin: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.16;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-card__monthly {
    min-width: 0;
    margin-top: auto;
    text-align: center;
}

.model-card__monthly strong {
    display: block;
    color: #20242a;
    font-size: clamp(1.08rem, 1vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.18;
}

.model-card__pvp {
    display: block;
    min-width: 0;
    margin-top: 3px;
    overflow: hidden;
    color: #66707b;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-card__bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    overflow: hidden;
    padding: 15px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-align: center;
    transition: gap 0.2s ease;
}

.model-card__bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateX(-101%);
    transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
}

.model-card__bar span,
.model-card__bar svg {
    position: relative;
    z-index: 1;
}

.model-card:hover .model-card__bar::before,
.model-card:focus-within .model-card__bar::before {
    transform: translateX(0);
}

.model-card:hover .model-card__bar {
    gap: 14px;
}

/* ------------------------------------------------------------------
   Ficha de modelo (conversión)
------------------------------------------------------------------ */
.model-page {
    --pad-x: max(20px, calc((100vw - 1500px) / 2 + 18px));
    --model-shell: min(1180px, calc(100% - 36px));
    --model-section-gap: clamp(90px, 9vw, 120px);
    --model-bridge-gap: clamp(48px, 4.5vw, 60px);
    --model-sticky-space: 0px;
}

.model-hero-cinematic {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    padding: clamp(126px, 13vw, 158px) var(--pad-x) clamp(48px, 7vw, 84px);
    color: var(--white);
    background: #08090b;
}

.model-hero-cinematic .public-hero-media,
.model-hero-cinematic .public-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.model-hero-cinematic .public-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.96) contrast(1.05);
}

.model-hero-cinematic .public-hero-shade {
    background:
        radial-gradient(circle at 78% 36%, rgba(255, 255, 255, 0.06), transparent 26%),
        linear-gradient(90deg, rgba(6, 7, 9, 0.82) 0%, rgba(6, 7, 9, 0.42) 48%, rgba(6, 7, 9, 0.16) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.06), rgba(6, 7, 9, 0.7));
}

.model-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.46fr);
    gap: clamp(64px, 6vw, 120px);
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - clamp(126px, 13vw, 158px) - clamp(48px, 7vw, 84px));
}

.model-breadcrumbs {
    width: min(var(--shell-max), calc(100% - (var(--shell-gutter) * 2)));
    margin: 0 auto;
    padding: 18px 0 16px;
    color: var(--muted);
}

.model-breadcrumbs a {
    color: var(--red);
}

.model-breadcrumbs strong {
    color: var(--ink);
}

.model-hero-info h1 {
    color: var(--white);
    font-size: clamp(2.75rem, 5.4vw, 4.85rem);
    font-weight: 680;
    line-height: 1;
    margin: 0;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.model-hero-info h1 span {
    display: inline-block;
}

.model-hero-info h1 span + span {
    display: block;
}

.model-hero-info {
    min-width: 0;
    align-self: center;
    transform: translateY(-8%);
}

.model-hero-info .eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 700;
}

.model-hero-info .eyebrow::before {
    width: 18px;
    height: 2px;
    content: "";
    background: var(--red);
}

.model-hero-info .claim,
.model-hero-info .actions {
    display: none;
}

.model-hero-info .claim {
    max-width: 560px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.5;
}

.model-hero-info .actions {
    margin-top: 0;
}

.model-hero-info .button.secondary {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 18px 34px rgba(0, 0, 0, 0.18);
}

.price-card {
    position: relative;
    width: 100%;
    padding: clamp(28px, 3.4vw, 44px) clamp(22px, 2.4vw, 28px) clamp(24px, 3vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    background:
        radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018) 42%),
        rgba(9, 11, 14, 0.29);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 34px 90px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px) saturate(1.36);
    -webkit-backdrop-filter: blur(30px) saturate(1.36);
    color: var(--white);
}

.price-card .price-eyebrow {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 1vw, 0.98rem);
    font-weight: 760;
    line-height: 1.2;
}

.price-card .price-main {
    display: flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 5px;
    margin: 0 0 12px;
    color: var(--white);
    font-size: clamp(2rem, 3vw, 2.55rem);
    font-weight: 820;
    line-height: 0.98;
    letter-spacing: 0;
    white-space: nowrap;
}

.price-card .price-main span {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
}

.price-card .price-main small {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.16vw, 1.18rem);
    font-weight: 680;
}

.price-card .price-sub {
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(0.95rem, 1.12vw, 1.05rem);
    font-weight: 560;
    line-height: 1.45;
}

.price-card .price-sub > span:first-child {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 680;
}

.price-plus-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 34px;
}

.plus-option {
    display: flex;
    min-height: 104px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 18px 32px rgba(0, 0, 0, 0.16);
}

.plus-option strong {
    display: block;
    color: var(--red);
    font-size: 1.08rem;
    font-weight: 760;
    line-height: 1.08;
    text-align: center;
}

.plus-option em {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-style: normal;
    font-weight: 680;
    line-height: 1.08;
    text-align: center;
}

.price-card .price-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 18px;
}

.price-card .price-meta span {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.price-card .price-meta small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.74rem;
    text-transform: none;
}

.price-card .price-meta strong {
    color: var(--white);
    font-weight: 700;
}

.price-card .price-actions {
    display: grid;
    gap: 14px;
    margin-bottom: 0;
}

.price-card .price-actions .button {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    font-size: 1rem;
}

.price-card .price-actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 18px 34px rgba(0, 0, 0, 0.18);
}

.price-card .price-trust {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    list-style: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.price-card .price-trust li {
    position: relative;
    padding-left: 22px;
}

.price-card .price-trust li::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 14px;
    content: "";
    transform: translateY(-50%);
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, var(--red) 35%, transparent 36%);
}

.promotions-grid__empty {
    grid-column: 1 / -1;
    padding: 28px 0;
    color: var(--muted);
    font-size: 1rem;
}

/* ============================================================
   Banner promocional de la price-card (admin > Promociones)
   ============================================================ */

/* Con promo activa el rojo queda reservado para el banner:
   el CTA principal pasa a blanco sólido y el secundario a ghost. */
.price-card.has-promo .price-actions .button.primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 241, 244, 0.96));
    color: var(--ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 18px 34px rgba(0, 0, 0, 0.2);
}

.price-card.has-promo .price-actions .button.primary:hover,
.price-card.has-promo .price-actions .button.primary:focus {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(228, 232, 237, 0.98));
}

.price-card.has-promo .price-actions .button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: none;
}

.price-card.has-promo .price-actions .button.secondary:hover,
.price-card.has-promo .price-actions .button.secondary:focus {
    background: rgba(255, 255, 255, 0.2);
}

/* Sin chevron, el contenido de cinta y dos pisos se centra para no dejar hueco a la derecha */
.price-promo--ribbon,
.price-promo--banded .price-promo__main {
    justify-content: center;
}

.price-promo--ribbon .price-promo__txt,
.price-promo--banded .price-promo__txt {
    flex: 0 1 auto;
}

/* Distintivo «Promoción» sobre las fotos de la galería cuando el modelo tiene promo */
.model-gallery__promo-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e8242c, var(--red-dark));
    color: var(--white);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 8px 18px rgba(215, 25, 32, 0.35);
    pointer-events: none;
}

/* Mismo distintivo sobre la tarjeta de «Colores y variantes» */
.model-colours__promo-flag {
    top: 16px;
    right: 16px;
    z-index: 3;
}

/* En móvil el banner añade altura: la tarjeta con promo sube para no cortar los CTA. */
@media (max-width: 760px) {
    .price-card.has-promo {
        margin-top: clamp(12px, 3svh, 28px);
    }

    .price-card.has-promo .price-promo {
        margin: -6px 0 20px;
    }

    .price-card.has-promo .price-plus-options {
        margin-bottom: 20px;
    }
}
.price-promo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: -10px 0 28px;
    color: var(--white);
    overflow: hidden;
}

.price-promo__txt {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}

.price-promo__txt small {
    display: block;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.price-promo__txt strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 750;
}

.price-promo__ico {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.price-promo__amount {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 12px 16px;
    color: var(--white);
    font-size: 1.14rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
}

.price-promo__amount small {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Brillo animado compartido */
.price-promo--ribbon::before,
.price-promo--banded .price-promo__main::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -25%;
    width: 56px;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-18deg);
    animation: price-promo-sheen 3.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes price-promo-sheen {
    0%, 55% { left: -25%; }
    85%, 100% { left: 115%; }
}

@media (prefers-reduced-motion: reduce) {
    .price-promo--ribbon::before,
    .price-promo--banded .price-promo__main::before {
        animation: none;
        display: none;
    }
}

/* V1 — Cinta roja sólida */
.price-promo--ribbon {
    padding: 13px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8242c 0%, var(--red) 46%, var(--red-dark) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 14px 30px rgba(215, 25, 32, 0.34);
}

/* V4 — Cupón con troquel */
.price-promo--coupon {
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 18px 32px rgba(0, 0, 0, 0.16);
}

.price-promo--coupon .price-promo__amount {
    background: linear-gradient(160deg, #e8242c, var(--red-dark));
}

.price-promo--coupon .price-promo__divider {
    position: relative;
    flex: 0 0 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.35);
}

.price-promo--coupon .price-promo__divider::before,
.price-promo--coupon .price-promo__divider::after {
    content: "";
    position: absolute;
    left: -6px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #20242a;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.price-promo--coupon .price-promo__divider::before { top: -6px; }
.price-promo--coupon .price-promo__divider::after { bottom: -6px; }

.price-promo--coupon .price-promo__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 10px 14px;
}

.price-promo--coupon .price-promo__txt small {
    color: #ff5a60;
}

/* V7 — Cinta con importe segmentado */
.price-promo--split {
    align-items: stretch;
    gap: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8242c 0%, var(--red) 46%, var(--red-dark) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 14px 30px rgba(215, 25, 32, 0.34);
}

.price-promo--split .price-promo__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 12px 14px;
}

.price-promo--split .price-promo__amount {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(0, 0, 0, 0.26);
}

/* V10 — Banner de dos pisos */
.price-promo--banded {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 14px 30px rgba(215, 25, 32, 0.3);
}

.price-promo--banded .price-promo__main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e8242c 0%, var(--red) 46%, var(--red-dark) 100%);
    overflow: hidden;
}

.price-promo--banded .price-promo__ico {
    width: 32px;
    height: 32px;
}

.price-promo--banded .price-promo__foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(0, 0, 0, 0.42);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

/* DNA stats */
.dna-stats {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(54px, 7vw, 86px) 0 clamp(36px, 5vw, 60px);
}

.dna-stats__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.dna-stats__heading h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.dna-stats__heading p {
    margin: 0;
    color: var(--muted);
}

.dna-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.dna-stat {
    padding: 26px 24px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 50px rgba(16, 17, 21, 0.06);
}

.dna-stat span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.dna-stat strong {
    display: block;
    margin: 10px 0 4px;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
}

.dna-stat em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 0.86rem;
}

/* Specs en banda oscura */
.specs-band {
    padding: clamp(40px, 5vw, 64px) 0;
    color: var(--white);
    background:
        radial-gradient(circle at 7% 0%, rgba(215, 25, 32, 0.16), transparent 24rem),
        radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.055), transparent 30rem),
        linear-gradient(180deg, #07090c 0%, #101318 100%);
}

.specs-band__heading {
    width: min(1320px, calc(100% - 36px));
    max-width: none;
    margin: 0 auto 18px;
}

.specs-band__heading h2 {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.specs-band__heading .eyebrow {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.specs-band__groups {
    width: min(1320px, calc(100% - 36px));
    max-width: none;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(9, 11, 15, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 28px 80px rgba(0, 0, 0, 0.34);
}

.specs-band__group {
    background:
        linear-gradient(180deg, rgba(17, 20, 26, 0.92), rgba(12, 15, 20, 0.94)),
        rgba(12, 15, 20, 0.94);
    transition: background 0.22s ease;
}

.specs-band__group + .specs-band__group {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.specs-band__group summary {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 34px;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 0 clamp(18px, 3vw, 32px);
    color: var(--white);
    cursor: pointer;
    font-size: clamp(1rem, 1.25vw, 1.12rem);
    font-weight: 690;
    list-style: none;
}

.specs-band__group summary::before {
    position: absolute;
    left: clamp(18px, 3vw, 32px);
    bottom: 0;
    width: 48px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), rgba(215, 25, 32, 0));
    content: "";
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: left center;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.specs-band__group summary::-webkit-details-marker {
    display: none;
}

.specs-band__group summary::after {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    content: "+";
    font-size: 1.35rem;
    font-weight: 760;
    line-height: 1;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.specs-band__group[open] summary {
    background:
        linear-gradient(90deg, rgba(215, 25, 32, 0.085), transparent 38%),
        rgba(255, 255, 255, 0.018);
}

.specs-band__group[open] summary::before {
    opacity: 1;
    transform: scaleX(1);
}

.specs-band__group[open] summary::after {
    content: "-";
    border-color: rgba(215, 25, 32, 0.34);
    background: rgba(215, 25, 32, 0.14);
    color: #fff;
}

.specs-band__group summary small {
    display: inline-grid;
    min-width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
}

.specs-band__table {
    padding: clamp(10px, 1.6vw, 18px) clamp(18px, 3vw, 32px) clamp(24px, 2.8vw, 34px);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background:
        radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.06), transparent 22rem),
        rgba(255, 255, 255, 0.012);
    columns: 2;
    column-gap: clamp(40px, 5vw, 76px);
    column-rule: 1px solid rgba(255, 255, 255, 0.07);
}

.specs-band__group[open] .specs-band__table {
    animation: specs-rows-in 0.34s ease both;
}

@keyframes specs-rows-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.specs-band__row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(130px, 36%) minmax(0, 1fr);
    align-items: baseline;
    gap: 4px 20px;
    padding: 13px 4px 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    break-inside: avoid;
    color: rgba(255, 255, 255, 0.86);
    transition: background 0.18s ease;
}

.specs-band__row::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 0;
    border-radius: 999px;
    background: var(--red);
    content: "";
    transform: translateY(-50%);
    transition: height 0.2s ease;
}

.specs-band__row span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.73rem;
    font-weight: 650;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-transform: uppercase;
    transition: color 0.18s ease;
}

.specs-band__row strong {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

/* Grupo de claves: cifras grandes tipo cuadro de mandos, sin cajas */
.specs-band__group:first-child .specs-band__table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    row-gap: 26px;
    padding-top: clamp(22px, 2.8vw, 32px);
    padding-bottom: clamp(24px, 3vw, 36px);
    columns: auto;
    column-rule: none;
}

.specs-band__group:first-child .specs-band__row {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: 4px 22px 6px;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.specs-band__group:first-child .specs-band__row:first-child {
    padding-left: 4px;
    border-left: 0;
}

.specs-band__group:first-child .specs-band__row::before {
    display: none;
}

.specs-band__group:first-child .specs-band__row span::before {
    display: inline-block;
    width: 14px;
    height: 2px;
    margin-right: 9px;
    border-radius: 999px;
    background: var(--red);
    content: "";
    vertical-align: middle;
}

.specs-band__group:first-child .specs-band__row strong {
    font-size: clamp(1.3rem, 1.8vw, 1.68rem);
    font-weight: 780;
    letter-spacing: -0.01em;
    line-height: 1.16;
}

@media (hover: hover) and (pointer: fine) {
    .specs-band__group summary:hover::after {
        border-color: rgba(255, 255, 255, 0.26);
        background: rgba(255, 255, 255, 0.075);
        transform: translateY(-1px);
    }

    .specs-band__row:hover {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 78%);
    }

    .specs-band__row:hover::before {
        height: 60%;
    }

    .specs-band__row:hover span {
        color: rgba(255, 255, 255, 0.72);
    }
}

@media (prefers-reduced-motion: reduce) {
    .specs-band__group[open] .specs-band__table {
        animation: none;
    }
}

@media (max-width: 1100px) {
    .specs-band__table {
        column-gap: clamp(30px, 4vw, 48px);
    }

    .specs-band__row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* CTA roja */
.cta-band-red {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    padding: clamp(34px, 4vw, 52px) max(18px, calc((100% - 1180px) / 2));
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(215, 25, 32, 0.94), rgba(159, 17, 23, 0.96)),
        var(--red);
}

.cta-band-red h2 {
    color: var(--white);
    margin: 0;
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
}

.cta-band-red p {
    color: rgba(255, 255, 255, 0.84);
    margin: 6px 0 0;
}

.cta-band-red .actions {
    margin: 0;
    justify-content: flex-end;
}

.cta-band-red--honda-plus {
    position: relative;
    grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(24px, 4.4vw, 64px);
    overflow: hidden;
    padding-top: clamp(38px, 4.8vw, 64px);
    padding-bottom: clamp(38px, 4.8vw, 64px);
}

.cta-band-red--honda-plus::before {
    position: absolute;
    inset: -30% auto auto 48%;
    width: min(580px, 48vw);
    aspect-ratio: 1;
    content: "";
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 66%);
    transform: translateY(-16%);
}

.model-honda-plus-promo__intro,
.model-honda-plus-promo__services {
    position: relative;
    z-index: 1;
}

.model-honda-plus-promo__intro {
    display: flex;
    min-width: 0;
    max-width: 540px;
    flex-direction: column;
    justify-content: center;
}

.model-honda-plus-promo__eyebrow {
    display: inline-grid;
    gap: 10px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.model-honda-plus-promo__eyebrow::before {
    display: none;
}

.model-honda-plus-promo__eyebrow::after {
    display: block;
    width: 30px;
    height: 2px;
    content: "";
    background: currentColor;
}

.cta-band-red--honda-plus h2 {
    max-width: 620px;
    font-size: clamp(1.95rem, 3.2vw, 3.25rem);
    text-wrap: balance;
}

.cta-band-red--honda-plus .model-honda-plus-promo__intro > p:not(.model-honda-plus-promo__eyebrow) {
    max-width: 520px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.18vw, 1.1rem);
    line-height: 1.55;
}

.model-honda-plus-promo__benefits {
    display: grid;
    gap: 9px;
    max-width: 540px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.model-honda-plus-promo__benefits li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.95rem, 1.08vw, 1.04rem);
    font-weight: 620;
    line-height: 1.38;
}

.model-honda-plus-promo__benefits li::before {
    position: absolute;
    top: 0.56em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    content: "";
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.cta-band-red--honda-plus .actions {
    justify-content: flex-start;
    margin-top: 24px;
}

.model-honda-plus-promo__services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-width: 0;
}

.model-honda-plus-service {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(16px, 2vw, 24px);
    min-width: 0;
    min-height: 136px;
    padding: clamp(18px, 2vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09)),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 22px 48px rgba(76, 4, 8, 0.16);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.model-honda-plus-service__media {
    grid-row: 1 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    min-height: 58px;
    margin-bottom: 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
}

.model-honda-plus-service__media img {
    display: block;
    width: auto;
    max-width: 94px;
    height: 42px;
    object-fit: contain;
    object-position: center;
}

.model-honda-plus-service__label,
.model-honda-plus-service h3,
.model-honda-plus-service p,
.model-honda-plus-service__list {
    grid-column: 2;
}

.model-honda-plus-service__label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.model-honda-plus-service h3 {
    margin: 7px 0 8px;
    color: var(--white);
    font-size: clamp(1.08rem, 1.22vw, 1.28rem);
    line-height: 1.12;
}

.model-honda-plus-service p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.52;
}

.model-honda-plus-service__list {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.model-honda-plus-service__list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    font-weight: 590;
    line-height: 1.35;
}

.model-honda-plus-service__list li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.13);
    content: "";
    transform: translateY(-50%);
}

@media (max-width: 1080px) {
    .cta-band-red--honda-plus {
        grid-template-columns: 1fr;
    }

    .model-honda-plus-promo__intro {
        max-width: 760px;
    }

    .cta-band-red--honda-plus .actions {
        justify-content: flex-start;
    }
}

/* FAQ accordion */
.faq-section {
    width: var(--model-shell, min(1180px, calc(100% - 36px)));
    margin: 0 auto;
    padding: clamp(46px, 5.8vw, 76px) 0;
}

.faq-section h2 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
}

.faq-section .eyebrow.dark {
    margin: 0 0 12px;
}

.faq-section__note {
    max-width: 760px;
    margin: -6px 0 22px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.faq-item {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    border-top: 1px solid rgba(16, 17, 21, 0.1);
}

.faq-item:last-of-type {
    border-bottom: 1px solid rgba(16, 17, 21, 0.1);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--red);
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
}

/* Microanimaciones de ficha de modelo: microanimaciones tipo producto premium */
.model-page--premium-motion .model-hero-info .eyebrow,
.model-page--premium-motion .model-hero-info h1,
.model-page--premium-motion .price-card {
    animation: premium-rise-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.model-page--premium-motion .model-hero-info h1 {
    animation-delay: 0.08s;
}

.model-page--premium-motion .price-card {
    animation-delay: 0.34s;
}

.model-page--premium-motion.premium-motion-ready .premium-motion-item {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.model-page--premium-motion.premium-motion-ready .premium-motion-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.model-page--premium-motion .model-highlights__arrow,
.model-page--premium-motion .model-gallery__arrow {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 28px rgba(16, 17, 21, 0.08);
    transition:
        background 0.12s ease,
        border-color 0.12s ease,
        color 0.12s ease,
        opacity 0.12s ease,
        transform 0.18s ease;
}

.model-page--premium-motion .model-highlights__arrow[disabled],
.model-page--premium-motion .model-gallery__arrow[disabled] {
    opacity: 0.34;
}

.model-page--premium-motion .faq-item summary {
    transition: color 0.18s ease, padding 0.28s ease;
}

.model-page--premium-motion .faq-item[open] summary {
    padding-bottom: 12px;
    color: var(--red);
}

.model-page--premium-motion .faq-item p {
    animation: premium-faq-open 0.32s ease both;
}

@media (hover: hover) and (pointer: fine) {
    .model-page--premium-motion .model-highlight,
    .model-page--premium-motion .model-gallery__tile,
    .model-page--premium-motion .model-honda-plus-service,
    .model-page--premium-motion .model-seo-card {
        transition:
            transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.3s ease,
            border-color 0.3s ease,
            filter 0.3s ease;
    }

    .model-page--premium-motion .model-highlight:hover,
    .model-page--premium-motion .model-gallery__tile:hover,
    .model-page--premium-motion .model-honda-plus-service:hover,
    .model-page--premium-motion .model-seo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 62px rgba(16, 17, 21, 0.13);
    }

    .model-page--premium-motion .model-gallery__tile:hover img {
        transform: scale(1.035);
    }
}

@keyframes premium-rise-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-content-appear {
    from {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes premium-faq-open {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .model-page--premium-motion .model-hero-info .eyebrow,
    .model-page--premium-motion .model-hero-info h1,
    .model-page--premium-motion .price-card,
    .model-page--premium-motion .faq-item p {
        animation: none;
    }

    .model-page--premium-motion.premium-motion-ready .premium-motion-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Microanimaciones Apple-like para landings publicas */
.public-premium-motion.public-premium-motion-ready .public-motion-item {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.public-premium-motion.public-premium-motion-ready .public-motion-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.public-premium-motion.public-premium-motion-ready .hero-progress,
.public-premium-motion.public-premium-motion-ready .hero-progress.public-motion-item {
    opacity: 1;
    transform: none;
    transition: none;
}

.public-premium-motion.public-premium-motion-primed .hero-content > *,
.public-premium-motion.public-premium-motion-primed .public-hero-content > *,
.public-premium-motion.public-premium-motion-primed .news-landing-hero__copy > *,
.public-premium-motion.public-premium-motion-primed .legal-hero__copy > * {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(18px);
}

.public-premium-motion.public-premium-motion-ready .hero-content .public-motion-item.is-visible,
.public-premium-motion.public-premium-motion-ready .public-hero-content .public-motion-item.is-visible,
.public-premium-motion.public-premium-motion-ready .news-landing-hero__copy .public-motion-item.is-visible,
.public-premium-motion.public-premium-motion-ready .legal-hero__copy .public-motion-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.public-premium-motion.public-premium-motion-ready .hero-content > *,
.public-premium-motion.public-premium-motion-ready .public-hero-content > *,
.public-premium-motion.public-premium-motion-ready .news-landing-hero__copy > *,
.public-premium-motion.public-premium-motion-ready .legal-hero__copy > * {
    animation: hero-content-appear 0.84s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.public-premium-motion.public-premium-motion-ready .hero-content .eyebrow,
.public-premium-motion.public-premium-motion-ready .public-hero-content .eyebrow,
.public-premium-motion.public-premium-motion-ready .news-landing-hero__copy .eyebrow,
.public-premium-motion.public-premium-motion-ready .legal-hero__copy .eyebrow {
    animation-delay: 0.1s;
}

.public-premium-motion.public-premium-motion-ready .hero-content h1,
.public-premium-motion.public-premium-motion-ready .public-hero-content h1,
.public-premium-motion.public-premium-motion-ready .news-landing-hero__copy h1,
.public-premium-motion.public-premium-motion-ready .legal-hero__copy h1 {
    animation-delay: 0.18s;
}

.public-premium-motion.public-premium-motion-ready .hero-content .hero-copy,
.public-premium-motion.public-premium-motion-ready .public-hero-content p:not(.eyebrow),
.public-premium-motion.public-premium-motion-ready .news-landing-hero__copy p:not(.eyebrow),
.public-premium-motion.public-premium-motion-ready .legal-hero__copy p:not(.eyebrow) {
    animation-delay: 0.28s;
}

.public-premium-motion.public-premium-motion-ready .hero-content .hero-actions,
.public-premium-motion.public-premium-motion-ready .public-hero-content .actions,
.public-premium-motion.public-premium-motion-ready .public-hero-content .careers-hero__actions,
.public-premium-motion.public-premium-motion-ready .news-landing-hero__copy .actions,
.public-premium-motion.public-premium-motion-ready .legal-hero__copy .actions {
    animation-delay: 0.38s;
}

.public-premium-motion.public-premium-motion-ready .hero-content .hero-progress {
    animation-delay: 0.48s;
}

.public-premium-motion.public-premium-motion-primed .hero-media > img,
.public-premium-motion.public-premium-motion-primed .public-hero-media img,
.public-premium-motion.public-premium-motion-primed .news-landing-hero__media img {
    transform: scale(1.018);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
}

.public-premium-motion.public-premium-motion-ready .hero-media > img,
.public-premium-motion.public-premium-motion-ready .public-hero-media img,
.public-premium-motion.public-premium-motion-ready .news-landing-hero__media img {
    transform: scale(1);
}

.public-premium-motion.public-premium-motion-ready .public-hero-media img,
.public-premium-motion.public-premium-motion-ready .news-landing-hero__media img {
    animation: hero-first-focus 1.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.model-page--premium-motion.premium-motion-ready .model-hero-cinematic .public-hero-media img {
    animation: model-hero-first-focus 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.public-premium-motion .public-motion-card {
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        filter 0.3s ease;
}

.public-premium-motion .public-motion-card img {
    transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.34s ease;
}

.public-premium-motion .public-motion-paddle {
    transition:
        background 0.12s ease,
        border-color 0.12s ease,
        color 0.12s ease,
        opacity 0.12s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .public-premium-motion .public-motion-card:hover {
        transform: translateY(-4px);
    }

    .public-premium-motion .public-motion-card:hover img {
        filter: saturate(1.04) contrast(1.03);
        transform: scale(1.025);
    }

    .public-premium-motion .public-motion-paddle:hover {
        transform: translateY(-1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-premium-motion.public-premium-motion-ready .public-motion-item,
    .public-premium-motion.public-premium-motion-primed .hero-content > *,
    .public-premium-motion.public-premium-motion-primed .public-hero-content > *,
    .public-premium-motion.public-premium-motion-primed .news-landing-hero__copy > *,
    .public-premium-motion.public-premium-motion-primed .legal-hero__copy > *,
    .public-premium-motion.public-premium-motion-primed .hero-media > img,
    .public-premium-motion.public-premium-motion-primed .public-hero-media img,
    .public-premium-motion.public-premium-motion-primed .news-landing-hero__media img,
    .hero-slider.is-ready .hero-slide.is-active,
    .model-page--premium-motion.premium-motion-ready .model-hero-cinematic .public-hero-media img,
    .public-premium-motion .public-motion-card,
    .public-premium-motion .public-motion-card img,
    .public-premium-motion .public-motion-paddle {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* Sticky CTA bar */
.model-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 25;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: min(1180px, calc(100% - 32px));
    padding: 12px 14px 12px 18px;
    border: var(--site-glass-border);
    border-radius: 22px;
    background: var(--site-glass-bg);
    box-shadow: var(--site-glass-shadow);
    backdrop-filter: var(--site-glass-backdrop);
    -webkit-backdrop-filter: var(--site-glass-backdrop);
    color: var(--white);
    transform: translateX(-50%) translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.model-sticky-cta.is-active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.model-sticky-cta .info {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.model-sticky-cta .info strong {
    color: var(--white);
    font-weight: 500;
    font-size: 0.98rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-sticky-cta__pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 12px;
    min-width: 0;
}

.model-sticky-cta .info span,
.model-sticky-cta__pricing small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
}

.model-sticky-cta .info span {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
}

.model-sticky-cta__pricing small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-sticky-cta .actions {
    display: flex;
    gap: 8px;
    margin: 0;
}

.model-sticky-cta .button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.86rem;
    box-shadow: none;
}

@media (min-width: 900px) and (max-height: 820px) {
    .model-hero-cinematic {
        padding-top: 116px;
        padding-bottom: 30px;
    }

    .model-hero-grid {
        min-height: calc(100vh - 146px);
        grid-template-columns: minmax(500px, 1fr) minmax(380px, 0.52fr);
        gap: clamp(42px, 5vw, 84px);
    }

    .model-hero-info {
        transform: translateY(-4%);
    }

    .price-card {
        max-width: 462px;
        justify-self: end;
        padding: 26px 28px 22px;
        border-radius: 26px;
        transform: translateX(-34px);
    }

    .price-card .price-eyebrow {
        margin-bottom: 4px;
        font-size: 0.82rem;
    }

    .price-card .price-main {
        gap: 8px;
        margin-bottom: 8px;
        font-size: clamp(1.5rem, 5.6vw, 2.1rem);
    }

    .price-card .price-main small {
        font-size: 0.92rem;
    }

    .price-card .price-sub {
        margin-bottom: 22px;
        font-size: 1rem;
    }

    .price-plus-options {
        gap: 10px;
        margin-bottom: 22px;
    }

    .plus-option {
        min-height: 84px;
        padding: 13px 10px;
        border-radius: 14px;
    }

    .plus-option strong {
        font-size: 0.98rem;
    }

    .plus-option em {
        font-size: 0.92rem;
    }

    .price-card .price-actions {
        gap: 12px;
        margin-bottom: 14px;
    }

    .price-card .price-actions .button {
        min-height: 50px;
        border-radius: 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 760px) {
    .model-hero-cinematic {
        min-height: auto;
        padding: calc(var(--site-header-bottom, 74px) + 48px) 20px 30px;
    }

    .model-hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: auto;
    }

    .model-hero-info {
        transform: none;
    }

    .model-hero-info h1 {
        font-size: clamp(2.25rem, 10vw, 3rem);
    }

    .price-card {
        margin-top: 15px;
        padding: 22px 20px 20px;
        min-width: 0;
    }

    .price-card .price-main {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }

    .price-plus-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .plus-option {
        min-height: 70px;
        padding: 12px 6px;
        gap: 2px;
    }

    .plus-option strong {
        font-size: 0.86rem;
        line-height: 1.08;
    }

    .plus-option em {
        font-size: 0.82rem;
        line-height: 1.08;
    }

    .price-card .price-meta {
        grid-template-columns: 1fr;
    }

    .dna-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .specs-band__table {
        columns: 1;
    }

    .specs-band__group:first-child .specs-band__table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 22px;
    }

    .specs-band__group:first-child .specs-band__row {
        padding-right: 8px;
        padding-left: 16px;
    }

    .specs-band__group:first-child .specs-band__row:nth-child(odd) {
        padding-left: 4px;
        border-left: 0;
    }

    .specs-band__group:first-child .specs-band__row:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.09);
    }

    .specs-band__row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding-block: 12px;
    }

    .cta-band-red {
        grid-template-columns: 1fr;
    }

    .cta-band-red .actions {
        justify-content: stretch;
    }

    .cta-band-red .button {
        width: 100%;
    }

    .cta-band-red--honda-plus {
        gap: 30px;
        padding-top: 44px;
        padding-bottom: 48px;
    }

    .model-honda-plus-promo__eyebrow {
        margin-bottom: 16px;
        font-size: 0.84rem;
        line-height: 1.12;
    }

    .cta-band-red--honda-plus h2 {
        max-width: 12ch;
        font-size: clamp(2.05rem, 9.6vw, 2.72rem);
        line-height: 1.04;
    }

    .cta-band-red--honda-plus .model-honda-plus-promo__intro > p:not(.model-honda-plus-promo__eyebrow) {
        margin-top: 16px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .model-honda-plus-promo__benefits {
        gap: 11px;
        margin-top: 20px;
    }

    .cta-band-red--honda-plus .actions {
        justify-content: stretch;
        margin-top: 26px;
    }

    .model-honda-plus-promo__services {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .model-honda-plus-service {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .model-honda-plus-service__media {
        grid-row: auto;
        margin-bottom: 16px;
    }

    .model-honda-plus-service__label,
    .model-honda-plus-service h3,
    .model-honda-plus-service p,
    .model-honda-plus-service__list {
        grid-column: 1;
    }

    .model-page--premium-motion.premium-motion-ready .cta-band-red--honda-plus .premium-motion-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .model-sticky-cta {
        bottom: 8px;
        width: calc(100% - 16px);
        padding: 10px 10px 10px 14px;
        border-radius: 18px;
    }

    .model-sticky-cta .actions .button {
        padding: 0 12px;
    }
}

@media (max-width: 760px) and (max-height: 700px) {
    .model-hero-cinematic {
        padding-top: calc(var(--site-header-bottom, 74px) + 38px);
        padding-bottom: 22px;
    }

    .model-hero-grid {
        gap: 16px;
    }

    .model-hero-info h1 {
        font-size: clamp(2.15rem, 9.4vw, 2.75rem);
    }

    .price-card {
        margin-top: 30px;
        padding: 20px 18px 18px;
        border-radius: 28px;
    }

    .price-card .price-main {
        margin-bottom: 8px;
        font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    }

    .price-card .price-sub {
        margin-bottom: 22px;
        font-size: 0.96rem;
        line-height: 1.35;
    }

    .price-plus-options {
        margin-bottom: 22px;
    }

    .plus-option {
        min-height: 64px;
        padding: 10px 6px;
    }

    .price-card .price-actions {
        gap: 10px;
        margin-bottom: 0;
    }

    .price-card .price-actions .button {
        min-height: 52px;
    }
}

/* Model page hero (legacy) */
.model-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(120px, 14vw, 170px) 0 56px;
}

.model-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
    align-items: center;
    gap: 34px;
}

.model-hero h1 {
    color: var(--ink);
}

.model-hero p {
    color: var(--muted);
    max-width: 560px;
}

.model-hero img {
    width: 100%;
    max-height: 560px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 22px 70px rgba(16, 17, 21, 0.16);
}

.model-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.model-facts article {
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
}

.model-facts span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.86rem;
}

.model-facts strong {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.15;
}

.variant-grid {
    grid-template-columns: repeat(3, minmax(0, 280px));
    justify-content: center;
}

.variant-grid article {
    overflow: hidden;
    display: grid;
    gap: 0;
    padding-bottom: 16px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 14px;
    background: var(--white);
}

.variant-grid img {
    aspect-ratio: 4 / 3;
    background: #e8ecef;
}

.variant-grid h3,
.variant-grid p {
    margin: 0;
    padding: 0 14px;
}

.variant-grid h3 {
    padding-top: 14px;
    text-align: left;
    font-weight: 700;
    line-height: 1.15;
}

.colors-band .section-heading {
    text-align: center;
}

.colors-band .section-heading h2 {
    width: 100%;
}

.model-colours {
    width: var(--model-shell, min(1180px, calc(100% - 36px)));
    margin: 0 auto;
    padding: var(--model-bridge-gap) 0;
}

.model-colours__heading {
    display: grid;
    max-width: 740px;
    gap: 0;
    margin-bottom: 20px;
}

.model-colours__heading .eyebrow.dark {
    position: relative;
    margin: 0 0 12px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
}

.model-colours__heading .eyebrow.dark::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: currentColor;
}

.model-colours__heading h2 {
    max-width: 780px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.model-colours__showroom {
    position: relative;
    display: grid;
    width: min(860px, 100%);
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 2.05 / 1;
    border: 1px solid rgba(16, 17, 21, 0.07);
    border-radius: 24px 24px 16px 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(233, 238, 243, 0.68)),
        var(--mist);
    box-shadow: 0 18px 54px rgba(16, 17, 21, 0.08);
    isolation: isolate;
}

.model-colours__showroom::before,
.model-colours__showroom::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.model-colours__showroom::before {
    z-index: -3;
    background:
        radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.96), transparent 26%),
        radial-gradient(circle at 18% 16%, rgba(215, 25, 32, 0.09), transparent 25%),
        radial-gradient(circle at 78% 82%, rgba(201, 185, 156, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff, #e9eef3 64%);
}

.model-colours__showroom::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 17, 21, 0.04)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14));
}

.model-colours__stage {
    position: relative;
    display: grid;
    min-height: 0;
    place-items: center;
    padding: 0;
    isolation: isolate;
}

.model-colours__stage::before {
    position: absolute;
    inset: 12% 8% 20%;
    z-index: -2;
    content: "";
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.22) 58%, transparent 70%);
    filter: blur(2px);
    transform: translateY(20px) scale(0.92);
    transition:
        opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 2s cubic-bezier(0.22, 1, 0.36, 1),
        filter 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.model-colours__stage::after {
    position: absolute;
    right: 13%;
    bottom: 24%;
    left: 14%;
    z-index: -1;
    height: 34px;
    content: "";
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(16, 17, 21, 0.22), rgba(16, 17, 21, 0) 68%);
    opacity: 0.68;
    filter: blur(6px);
    transform: translateY(28px) scaleX(0.9);
    transition:
        opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.model-colours__stage.is-switching::before {
    opacity: 1;
    filter: blur(0);
    transform: translateY(16px) scale(0.98);
}

.model-colours__stage.is-switching::after {
    opacity: 0.46;
    transform: translateY(30px) scaleX(0.82);
}

.model-colours__frame {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    place-items: center;
}

.model-colours__image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: min(84%, 800px);
    max-height: 72%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    filter: saturate(0.98) contrast(1.03);
    transform: translate(-50%, -50%) scale(1);
    transition:
        opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
        filter 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.model-colours__image.is-active {
    opacity: 1;
    filter: saturate(1.02) contrast(1.05);
    transform: translate(-50%, -50%) scale(1);
}

.model-colours__image.is-transparent {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: clamp(10px, 1.6vw, 22px);
    object-fit: contain;
}

.model-colours__panel {
    position: relative;
    z-index: 2;
    width: min(860px, 100%);
    margin: 10px auto 0;
}

.model-colours__selectors {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.54) 44%),
        rgba(255, 255, 255, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 26px 80px rgba(16, 17, 21, 0.16);
    backdrop-filter: blur(30px) saturate(1.38);
    -webkit-backdrop-filter: blur(30px) saturate(1.38);
}

.model-colours__selectors::before {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 34%),
        radial-gradient(circle at 90% 8%, rgba(215, 25, 32, 0.08), transparent 18%);
    opacity: 0.82;
    pointer-events: none;
}

.model-colours__options {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 7px;
    --colour-active-left: 0px;
    --colour-active-top: 0px;
    --colour-active-width: 0px;
    --colour-active-height: 0px;
}

.model-colours__options::before {
    position: absolute;
    z-index: -1;
    top: var(--colour-active-top);
    left: var(--colour-active-left);
    width: var(--colour-active-width);
    height: var(--colour-active-height);
    border: 1px solid rgba(215, 25, 32, 0.62);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.08), rgba(255, 255, 255, 0.96)),
        rgba(255, 255, 255, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 16px 38px rgba(215, 25, 32, 0.12);
    content: "";
    opacity: var(--colour-active-opacity, 1);
    pointer-events: none;
    transition:
        top 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        left 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease;
}

.model-colours__button {
    position: relative;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 8px 12px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.model-colours__button::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(215, 25, 32, 0.1), transparent 48%);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.model-colours__button:hover,
.model-colours__button:focus-visible {
    border-color: rgba(215, 25, 32, 0.28);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(16, 17, 21, 0.09);
    outline: none;
    transform: translateY(-1px);
}

.model-colours__button:hover::before,
.model-colours__button:focus-visible::before {
    opacity: 1;
}

.model-colours__button.is-active {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.model-colours__swatch {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(16, 18, 23, 0.16);
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(16, 17, 21, 0.16);
}

.model-colours__button:hover .model-colours__swatch,
.model-colours__button:focus-visible .model-colours__swatch {
    box-shadow: 0 12px 28px rgba(16, 17, 21, 0.18);
}

.model-colours__name,
.model-colours__code {
    position: relative;
    z-index: 1;
    display: block;
}

.model-colours__name {
    overflow-wrap: anywhere;
    font-size: 0.92rem;
    font-weight: 700;
}

.model-colours__code {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.78rem;
}

.model-colours__pricing {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 249, 0.78)),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 48px rgba(16, 17, 21, 0.08);
}

.model-colours__pricing-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.model-colours__pricing-controls label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
}

.model-colours__pricing-controls select {
    width: 100%;
    min-height: 42px;
    padding: 0 34px 0 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font: inherit;
    font-size: 0.9rem;
}

.model-colours__price-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.model-colours__price-card > div {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(16, 17, 21, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.model-colours__price-card span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 750;
}

.model-colours__price-card strong {
    color: var(--ink);
    font-size: clamp(1rem, 1.4vw, 1.28rem);
    font-weight: 850;
    line-height: 1.1;
}

.model-colours__price-card p {
    grid-column: 1 / -1;
    min-height: 1.2em;
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.model-colours__panel {
    display: grid;
    gap: 10px;
}

.model-colours__selectors {
    padding: 6px;
    border-radius: 24px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 18px 54px rgba(16, 17, 21, 0.12);
}

.model-colours__options {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px;
}

.model-colours__options::before {
    border-radius: 18px;
}

.model-colours__button {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 48px;
    padding: 7px 10px;
    border-radius: 18px;
}

.model-colours__swatch {
    width: 28px;
    height: 28px;
}

.model-colours__name {
    font-size: 0.88rem;
    line-height: 1.18;
}

.model-colours__pricing {
    gap: 10px;
    margin-top: 0;
    padding: 12px;
    border-radius: 24px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 18px 52px rgba(16, 17, 21, 0.08);
}

.model-colours__pricing-controls {
    gap: 8px;
}

.model-colours__select-field {
    min-width: 0;
    min-height: 62px;
    padding: 10px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
}

.model-colours__select-field > span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.model-colours__select-field strong {
    display: flex;
    min-height: 34px;
    align-items: center;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 820;
    line-height: 1.12;
}

.model-colours__select-field strong[hidden] {
    display: none;
}

.model-colours__select-field.is-fixed select {
    display: none;
}

.model-colours__pricing-controls select {
    min-height: 34px;
    padding: 0 30px 0 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}

.model-colours__price-card {
    gap: 8px;
}

.model-colours__price-card > div {
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
}

.model-colours__price-card span {
    font-size: 0.72rem;
    line-height: 1;
}

.model-colours__price-card strong {
    font-size: clamp(1.06rem, 1.34vw, 1.24rem);
}

.model-colours__price-card p {
    padding: 0 2px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .model-colours__options {
        grid-template-columns: 1fr;
    }

    .model-colours__pricing-controls,
    .model-colours__price-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .model-colours {
        width: var(--model-shell, min(1180px, calc(100% - 36px)));
        padding: var(--model-section-gap) 0;
    }

    .model-colours__heading h2 {
        font-size: clamp(2rem, 11vw, 2.7rem);
    }

    .model-colours__showroom {
        aspect-ratio: 1.32 / 1;
        border-radius: 18px 18px 14px 14px;
    }

    .model-colours__frame {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
    }

    .model-colours__image {
        max-width: 92%;
        max-height: 76%;
    }

    .model-colours__image.is-transparent {
        width: 100%;
        height: 100%;
        padding: 4px;
        transform: translate(-50%, -50%) scale(1.22);
    }

    .model-colours__button {
        grid-template-columns: 40px 1fr;
    }
}

.model-colours--configurator {
    width: var(--model-shell, min(1180px, calc(100% - 36px)));
    padding: var(--model-section-gap) 0;
}

.model-colours--configurator .model-colours__heading--configurator {
    margin: 0 0 20px;
}

.model-colours--configurator .model-colours__heading--configurator h2 {
    margin: 0;
}

.model-colours--configurator .model-colours__configurator {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 24px 80px rgba(16, 17, 21, 0.12);
}

.model-colours--configurator .model-colours__visual-card {
    position: relative;
    display: grid;
    min-height: 560px;
    border-right: 1px solid rgba(16, 17, 21, 0.1);
    background:
        radial-gradient(circle at 50% 68%, rgba(202, 209, 216, 0.52), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 242, 247, 0.78));
}

.model-colours--configurator .model-colours__showroom {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.model-colours--configurator .model-colours__showroom::before,
.model-colours--configurator .model-colours__showroom::after {
    display: none;
}

.model-colours--configurator .model-colours__stage {
    width: 100%;
    height: 100%;
    min-height: 470px;
}

.model-colours--configurator .model-colours__stage::before {
    right: 18%;
    bottom: 18%;
    left: 18%;
    height: 44px;
    background: radial-gradient(ellipse at center, rgba(42, 48, 56, 0.24), transparent 68%);
    filter: blur(18px);
}

.model-colours--configurator .model-colours__stage::after {
    display: none;
}

.model-colours--configurator .model-colours__frame {
    width: 100%;
    height: 100%;
    min-height: 470px;
    aspect-ratio: auto;
}

.model-colours--configurator .model-colours__image {
    max-width: 90%;
    max-height: 78%;
    object-fit: contain;
}

.model-colours--configurator .model-colours__image.is-transparent {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 12px 22px 42px;
    transform: translate(-50%, -50%) scale(1.16);
}

.model-colours--configurator .model-colours__panel {
    display: grid;
    align-content: start;
    gap: 18px;
    width: auto;
    margin: 0;
    padding: 30px 30px 26px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: none;
}

.model-colours--configurator .model-colours__panel-head {
    display: grid;
    gap: 8px;
}

.model-colours--configurator .model-colours__panel-head h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 2.9rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.model-colours--configurator .model-colours__panel-head p {
    max-width: 34rem;
    margin: 0;
    color: #526073;
    font-size: 0.94rem;
    line-height: 1.5;
}

.model-colours--configurator .model-colours__selectors {
    display: grid;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.model-colours--configurator .model-colours__selectors::before,
.model-colours--configurator .model-colours__options::before {
    display: none;
}

.model-colours--configurator .model-colours__section-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

.model-colours--configurator .model-colours__section-label span,
.model-colours--configurator .model-colours__select-field > span,
.model-colours--configurator .model-colours__price-card span {
    color: #5d6573;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

.model-colours--configurator .model-colours__section-label strong {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 860;
    text-align: right;
}

.model-colours--configurator .model-colours__options {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: 9px;
}

.model-colours--configurator .model-colours__button {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    min-height: 0;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.model-colours--configurator .model-colours__button[hidden] {
    display: none;
}

.model-colours--configurator .model-colours__button::before {
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-radius: inherit;
    background: none;
    content: "";
}

.model-colours--configurator .model-colours__button:hover,
.model-colours--configurator .model-colours__button:focus-visible {
    transform: translateY(-1px);
}

.model-colours--configurator .model-colours__button.is-active::before {
    border-color: var(--honda-red);
}

.model-colours--configurator .model-colours__swatch {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(16, 17, 21, 0.18);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 10px 18px rgba(16, 17, 21, 0.16);
}

.model-colours--configurator .model-colours__button:hover .model-colours__swatch,
.model-colours--configurator .model-colours__button:focus-visible .model-colours__swatch {
    transform: none;
}

.model-colours--configurator .model-colours__check {
    position: absolute;
    right: 1px;
    bottom: 1px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 999px;
    background: var(--honda-red);
    color: #fff;
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.model-colours--configurator .model-colours__check::before {
    content: "\2713";
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.model-colours--configurator .model-colours__button.is-active .model-colours__check {
    opacity: 1;
    transform: scale(1);
}

.model-colours--configurator .model-colours__meta,
.model-colours--configurator .model-colours__name,
.model-colours--configurator .model-colours__code {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.model-colours--configurator .model-colours__pricing {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.model-colours--configurator .model-colours__pricing-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.model-colours--configurator .model-colours__select-field {
    display: grid;
    min-height: 0;
    gap: 7px;
    padding: 11px 14px;
    border: 1px solid rgba(16, 17, 21, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.66);
}

.model-colours--configurator .model-colours__select-field--wide {
    grid-column: 1 / -1;
}

.model-colours--configurator .model-colours__select-field strong {
    min-height: 18px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 860;
}

.model-colours--configurator .model-colours__select-field strong[hidden] {
    display: none;
}

.model-colours--configurator .model-colours__select-field.is-fixed select {
    display: none;
}

.model-colours--configurator .model-colours__pricing-controls select {
    width: 100%;
    min-height: 34px;
    padding: 0 36px 0 12px;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 12px;
    background-color: rgba(238, 243, 248, 0.8);
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
}

.model-colours--configurator .model-colours__price-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px 14px;
    padding: 20px 18px 18px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.model-colours--configurator .model-colours__price-card > div {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.model-colours--configurator .model-colours__price-main {
    display: grid;
    gap: 7px;
}

.model-colours--configurator .model-colours__price-main strong {
    color: var(--ink);
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    font-weight: 920;
    line-height: 0.95;
}

.model-colours--configurator .model-colours__availability {
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(21, 122, 84, 0.12);
    color: #0c7a4b;
    font-size: 0.8rem;
    font-weight: 850;
    white-space: nowrap;
}

.model-colours--configurator .model-colours__availability[data-stock-state="on-request"] {
    background: rgba(245, 158, 11, 0.16);
    color: #a16207;
}

.model-colours--configurator .model-colours__promo-benefit {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    max-width: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #f01924, #c91421);
    box-shadow: 0 14px 28px rgba(201, 20, 33, 0.18);
    color: #fff;
    line-height: 1.15;
}

.model-colours--configurator .model-colours__promo-benefit[data-promo-type="discount"] {
    background: linear-gradient(135deg, #f01924, #c91421);
    color: #fff;
}

.model-colours--configurator .model-colours__promo-benefit[hidden] {
    display: none;
}

.model-colours--configurator .model-colours__promo-benefit span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.model-colours--configurator .model-colours__promo-benefit strong {
    overflow: hidden;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-colours--configurator .model-colours__finance-main {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    justify-content: start;
    gap: 2px 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(16, 17, 21, 0.08);
}

.model-colours--configurator .model-colours__finance-main[hidden] {
    display: none;
}

.model-colours--configurator .model-colours__finance-main span {
    grid-column: 1 / -1;
}

.model-colours--configurator .model-colours__finance-main strong {
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
}

.model-colours--configurator .model-colours__finance-main small {
    color: #526073;
    font-size: 0.82rem;
    font-weight: 760;
}

.model-colours--configurator .model-colours__price-card p {
    align-self: end;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(16, 17, 21, 0.08);
    color: #526073;
    font-size: 0.8rem;
    line-height: 1.35;
}

.model-colours--configurator .model-colours__price-card p[hidden] {
    display: none;
}

.model-colours--configurator .model-colours__price-card .model-colours__promo-benefit {
    display: grid;
    align-self: auto;
    margin: 0;
    padding: 12px 14px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #f01924, #c91421);
    box-shadow: 0 14px 28px rgba(201, 20, 33, 0.18);
    color: #fff;
    line-height: 1.15;
}

.model-colours--configurator .model-colours__price-card .model-colours__promo-benefit[hidden] {
    display: none;
}

.model-colours--configurator .model-colours__price-card .model-colours__promo-benefit span {
    color: rgba(255, 255, 255, 0.78);
}

.model-colours--configurator .model-colours__price-card .model-colours__promo-benefit strong {
    color: #fff;
}

@media (max-width: 980px) {
    .model-colours--configurator .model-colours__configurator {
        grid-template-columns: 1fr;
    }

    .model-colours--configurator .model-colours__visual-card {
        min-height: 520px;
        border-right: 0;
        border-bottom: 1px solid rgba(16, 17, 21, 0.1);
    }

    .model-colours--configurator .model-colours__stage,
    .model-colours--configurator .model-colours__frame {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .model-colours--configurator {
        width: min(100% - 24px, 1180px);
    }

    .model-colours--configurator .model-colours__configurator {
        border-radius: 22px;
    }

    .model-colours--configurator .model-colours__visual-card {
        aspect-ratio: 1.42 / 1;
        min-height: 0;
    }

    .model-colours--configurator .model-colours__stage,
    .model-colours--configurator .model-colours__frame {
        height: 100%;
        min-height: 0;
    }

    .model-colours--configurator .model-colours__image {
        max-width: 96%;
        max-height: 82%;
    }

    .model-colours--configurator .model-colours__image.is-transparent {
        padding: 10px 4px 16px;
        transform: translate(-50%, -50%) scale(1.04);
    }

    .model-colours--configurator .model-colours__panel {
        padding: 24px 18px;
    }

    .model-colours--configurator .model-colours__pricing {
        gap: 14px;
    }

    .model-colours--configurator .model-colours__select-field {
        gap: 6px;
        padding: 11px 12px;
    }

    .model-colours--configurator .model-colours__pricing-controls,
    .model-colours--configurator .model-colours__price-card {
        grid-template-columns: 1fr;
    }

    .model-colours--configurator .model-colours__pricing-controls {
        display: contents;
    }

    .model-colours--configurator .model-colours__select-field--wide {
        order: 1;
    }

    .model-colours--configurator .model-colours__selectors {
        grid-template-columns: minmax(94px, 1fr) auto;
        align-items: center;
        order: 2;
        gap: 10px 12px;
    }

    .model-colours--configurator .model-colours__pricing-controls .model-colours__select-field:nth-of-type(2) {
        order: 3;
    }

    .model-colours--configurator .model-colours__pricing-controls .model-colours__select-field:nth-of-type(3) {
        order: 4;
    }

    .model-colours--configurator .model-colours__price-card {
        order: 5;
    }

    .model-colours--configurator .model-colours__section-label {
        display: grid;
        min-width: 0;
        gap: 6px;
    }

    .model-colours--configurator .model-colours__section-label strong {
        max-width: 100%;
        overflow: hidden;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .model-colours--configurator .model-colours__options {
        justify-content: flex-end;
        gap: 7px;
    }

    .model-colours--configurator .model-colours__button {
        width: 36px;
        height: 36px;
    }

    .model-colours--configurator .model-colours__swatch {
        width: 28px;
        height: 28px;
    }

    .model-colours--configurator .model-colours__availability {
        justify-self: start;
    }
}

.model-highlights {
    --highlights-edge: clamp(22px, 3vw, 44px);
    overflow-x: clip;
    padding: var(--model-section-gap) 0 0;
}

.model-highlights__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    width: var(--model-shell, min(1180px, calc(100% - 36px)));
    margin: 0 auto 18px;
}

.model-highlights__viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(16, 17, 21, 0.035) 43%, rgba(16, 17, 21, 0.04) 58%, rgba(255, 255, 255, 0) 100%);
}

.model-highlights__heading-text {
    display: grid;
    gap: 0;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 760px;
}

.model-highlights__heading .eyebrow {
    position: relative;
    margin: 0 0 12px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: none;
}

.model-highlights__heading .eyebrow::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: currentColor;
}

.model-highlights__heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.model-highlights__lead {
    max-width: 650px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.62;
}

.model-highlights__nav {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 8px;
    padding-bottom: 4px;
}

.model-highlights__arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 1px 0 rgba(16, 17, 21, 0.02);
}

.model-highlights__arrow svg {
    width: 18px;
    height: 18px;
}

.model-highlights__arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(215, 25, 32, 0.55);
    color: var(--red);
    box-shadow: 0 6px 14px rgba(16, 17, 21, 0.08);
}

.model-highlights__arrow:focus-visible {
    outline: 2px solid rgba(215, 25, 32, 0.6);
    outline-offset: 3px;
}

.model-highlights__arrow[disabled],
.model-highlights__arrow[aria-disabled="true"] {
    opacity: 0.4;
    cursor: default;
    transform: none;
}

.model-highlights__rail {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 34px;
    width: 100%;
    padding: 24px var(--highlights-edge) var(--model-bridge-gap);
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--highlights-edge);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.model-highlights__rail::-webkit-scrollbar {
    display: none;
}

.model-highlight {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 22px 22px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(16, 17, 21, 0.065);
    scroll-snap-align: start;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.model-highlight:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 25, 32, 0.45);
    box-shadow: 0 16px 38px rgba(16, 17, 21, 0.095);
}

.model-highlight__icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--red);
}

.model-highlight__icon svg {
    width: 30px;
    height: 30px;
}

.model-highlight__tag {
    display: inline-block;
    margin-top: 2px;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.model-highlight h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: none;
}

.model-highlight p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.62;
}

@media (max-width: 760px) {
    .model-highlights {
        --highlights-edge: 20px;
    }

    .model-highlights__heading {
        flex-wrap: wrap;
        width: var(--model-shell, min(1180px, calc(100% - 36px)));
    }

    .model-highlights__nav {
        margin-left: auto;
    }

    .model-highlight {
        width: 76vw;
        max-width: 300px;
    }

}

.spec-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 14px;
    background: rgba(16, 17, 21, 0.1);
}

.spec-table div {
    display: grid;
    grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    padding: 14px 16px;
    background: var(--white);
}

.spec-table span {
    color: var(--muted);
}

.spec-table strong {
    font-weight: 700;
}

.model-gallery {
    width: var(--model-shell, min(1180px, calc(100% - 36px)));
    margin: 0 auto;
    padding: var(--model-bridge-gap) 0 var(--model-section-gap);
}

.model-gallery__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(24px, 4vw, 56px);
    margin-bottom: 20px;
}

.model-gallery__copy {
    display: grid;
    max-width: 760px;
}

.model-gallery .eyebrow {
    position: relative;
    margin: 0 0 12px;
    color: var(--red);
}

.model-gallery .eyebrow::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: currentColor;
}

.model-gallery h2 {
    max-width: 720px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
}

.model-gallery h2 span {
    display: block;
}

.model-gallery__controls {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
}

.model-gallery__counter {
    display: inline-flex;
    align-items: baseline;
    min-width: 78px;
    gap: 5px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 650;
}

.model-gallery__counter strong {
    color: var(--red);
    font-size: 1.16rem;
}

.model-gallery__arrow {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(16, 17, 21, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.model-gallery__arrow svg {
    width: 18px;
    height: 18px;
}

.model-gallery__arrow:hover,
.model-gallery__arrow:focus-visible {
    border-color: rgba(215, 25, 32, 0.5);
    color: var(--red);
    outline: none;
    transform: translateY(-1px);
}

.model-gallery__arrow[disabled] {
    opacity: 0.42;
    cursor: default;
    transform: none;
}

.model-gallery__viewport {
    overflow: hidden;
}

.model-gallery__pages {
    position: relative;
    height: clamp(340px, 32vw, 400px);
    min-height: 0;
    overflow: hidden;
    border-radius: 22px;
}

.model-gallery__page {
    display: none;
    grid-template-columns: minmax(360px, 1.35fr) minmax(230px, 0.78fr) minmax(160px, 0.52fr) minmax(160px, 0.52fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "hero tall top-a top-b"
        "hero small-a wide wide";
    gap: 12px;
    height: 100%;
    min-height: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.model-gallery__page.is-active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.model-gallery__page.is-count-1 {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas: "hero";
}

.model-gallery__page.is-count-2 {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    grid-template-rows: 1fr;
    grid-template-areas: "hero tall";
}

.model-gallery__page.is-count-3 {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "hero top-a"
        "hero top-b";
}

.model-gallery__page.is-count-4 {
    grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr) minmax(230px, 0.75fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "hero tall top-a"
        "hero small-a top-b";
}

.model-gallery__page.is-count-5 {
    grid-template-areas:
        "hero tall top-a top-b"
        "hero wide wide wide";
}

.model-gallery__tile {
    position: relative;
    overflow: hidden;
    min-height: 0;
    margin: 0;
    border: 1px solid rgba(16, 17, 21, 0.06);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(233, 238, 243, 0.5)),
        var(--mist);
    box-shadow: 0 18px 46px rgba(16, 17, 21, 0.08);
}

.model-gallery__tile.is-pos-1 { grid-area: hero; }
.model-gallery__tile.is-pos-2 { grid-area: tall; }
.model-gallery__tile.is-pos-3 { grid-area: top-a; }
.model-gallery__tile.is-pos-4 { grid-area: top-b; }
.model-gallery__tile.is-pos-5 { grid-area: small-a; }
.model-gallery__tile.is-pos-6 { grid-area: wide; }

.model-gallery__page.is-count-5 .model-gallery__tile.is-pos-5 {
    grid-area: wide;
}

.model-gallery__tile img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 0;
    object-fit: cover;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.model-gallery__tile-button {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
}

.model-gallery__tile-button:focus-visible {
    outline: 3px solid rgba(215, 25, 32, 0.72);
    outline-offset: -5px;
}

.model-gallery__tile:hover img,
.model-gallery__tile-button:focus-visible img {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.025);
}

.model-gallery__open {
    display: grid;
    grid-template-columns: auto 22px;
    align-items: center;
    gap: 28px;
    width: fit-content;
    min-width: 240px;
    margin: 22px auto 0;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid rgba(215, 25, 32, 0.36);
    background: transparent;
    color: var(--red);
    font: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.model-gallery__open svg {
    width: 22px;
    height: 22px;
}

.model-gallery__open:hover,
.model-gallery__open:focus-visible {
    border-color: rgba(215, 25, 32, 0.86);
    color: var(--red-dark);
    outline: none;
    transform: translateY(-1px);
}

.model-gallery-modal {
    width: min(1540px, calc(100vw - 24px));
    max-width: none;
    max-height: calc(100svh - 24px);
    padding: 0;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(239, 241, 245, 0.72)),
        rgba(255, 255, 255, 0.72);
    color: var(--ink);
    box-shadow: 0 34px 120px rgba(16, 17, 21, 0.28);
    backdrop-filter: blur(32px) saturate(1.18);
    -webkit-backdrop-filter: blur(32px) saturate(1.18);
    isolation: isolate;
}

.model-gallery-modal::backdrop {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.38), transparent 32rem),
        rgba(12, 14, 18, 0.56);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

.model-gallery-modal__panel {
    position: relative;
    max-height: calc(100svh - 24px);
    padding: 10px;
    overflow: visible;
}

.model-gallery-modal__header {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 4;
}

.model-gallery-modal__title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.model-gallery-modal__counter {
    display: none;
}

.model-gallery-modal__close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(17, 18, 23, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(16, 17, 21, 0.14);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.model-gallery-modal__close:hover,
.model-gallery-modal__close:focus-visible {
    border-color: rgba(17, 18, 23, 0.16);
    background: rgba(255, 255, 255, 0.92);
    outline: none;
    transform: translateY(-1px);
}

.model-gallery-modal__close svg {
    width: 20px;
    height: 20px;
}

.model-gallery-modal__frame {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    height: calc(100svh - 44px);
    max-height: calc(100svh - 44px);
    overflow: hidden;
}

.model-gallery-modal__stage {
    position: relative;
    touch-action: none;
    overflow: hidden;
    height: 100%;
    min-height: 0;
    border-radius: 18px;
    background: #e5e7ea;
    box-shadow: 0 16px 52px rgba(16, 17, 21, 0.12);
}

.model-gallery-modal__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.2s ease, transform 0.22s ease;
    transform-origin: center;
    user-select: none;
    -webkit-user-drag: none;
}

.model-gallery-modal__image.is-active {
    opacity: 1;
    transform: scale(var(--gallery-zoom, 1));
}

.model-gallery-modal__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    width: clamp(54px, 5vw, 74px);
    height: clamp(148px, 34vh, 310px);
    place-items: center;
    padding: 0;
    border: 1px solid rgba(17, 18, 23, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 18px 48px rgba(16, 17, 21, 0.16);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    transform: translateY(-50%);
    transition:
        background 0.16s ease,
        border-color 0.16s ease,
        color 0.16s ease,
        opacity 0.16s ease,
        transform 0.16s ease;
}

.model-gallery-modal__nav--prev {
    left: 14px;
}

.model-gallery-modal__nav--next {
    right: 14px;
}

.model-gallery-modal__nav:hover,
.model-gallery-modal__nav:focus-visible {
    border-color: rgba(215, 25, 32, 0.32);
    background: rgba(255, 255, 255, 0.9);
    color: var(--red);
    outline: none;
    transform: translateY(-50%) scale(1.02);
}

.model-gallery-modal__nav[disabled] {
    cursor: default;
    opacity: 0.34;
    pointer-events: none;
}

.model-gallery-modal__nav svg {
    width: 30px;
    height: 30px;
}

.model-gallery-modal__zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    display: inline-flex;
    gap: 7px;
    padding: 6px;
    border: 1px solid rgba(17, 18, 23, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 36px rgba(16, 17, 21, 0.18);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.model-gallery-modal__thumbs-toggle {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(17, 18, 23, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 760;
    box-shadow: 0 14px 36px rgba(16, 17, 21, 0.16);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    transition:
        background 0.16s ease,
        border-color 0.16s ease,
        color 0.16s ease,
        transform 0.16s ease;
}

.model-gallery-modal__thumbs-toggle svg {
    width: 18px;
    height: 18px;
}

.model-gallery-modal__thumbs-toggle:hover,
.model-gallery-modal__thumbs-toggle:focus-visible,
.model-gallery-modal.is-thumbs-open .model-gallery-modal__thumbs-toggle {
    border-color: rgba(215, 25, 32, 0.32);
    background: rgba(255, 255, 255, 0.95);
    color: var(--red);
    outline: none;
    transform: translateY(-1px);
}

.model-gallery-modal__zoom button {
    display: grid;
    min-width: 36px;
    height: 36px;
    place-items: center;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 17, 21, 0.06);
    color: var(--ink);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 760;
    cursor: pointer;
}

.model-gallery-modal__zoom button:hover,
.model-gallery-modal__zoom button:focus-visible {
    background: rgba(215, 25, 32, 0.12);
    color: var(--red);
    outline: none;
}

.model-gallery-modal__zoom svg {
    width: 18px;
    height: 18px;
}

.model-gallery-modal__thumbs {
    position: absolute;
    right: 18px;
    bottom: 76px;
    left: 18px;
    z-index: 5;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 92px;
    gap: 10px;
    max-height: 118px;
    min-height: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(241, 243, 247, 0.76)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 54px rgba(16, 17, 21, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition:
        opacity 0.22s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-width: none;
    backdrop-filter: blur(22px) saturate(1.12);
    -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.model-gallery-modal.is-thumbs-open .model-gallery-modal__thumbs {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.model-gallery-modal__thumbs::-webkit-scrollbar {
    display: none;
}

.model-gallery-modal__thumb {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: #e8eaed;
    cursor: pointer;
    opacity: 0.72;
    min-width: 0;
    transition: border-color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}

.model-gallery-modal__thumb.is-active {
    border-color: var(--red);
    opacity: 1;
}

.model-gallery-modal__thumb:hover,
.model-gallery-modal__thumb:focus-visible {
    opacity: 1;
    outline: none;
    transform: translateY(-1px);
}

.model-gallery-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
    .model-gallery {
        padding: var(--model-bridge-gap) 0 var(--model-section-gap);
    }

    .model-gallery__heading {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 18px;
    }

    .model-gallery__controls {
        justify-content: space-between;
        width: 100%;
        padding-bottom: 0;
    }

    .model-gallery__viewport {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        overflow: visible;
    }

    .model-gallery__pages {
        height: auto;
        overflow: visible;
        border-radius: 0;
    }

    .model-gallery__page,
    .model-gallery__page.is-count-1,
    .model-gallery__page.is-count-2,
    .model-gallery__page.is-count-3,
    .model-gallery__page.is-count-4,
    .model-gallery__page.is-count-5,
    .model-gallery__page.is-count-6,
    .model-gallery__page.is-count-7 {
        grid-template-columns: none;
        grid-template-rows: none;
        grid-template-areas: none;
        height: auto;
        min-height: 0;
    }

    .model-gallery__page.is-active {
        display: flex;
        gap: 12px;
        width: 100%;
        padding: 2px max(14px, calc((100vw - 520px) / 2 + 14px)) 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-inline: max(14px, calc((100vw - 520px) / 2 + 14px));
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .model-gallery__page.is-active::-webkit-scrollbar {
        display: none;
    }

    .model-gallery__page.is-active .model-gallery__tile,
    .model-gallery__page.is-count-5 .model-gallery__tile.is-pos-2,
    .model-gallery__page.is-count-5 .model-gallery__tile.is-pos-4,
    .model-gallery__page.is-count-6 .model-gallery__tile.is-pos-2,
    .model-gallery__page.is-count-6 .model-gallery__tile.is-pos-4,
    .model-gallery__page.is-count-7 .model-gallery__tile.is-pos-2,
    .model-gallery__page.is-count-7 .model-gallery__tile.is-pos-4 {
        display: block;
    }

    .model-gallery__page.is-active .model-gallery__tile {
        flex: 0 0 min(82vw, 330px);
        width: min(82vw, 330px);
        height: min(62vw, 250px);
        min-height: 226px;
        border-radius: 18px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-shadow: 0 14px 34px rgba(16, 17, 21, 0.09);
    }

    .model-gallery__page.is-active .model-gallery__tile.is-pos-1 {
        flex-basis: min(88vw, 356px);
        width: min(88vw, 356px);
    }

    .model-gallery__tile {
        border-radius: 18px;
    }

    .model-gallery__tile-button {
        border-radius: inherit;
    }

    .model-gallery__open {
        width: min(100%, 260px);
        margin-top: 18px;
    }

    .model-gallery-modal {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100svh;
        max-height: none;
        margin: 0;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: #06070a;
        color: #ffffff;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .model-gallery-modal::backdrop {
        background: #06070a;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .model-gallery-modal__panel {
        width: 100%;
        height: 100%;
        max-height: none;
        padding: 0;
        overflow: hidden;
    }

    .model-gallery-modal__header {
        top: calc(12px + env(safe-area-inset-top));
        right: 12px;
        left: 12px;
        z-index: 8;
        display: flex;
        align-items: center;
        justify-content: space-between;
        pointer-events: none;
    }

    .model-gallery-modal__counter {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        min-height: 0;
        height: 32px;
        padding: 0 2px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #ffffff;
        font-size: 0.82rem;
        font-weight: 780;
        line-height: 1;
        letter-spacing: 0;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
        pointer-events: auto;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .model-gallery-modal__counter strong {
        font-size: inherit;
    }

    .model-gallery-modal__counter span {
        color: rgba(255, 255, 255, 0.78);
    }

    .model-gallery-modal__close {
        width: 42px;
        height: 42px;
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(5, 6, 9, 0.56);
        color: #ffffff;
        box-shadow: none;
        pointer-events: auto;
    }

    .model-gallery-modal__close:hover,
    .model-gallery-modal__close:focus-visible {
        border-color: rgba(255, 255, 255, 0.34);
        background: rgba(255, 255, 255, 0.16);
        color: #ffffff;
    }

    .model-gallery-modal__frame {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr);
        width: 100%;
        height: 100%;
        max-height: none;
        overflow: hidden;
    }

    .model-gallery-modal__stage {
        width: 100%;
        height: 100%;
        max-height: none;
        min-height: 0;
        border-radius: 0;
        background: #06070a;
        box-shadow: none;
    }

    .model-gallery-modal__image {
        inset: 0;
        height: 100%;
        object-position: center;
    }

    .model-gallery-modal__nav {
        display: none;
    }

    .model-gallery-modal__thumbs {
        right: 10px;
        bottom: calc(72px + env(safe-area-inset-bottom));
        left: 10px;
        grid-auto-columns: 68px;
        max-height: 88px;
        padding: 8px;
        border-radius: 16px;
        border-color: rgba(255, 255, 255, 0.14);
        background: rgba(5, 6, 9, 0.72);
        box-shadow: none;
    }

    .model-gallery-modal__thumb {
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.14);
    }

    .model-gallery-modal__thumb.is-active {
        border-color: #ffffff;
    }

    .model-gallery-modal__zoom {
        display: none;
    }

    .model-gallery-modal__thumbs-toggle {
        right: auto;
        bottom: calc(14px + env(safe-area-inset-bottom));
        left: 50%;
        min-height: 42px;
        padding: 0 14px;
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(5, 6, 9, 0.56);
        color: #ffffff;
        font-size: 0.76rem;
        box-shadow: none;
        transform: translateX(-50%);
    }

    .model-gallery-modal__thumbs-toggle:hover,
    .model-gallery-modal__thumbs-toggle:focus-visible,
    .model-gallery-modal.is-thumbs-open .model-gallery-modal__thumbs-toggle {
        border-color: rgba(255, 255, 255, 0.34);
        background: rgba(255, 255, 255, 0.16);
        color: #ffffff;
        transform: translateX(-50%);
    }
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    object-fit: cover;
}

/* Article page */
.article-page {
    padding-bottom: 70px;
}

.noticias-landing-hero,
.article-post-hero {
    height: 52svh;
    min-height: 380px;
    padding-top: clamp(112px, 10vw, 150px);
    padding-bottom: clamp(34px, 5vw, 54px);
}

.article-post-hero .public-hero-content {
    width: min(1040px, 100%);
    max-width: 1040px;
}

.article-post-hero h1 {
    max-width: 1040px;
    font-size: clamp(2.4rem, 4.2vw, 3.7rem);
    line-height: 1.06;
    text-wrap: balance;
}

.article-page > .breadcrumbs.breadcrumbs--below-hero + .section-band--white {
    padding-top: clamp(30px, 4vw, 52px);
}

.article-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(120px, 14vw, 170px) 0 34px;
}

.article-hero h1 {
    max-width: 980px;
    color: var(--ink);
}

.article-hero img {
    width: 100%;
    max-height: 560px;
    margin-top: 28px;
    border-radius: 18px;
    object-fit: cover;
}

.content-flow {
    width: min(820px, calc(100% - 36px));
    margin: 0 auto;
    font-size: 1.03rem;
    line-height: 1.68;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(260px, 320px);
    gap: clamp(34px, 5vw, 72px);
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    align-items: start;
}

.article-layout .content-flow {
    width: 100%;
    margin: 0;
}

.article-sidebar {
    display: grid;
    align-self: stretch;
    align-content: start;
    gap: 18px;
    overflow: visible;
}

.article-sidebar__latest {
    padding: 20px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 50px rgba(16, 17, 21, 0.055);
}

.article-sidebar h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.18;
}

.latest-post-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: latest-posts;
}

.latest-post-list li {
    counter-increment: latest-posts;
}

.latest-post-list li + li {
    border-top: 1px solid rgba(16, 17, 21, 0.08);
}

.latest-post-list a {
    position: relative;
    display: grid;
    min-height: 44px;
    padding: 8px 0 8px 36px;
    color: var(--ink);
}

.latest-post-list a::before {
    position: absolute;
    top: 8px;
    left: 0;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.1);
    color: var(--red);
    content: counter(latest-posts, decimal-leading-zero);
    font-size: 0.68rem;
    font-weight: 800;
}

.latest-post-list span {
    display: none;
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 760;
    line-height: 1.15;
}

.latest-post-list strong {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    font-size: 0.92rem;
    font-weight: 720;
    line-height: 1.24;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.latest-post-list a:hover strong,
.latest-post-list a:focus strong {
    color: var(--red);
}

.article-sidebar__cta {
    position: sticky;
    top: calc(var(--site-header-bottom, 96px) + 24px);
    display: grid;
    gap: 10px;
    padding: 12px 14px 16px;
    overflow: hidden;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(16, 17, 21, 0.96), rgba(42, 49, 58, 0.92)),
        #11151c;
    color: var(--white);
    box-shadow: 0 18px 42px rgba(16, 17, 21, 0.16);
}

.article-sidebar__cta-media {
    position: relative;
    min-height: 118px;
    margin: 0 0 4px;
    overflow: hidden;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
}

.article-sidebar__cta-media img {
    display: block;
    width: 100%;
    height: 118px;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.04);
}

.article-sidebar__cta-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(16, 17, 21, 0.62));
}

.article-sidebar__cta-media figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 1;
    width: fit-content;
    max-width: calc(100% - 20px);
    padding: 7px 10px;
    border: var(--site-glass-border);
    border-radius: 999px;
    background: var(--site-glass-bg);
    box-shadow: var(--site-glass-shadow);
    backdrop-filter: var(--site-glass-backdrop);
    -webkit-backdrop-filter: var(--site-glass-backdrop);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 760;
    line-height: 1.1;
}

.article-sidebar__cta .eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
}

.article-sidebar__cta .eyebrow::before {
    background: var(--red);
}

.article-sidebar__cta h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.12rem, 1.45vw, 1.28rem);
    line-height: 1.1;
}

.article-sidebar__cta p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.45;
}

.article-sidebar__cta .button {
    width: 100%;
    min-height: 42px;
    margin-top: 4px;
    box-shadow: none;
}

.article-related {
    padding-top: clamp(44px, 6vw, 70px);
    background:
        linear-gradient(180deg, rgba(245, 247, 249, 0.88), rgba(255, 255, 255, 1));
}

.post-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-flow > *:first-child {
    margin-top: 0;
}

.content-flow > p:first-of-type {
    font-size: 1.12rem;
    line-height: 1.62;
    color: #2a313a;
}

.content-flow h2,
.content-flow h3,
.content-flow h4,
.content-flow h5,
.content-flow h6 {
    margin: 1.8em 0 0.5em;
    line-height: 1.12;
    color: var(--ink);
    font-weight: 700;
}

.content-flow h2 {
    font-size: clamp(1.65rem, 2.7vw, 2.3rem);
}

.content-flow h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.45rem);
}

.content-flow p,
.content-flow li {
    color: #3e4650;
    line-height: 1.68;
}

.content-flow a {
    color: var(--red);
    font-weight: 700;
}

.content-flow img {
    height: auto;
    margin: 24px 0;
    border-radius: 14px;
}

.content-flow .post-honda-2026 {
    color: #3e4650;
    line-height: 1.68;
}

.content-flow .post-honda-2026 > img:first-child {
    margin-top: 0;
}

.content-flow .post-honda-2026 > div:has(> figure) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 26px 0;
}

.content-flow .post-honda-2026 > div:has(> figure) figure {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
}

.content-flow .post-honda-2026 > div:has(> figure) img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    object-fit: contain;
}

.content-flow .post-honda-2026 figcaption {
    color: #59616b;
    font-size: 0.88rem;
    font-weight: 680;
    line-height: 1.25;
    text-align: center;
}

.content-flow table {
    display: block;
    overflow-x: auto;
    width: 100%;
    border-collapse: collapse;
}

.budget-portal {
    --budget-iframe-height: 1800px;
    background: #f6f7f8;
}

.budget-portal__hero.public-hero {
    height: auto;
    min-height: 0;
    padding: calc(var(--site-header-bottom, 96px) + 8px) 0 10px;
    background:
        linear-gradient(135deg, rgba(12, 15, 20, 0.98), rgba(35, 41, 50, 0.96)),
        #11151c;
}

.budget-portal__hero .public-hero-content {
    width: min(1480px, calc(100% - 32px));
    padding: 0;
}

.budget-portal__hero .eyebrow {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
}

.budget-portal__hero h1 {
    max-width: none;
    margin: 0;
    color: #fff;
    font-size: clamp(1.28rem, 2.1vw, 1.95rem);
    line-height: 1.08;
}

.budget-portal__body {
    padding: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 248, 1));
}

.budget-portal__auth {
    display: grid;
    min-height: min(560px, calc(100svh - var(--site-header-bottom, 96px) - 54px));
    padding-block: clamp(28px, 5vw, 54px);
    place-items: center;
}

.budget-portal__card {
    display: grid;
    width: min(460px, 100%);
    gap: 18px;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 60px rgba(16, 17, 21, 0.08);
}

.budget-portal__card h2 {
    margin: -4px 0 0;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.08;
}

.budget-portal__field {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 680;
}

.budget-portal__field input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.budget-portal__error {
    margin: 0;
    padding: 11px 13px;
    border: 1px solid rgba(215, 25, 32, 0.18);
    border-radius: 12px;
    background: rgba(215, 25, 32, 0.08);
    color: #9f1117;
    font-weight: 700;
}

.budget-portal__frame-shell {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.budget-portal__iframe {
    display: block;
    width: 100%;
    height: var(--budget-iframe-height);
    border: 0;
    background: #fff;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .budget-portal__frame-shell::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 22px;
        background: #090b10;
        content: "";
        pointer-events: none;
    }
}

@media (max-width: 1180px) {
    .budget-portal {
        --budget-iframe-height: 2100px;
    }
}

@media (max-width: 760px) {
    .budget-portal {
        --budget-iframe-height: 2700px;
    }

    .budget-portal__hero.public-hero {
        padding: calc(var(--site-header-bottom, 74px) + 6px) 0 8px;
    }

    .budget-portal__hero .public-hero-content {
        width: min(100% - 24px, 560px);
    }

    .budget-portal__hero h1 {
        font-size: 1.18rem;
    }

    .budget-portal__auth {
        min-height: calc(100svh - var(--site-header-bottom, 74px) - 40px);
        padding-block: 20px;
    }

    .budget-portal__card {
        border-radius: 14px;
    }
}

.content-flow th,
.content-flow td {
    padding: 10px;
    border: 1px solid rgba(16, 17, 21, 0.1);
}

.category-copy-section {
    padding: clamp(54px, 8vw, 92px) 0;
    background: #f4f6f8;
}

.category-copy {
    display: grid;
    grid-template-columns: minmax(200px, 290px) minmax(0, 1fr);
    gap: clamp(34px, 5.6vw, 84px);
    align-items: start;
}

.category-copy__aside {
    position: sticky;
    top: calc(var(--site-header-bottom, 86px) + 24px);
    display: grid;
    gap: 14px;
}

.category-copy__aside .eyebrow {
    margin: 0;
    color: var(--red);
}

.category-copy__aside .eyebrow::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    background: currentColor;
    content: "";
}

.category-copy__aside h2 {
    margin: 0;
    max-width: 250px;
    color: var(--ink);
    font-size: clamp(1.5rem, 2vw, 2.05rem);
    font-weight: 850;
    line-height: 1.08;
}

.category-copy__note {
    margin: 0;
    max-width: 260px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.category-copy__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    margin-top: 4px;
    color: var(--red);
    font-size: 0.95rem;
    font-weight: 780;
    text-decoration: none;
}

.category-copy__cta svg {
    width: 17px;
    height: 17px;
    flex: none;
    transition: transform 0.16s ease;
}

.category-copy__cta:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.category-copy__cta:hover svg {
    transform: translateY(-2px);
}

.category-copy__body.content-flow {
    width: min(880px, 100%);
    margin: 0;
    color: rgba(18, 20, 24, 0.82);
    font-size: clamp(1rem, 1.02vw, 1.1rem);
    line-height: 1.74;
}

.category-copy__body.content-flow > *:first-child {
    margin-top: 0;
}

.category-copy__body.content-flow h2 {
    max-width: 820px;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 850;
    line-height: 1.07;
}

.category-copy__body.content-flow h3 {
    margin-top: 32px;
    color: var(--ink);
    font-size: clamp(1.3rem, 1.6vw, 1.7rem);
    font-weight: 820;
    line-height: 1.16;
}

.category-copy__body.content-flow p,
.category-copy__body.content-flow li {
    max-width: 760px;
    color: rgba(18, 20, 24, 0.82);
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
}

.category-copy__body.content-flow p + p,
.category-copy__body.content-flow ul + p,
.category-copy__body.content-flow ol + p,
.category-copy__body.content-flow p + ul,
.category-copy__body.content-flow p + ol {
    margin-top: 18px;
}

.category-copy__body.content-flow strong {
    color: var(--ink);
    font-weight: 700;
}

.category-copy__body.content-flow a {
    color: var(--red);
    font-weight: 700;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.category-copy__body.content-flow blockquote {
    max-width: 760px;
    margin: 26px 0;
    padding: 4px 0 4px 22px;
    border-left: 3px solid var(--red);
    color: var(--ink);
    font-size: clamp(1.05rem, 1.15vw, 1.18rem);
    font-weight: 560;
    line-height: 1.55;
}

@media (max-width: 860px) {
    .category-copy {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .category-copy__aside {
        position: static;
    }

    .category-copy__aside h2,
    .category-copy__note {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .category-copy__body.content-flow h2 {
        font-size: clamp(1.8rem, 9vw, 2.45rem);
    }
}

/* Legal landings */
.legal-page {
    overflow: hidden;
    padding-bottom: clamp(48px, 7vw, 86px);
    background:
        linear-gradient(180deg, rgba(245, 247, 249, 0) 0, rgba(245, 247, 249, 0.94) 420px),
        #f5f7f9;
}

.legal-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(134px, 14vw, 184px) 0 clamp(58px, 7vw, 88px);
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(6, 7, 9, 0.96), rgba(16, 18, 22, 0.9) 52%, rgba(43, 47, 54, 0.86)),
        #090a0c;
}

.legal-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 82%);
    content: "";
}

.legal-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 4px;
    background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    content: "";
}

.legal-hero__inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.legal-hero__copy {
    max-width: 780px;
}

.legal-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.76);
}

.legal-hero .eyebrow::before {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    content: "";
}

.legal-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(2.65rem, 5vw, 4.8rem);
    line-height: 0.98;
    text-wrap: balance;
}

.legal-hero__copy p:not(.eyebrow) {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.03rem, 1.35vw, 1.2rem);
    line-height: 1.6;
}

.legal-layout {
    display: grid;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px) 0 0;
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    gap: clamp(22px, 4vw, 42px);
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 106px;
    display: grid;
    gap: 10px;
}

.legal-nav a {
    display: grid;
    gap: 5px;
    min-height: 78px;
    padding: 15px 16px;
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 38px rgba(16, 17, 21, 0.055);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
    border-color: rgba(215, 25, 32, 0.28);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(16, 17, 21, 0.085);
    transform: translateY(-1px);
}

.legal-nav a.is-active {
    border-color: rgba(215, 25, 32, 0.38);
    background:
        linear-gradient(90deg, rgba(215, 25, 32, 0.1), rgba(255, 255, 255, 0.9) 46%),
        #fff;
}

.legal-nav span {
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 780;
}

.legal-nav strong {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.2;
}

.legal-document {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 80px rgba(16, 17, 21, 0.08);
}

.legal-document .content-flow {
    width: auto;
    max-width: none;
    margin: 0;
    padding: clamp(28px, 4.6vw, 58px);
}

.legal-document .content-flow > p:first-of-type {
    max-width: 780px;
    color: #252c35;
    font-size: clamp(1.08rem, 1.45vw, 1.2rem);
}

.legal-document .content-flow h2 {
    padding-top: 1.1em;
    border-top: 1px solid rgba(16, 17, 21, 0.08);
}

.legal-document .content-flow h2:first-child,
.legal-document .content-flow > p:first-child + h2 {
    padding-top: 0;
    border-top: 0;
}

.legal-document .content-flow ul,
.legal-document .content-flow ol {
    padding-left: 1.25rem;
}

.legal-document .content-flow li + li {
    margin-top: 0.42em;
}

@media (max-width: 920px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .legal-hero {
        padding: 120px 0 52px;
    }

    .legal-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.35rem);
    }

    .legal-nav {
        grid-template-columns: 1fr;
    }

    .legal-nav a {
        min-height: 68px;
    }

    .legal-document .content-flow {
        padding: 26px 20px;
    }
}

.model-seo-section {
    width: var(--model-shell, min(1180px, calc(100% - 36px)));
    margin: 0 auto;
    padding: clamp(42px, 5vw, 64px) 0 clamp(40px, 5vw, 62px);
    scroll-margin-top: calc(var(--site-header-bottom, 86px) + 24px);
}

.model-seo-section__intro {
    display: grid;
    width: min(760px, 100%);
    margin: 0 0 20px;
}

.model-seo-section__intro .eyebrow {
    margin: 0 0 12px;
    color: var(--red);
}

.model-seo-section__intro h2 {
    max-width: 720px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.model-seo-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.model-seo-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 55px rgba(16, 17, 21, 0.09);
}

.model-seo-card--text {
    display: grid;
    align-content: start;
    justify-items: start;
    padding: clamp(32px, 5vw, 64px);
}

.model-seo-card--text > .model-seo-card__number,
.model-seo-card--text > h2,
.model-seo-card__body {
    width: min(100%, 820px);
    margin-right: auto;
    margin-left: auto;
}

.model-seo-card--intro,
.model-seo-card--final,
.model-seo-card--video {
    grid-column: 1 / -1;
}

.model-seo-card--video {
    padding: clamp(16px, 2.2vw, 28px);
}

.model-seo-pair {
    display: grid;
    grid-column: 1 / -1;
    gap: 22px;
    align-items: stretch;
    scroll-margin-top: calc(var(--site-header-bottom, 86px) + 24px);
}

.model-seo-pair--image-text {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.model-seo-pair--text-image {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.model-seo-pair.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.model-seo-pair .model-seo-card {
    height: 100%;
}

.model-seo-card--slot-text {
    padding: clamp(30px, 4.2vw, 56px);
}

.model-seo-card--slot-text > .model-seo-card__number,
.model-seo-card--slot-text > h2,
.model-seo-card--slot-text .model-seo-card__body {
    width: min(100%, 760px);
}

.model-seo-pair:not(.is-single) .model-seo-card--slot-image {
    min-height: 320px;
}

.model-seo-pair.is-single .model-seo-card--slot-image {
    aspect-ratio: 16 / 9;
    min-height: 280px;
}

.model-seo-card--vertical-left {
    grid-column: 1 / span 4;
    min-height: 320px;
}

.model-seo-card--right-text {
    grid-column: 5 / span 8;
    min-height: 0;
}

.model-seo-card--left-text {
    grid-column: 1 / span 8;
    min-height: 0;
}

.model-seo-side-media {
    grid-column: 9 / span 4;
    display: grid;
    align-self: stretch;
    min-height: 0;
}

.model-seo-card--adaptive {
    min-height: 0;
}

.model-seo-side-media.is-horizontal {
    align-self: start;
}

.model-seo-side-media.is-horizontal .model-seo-card--adaptive {
    aspect-ratio: 16 / 10;
}

.model-seo-side-media.is-balanced {
    align-self: stretch;
}

.model-seo-side-media.is-balanced .model-seo-card--adaptive {
    aspect-ratio: 4 / 5;
}

.model-seo-side-media.is-vertical .model-seo-card--adaptive {
    height: 100%;
    min-height: 360px;
}

.model-seo-card--vertical-left.is-short {
    align-self: start;
    aspect-ratio: 4 / 3;
    min-height: 260px;
}

.model-seo-card--vertical-left.is-medium {
    min-height: 360px;
}

.model-seo-card--vertical-left.is-long,
.model-seo-card--vertical-left.is-extra-long {
    min-height: 420px;
}

.model-seo-card__number {
    display: block;
    margin-bottom: 22px;
    color: var(--red);
    font-size: 0.875rem;
    font-weight: 850;
    line-height: 1;
}

.model-seo-card__number::after {
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 13px;
    content: "";
    background: currentColor;
}

.model-seo-card h2 {
    max-width: 900px;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(1.75rem, 2.9vw, 2.625rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.model-seo-card--text > h2 {
    margin-right: auto;
    margin-left: auto;
}

.model-seo-card__body {
    color: rgba(18, 20, 24, 0.86);
    font-size: clamp(1rem, 1.05vw, 1.125rem);
    line-height: 1.72;
}

.model-seo-card__body > *:first-child {
    margin-top: 0;
}

.model-seo-card__body > *:last-child {
    margin-bottom: 0;
}

.model-seo-card__body h3 {
    margin: 28px 0 10px;
    color: var(--ink);
    font-size: clamp(1.12rem, 1.35vw, 1.35rem);
    font-weight: 850;
    line-height: 1.24;
}

.model-seo-card__body h3:first-child {
    margin-top: 0;
}

.model-seo-card p,
.model-seo-card li {
    max-width: 820px;
    color: rgba(18, 20, 24, 0.86);
    font-size: clamp(1rem, 1.05vw, 1.125rem);
    line-height: 1.72;
}

.model-seo-card p {
    margin: 0;
}

.model-seo-card p + p,
.model-seo-card ul + p,
.model-seo-card ol + p,
.model-seo-card p + ul,
.model-seo-card p + ol {
    margin-top: 18px;
}

.model-seo-card strong {
    color: var(--ink);
    font-weight: 800;
}

.model-seo-card--media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-seo-card__label {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.model-seo-card--video > .model-seo-card__label {
    margin-bottom: 14px;
    font-size: clamp(0.98rem, 0.98vw, 1.12rem);
    line-height: 1.2;
}

.model-seo-card--video > .model-seo-card__label,
.model-seo-card--video > .model-seo-video {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.model-seo-video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    background: #111318;
}

.model-seo-video iframe,
.model-seo-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 960px) {
    .model-seo-section {
        width: min(760px, calc(100% - 36px));
    }

    .model-seo-card--intro,
    .model-seo-card--final,
    .model-seo-card--video,
    .model-seo-pair,
    .model-seo-card--vertical-left,
    .model-seo-card--right-text,
    .model-seo-card--left-text,
    .model-seo-side-media {
        grid-column: 1 / -1;
    }

    .model-seo-pair,
    .model-seo-pair--image-text,
    .model-seo-pair--text-image,
    .model-seo-pair.is-single {
        grid-template-columns: 1fr;
    }

    .model-seo-pair--text-image .model-seo-card--slot-image {
        order: 1;
    }

    .model-seo-pair--text-image .model-seo-card--slot-text {
        order: 2;
    }

    .model-seo-card--vertical-left,
    .model-seo-card--right-text,
    .model-seo-card--left-text {
        min-height: 0;
    }

    .model-seo-side-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        align-self: auto;
    }

    .model-seo-side-media.is-horizontal,
    .model-seo-side-media.is-balanced,
    .model-seo-side-media.is-vertical {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .model-page.has-model-sticky {
        --model-sticky-space: 118px;
    }

    .model-seo-section {
        padding: 44px 0 58px;
    }

    .model-seo-mosaic {
        gap: 16px;
    }

    .model-seo-card--text {
        padding: 28px 22px;
    }

    .model-seo-card--video {
        padding: 14px;
    }

    .model-seo-card h2 {
        font-size: 1.75rem;
        line-height: 1.16;
    }

    .model-seo-card p,
    .model-seo-card__body,
    .model-seo-card li {
        font-size: 1rem;
        line-height: 1.68;
    }

    .model-seo-side-media {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .model-seo-card--vertical-left,
    .model-seo-card--adaptive,
    .model-seo-card--slot-image {
        min-height: 240px;
    }

    .model-seo-video {
        aspect-ratio: 16 / 9;
    }
}

/* Split panel (taller CTA on inner pages) */
.split-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 86% 32%, rgba(215, 25, 32, 0.18), transparent 18rem),
        linear-gradient(135deg, #111318, #242a31);
    box-shadow: 0 24px 80px rgba(16, 17, 21, 0.18);
    color: var(--white);
}

.split-panel h2,
.split-panel p {
    color: var(--white);
}

.split-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.split-panel .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

/* Lead form (inner pages) */
.lead-form-section {
    padding: clamp(54px, 8vw, 92px) 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.08), transparent 26rem),
        rgba(255, 255, 255, 0.5);
}

.lead-form-card {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
    gap: 28px;
    align-items: start;
    padding: 28px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.lead-form-card h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lead-field,
.lead-form fieldset {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.lead-field--wide,
.lead-form .button,
.lead-consent,
.form-alert {
    grid-column: 1 / -1;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font: inherit;
}

.lead-field textarea {
    resize: vertical;
}

.lead-check {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: #3e4650;
    font-weight: 500;
    line-height: 1.45;
}

.lead-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.lead-consent {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.honeypot {
    position: absolute;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 500;
}

.form-alert--error {
    border: 1px solid rgba(215, 25, 32, 0.28);
    background: rgba(215, 25, 32, 0.08);
    color: var(--red-dark);
}

.form-alert--success {
    border: 1px solid rgba(36, 89, 74, 0.28);
    background: rgba(36, 89, 74, 0.08);
    color: var(--green);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.error-page {
    padding: 140px 0 80px;
}

.debug {
    overflow: auto;
    padding: 18px;
    border-radius: 14px;
    background: #111318;
    color: #f4f7fb;
}

/* ------------------------------------------------------------------
   Responsive
------------------------------------------------------------------ */
@media (max-width: 980px) {
    :root {
        --site-chrome-gutter: 24px;
    }

    .site-header {
        right: var(--site-chrome-gutter);
        left: var(--site-chrome-gutter);
        grid-template-columns: auto auto auto;
        gap: 8px;
        justify-content: space-between;
    }

    .nav-button {
        display: grid;
        width: 46px;
        height: 46px;
        grid-template-columns: 18px;
        grid-template-rows: repeat(3, 2px);
        gap: 5px;
        place-content: center;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(18px) saturate(1.2);
        -webkit-backdrop-filter: blur(18px) saturate(1.2);
        cursor: pointer;
        touch-action: manipulation;
        transition: border-color 0.18s ease, background 0.18s ease;
    }

    .nav-button span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.84);
    }

    .nav-button span:nth-child(4) {
        display: none;
    }

    .nav-toggle:checked + .nav-button {
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
    }

    .nav-toggle:focus-visible + .nav-button {
        outline: 3px solid rgba(255, 255, 255, 0.78);
        outline-offset: 3px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100svh - var(--site-header-bottom) - 18px);
        overflow-y: auto;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 24px;
        background:
            linear-gradient(135deg, rgba(22, 24, 28, 0.92), rgba(37, 42, 48, 0.76)),
            rgba(16, 17, 21, 0.78);
        box-shadow: var(--shadow);
        backdrop-filter: blur(26px);
        -webkit-backdrop-filter: blur(26px);
    }

    .nav-toggle:checked ~ .main-nav {
        display: grid;
        justify-content: stretch;
    }

    .main-nav > a,
    .nav-item > a {
        padding: 14px;
    }

    .nav-item.has-mega {
        display: grid;
        gap: 8px;
    }

    .nav-social-divider {
        width: 100%;
        height: 1px;
        margin: 4px 0;
        background: rgba(255, 255, 255, 0.14);
    }

    .nav-social {
        justify-content: center;
        gap: 10px;
        padding: 6px 0 2px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        color: rgba(255, 255, 255, 0.66);
        background: rgba(255, 255, 255, 0.06);
    }

    .mega-menu {
        top: calc(var(--site-header-bottom) + var(--site-mega-gap));
        right: var(--site-chrome-gutter);
        left: var(--site-chrome-gutter);
        height: min(720px, calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 12px));
        max-height: calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 12px);
        border-radius: 24px;
    }

    .model-mega__layout {
        grid-template-columns: 1fr;
        height: 100%;
        max-height: none;
    }

    .model-mega__tabs {
        display: flex;
        height: auto;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 10px;
    }

    .model-mega__tab {
        min-width: 164px;
        padding: 10px 4px;
    }

    .model-mega__panels {
        max-height: none;
        padding: 12px;
    }

    .model-mega__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-access,
    .home-model-grid,
    .service-band,
    .dual,
    .contact-band,
    .page-hero--media,
    .model-hero__inner,
    .lead-form-card,
    .article-layout,
    .split-panel {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        order: 2;
        max-height: none;
        overflow: visible;
    }

    .article-sidebar__cta {
        position: static;
    }

    .latest-post-list {
        max-height: none;
        overflow: visible;
    }

    .news-landing-hero__content,
    .news-editorial__inner {
        width: min(100% - 36px, 980px);
    }

    .news-landing-hero__content {
        display: grid;
    }

    .news-landing-hero .button {
        width: fit-content;
    }

    .news-mosaic {
        column-count: 2;
        column-gap: 22px;
    }

    .home-model-card {
        min-height: 420px;
    }

    .access-card {
        min-height: 260px;
    }

    .family-strip,
    .family-strip--dense,
    .model-grid,
    .post-grid,
    .post-grid--wide,
    .post-grid--related,
    .variant-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .model-finder__bar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .model-finder__filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 0;
    }

    .model-finder__actions {
        justify-content: flex-start;
    }

    .model-facts,
    .spec-table {
        grid-template-columns: 1fr;
    }

    .section-heading.split {
        flex-direction: column;
        align-items: flex-start;
    }

    .lead-actions {
        justify-content: flex-start;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        padding-right: 0;
        padding-bottom: 26px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-footer__nav {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    html,
    body {
        max-width: 100%;
        overflow-x: clip;
        overflow-y: visible;
    }

    .hero,
    .public-hero,
    .models-landing-hero {
        box-sizing: border-box;
        width: 100%;
        max-width: 100vw;
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-content,
    .public-hero-content {
        box-sizing: border-box;
        width: 100%;
        max-width: calc(100vw - 36px);
        min-width: 0;
    }

    .hero h1,
    .public-hero h1 {
        max-width: 100%;
        font-size: clamp(2.05rem, 9.2vw, 2.8rem);
        overflow-wrap: break-word;
        text-wrap: wrap;
    }

    .hero-copy,
    .public-hero p:not(.eyebrow) {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-actions,
    .public-hero .actions {
        width: 100%;
        max-width: 100%;
    }

    .hero-actions .button,
    .public-hero .actions .button {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .noticias-landing-hero,
    .article-post-hero {
        height: 54svh;
        min-height: 340px;
        padding-top: 104px;
        padding-bottom: 34px;
    }

    .article-post-hero h1 {
        font-size: clamp(2rem, 10vw, 2.85rem);
        line-height: 1.08;
    }

    .model-finder__bar,
    .model-finder__filters {
        grid-template-columns: 1fr;
    }

    .model-finder__filters {
        min-height: 0;
    }

    .model-finder__count {
        margin: 0;
    }

    .model-finder__actions {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 10px;
    }

    .model-finder__reset {
        width: 100%;
    }

    .model-finder__chip {
        max-width: 100%;
    }

    .model-filter summary {
        min-height: 52px;
    }

    .site-footer__nav {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-footer__models {
        grid-template-columns: 1fr;
    }

    .site-footer__models strong {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (min-width: 761px) and (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        justify-content: initial;
    }

    .nav-button {
        display: none;
    }

    .nav-social-divider {
        width: 1px;
        height: 20px;
        margin: 0 4px 0 6px;
    }

    .nav-social {
        gap: 2px;
        padding: 0;
    }

    .social-link {
        width: 28px;
        height: 28px;
        background: transparent;
    }

    .main-nav {
        position: static;
        display: flex;
        justify-content: flex-end;
        justify-self: end;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .main-nav > a,
    .nav-item > a {
        padding: 10px 8px;
        border-radius: 16px;
        font-size: 0.84rem;
    }

    .mega-menu {
        top: calc(var(--site-header-bottom) + var(--site-mega-gap));
        right: var(--site-chrome-gutter);
        left: var(--site-chrome-gutter);
        height: min(720px, calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 12px));
        max-height: calc(100svh - var(--site-header-bottom) - var(--site-mega-gap) - 12px);
    }

    .model-mega__layout {
        grid-template-columns: 190px minmax(0, 1fr);
        height: 100%;
        max-height: calc(100vh - 140px);
    }

    .model-mega__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 760px) {
    .main-nav {
        position: fixed;
        top: calc(var(--site-header-bottom) + 10px);
        right: auto;
        left: calc(-1 * var(--site-chrome-gutter) - 1px);
        width: 100vw;
        max-height: calc(100svh - var(--site-header-bottom) - 10px);
    }

    .has-mega > .nav-mega-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .has-mega > .nav-mega-toggle::after {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        line-height: 1;
        content: "+";
    }

    .has-mega.is-mobile-open > .nav-mega-toggle {
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
    }

    .has-mega.is-mobile-open > .nav-mega-toggle::after {
        content: "-";
    }

    body.is-mega-open .mega-menu,
    .mega-menu {
        display: none;
    }

    .mobile-model-menu {
        display: grid;
        gap: 4px;
        max-height: none;
        overflow: visible;
        padding: 8px 0 10px;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
    }

    .mobile-model-menu__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mobile-model-menu__card {
        position: relative;
        display: grid;
        min-width: 0;
        min-height: 112px;
        overflow: hidden;
        align-content: end;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 13px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 243, 245, 0.9)),
            rgba(255, 255, 255, 0.86);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.72),
            0 12px 28px rgba(0, 0, 0, 0.18);
        color: var(--ink);
        isolation: isolate;
    }

    .mobile-model-menu__card:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.82);
        outline-offset: 3px;
    }

    .mobile-model-menu__card::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        height: 50%;
        content: "";
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
    }

    .mobile-model-menu__media {
        position: absolute;
        top: 8px;
        right: -10px;
        left: -10px;
        z-index: -2;
        display: grid;
        height: 76px;
        place-items: center;
        overflow: hidden;
        padding: 0 4px;
    }

    .mobile-model-menu__media img {
        width: 100%;
        max-height: 76px;
        object-fit: contain;
        filter: drop-shadow(0 8px 9px rgba(16, 17, 21, 0.14));
    }

    .mobile-model-menu__label {
        display: flex;
        min-width: 0;
        min-height: 38px;
        align-items: flex-end;
        padding: 0 10px 10px;
        font-size: clamp(0.88rem, 4.1vw, 1rem);
        font-weight: 850;
        line-height: 1.04;
        overflow-wrap: anywhere;
    }

    .mobile-model-menu__group {
        display: grid;
        gap: 4px;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-model-menu__group:last-child {
        border-bottom: 0;
    }

    .mobile-model-menu__family {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 11px 0;
        border: 0;
        background: transparent;
        color: var(--red);
        font-size: 0.84rem;
        font-weight: 720;
        letter-spacing: 0;
        line-height: 1.2;
        text-align: left;
        text-transform: none;
        cursor: pointer;
    }

    .mobile-model-menu__family::-webkit-details-marker,
    .mobile-model-menu__family::marker {
        display: none;
        content: "";
    }

    .mobile-model-menu__family::after {
        color: rgba(255, 255, 255, 0.64);
        font-size: 1rem;
        font-weight: 650;
        line-height: 1;
        content: "+";
    }

    .mobile-model-menu__group[open] > .mobile-model-menu__family::after,
    .mobile-model-menu__family[aria-expanded="true"]::after {
        content: "-";
    }

    .mobile-model-menu__family span {
        min-width: 0;
    }

    .mobile-model-menu__family small {
        color: rgba(255, 255, 255, 0.46);
        font-size: 0.72rem;
        font-weight: 560;
        line-height: 1;
        white-space: nowrap;
    }

    .mobile-model-menu__family:hover,
    .mobile-model-menu__family:focus-visible {
        color: #ff3b43;
    }

    .mobile-model-menu__family:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.62);
        outline-offset: 3px;
        border-radius: 12px;
    }

    .mobile-model-menu__models {
        display: grid;
        gap: 2px;
        padding: 0 0 12px 10px;
    }

    .mobile-model-menu__group:not([open]) > .mobile-model-menu__models {
        display: none;
    }

    .mobile-model-menu__models[hidden] {
        display: none !important;
    }

    .mobile-model-menu__models a {
        padding: 7px 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 0.94rem;
        font-weight: 620;
        line-height: 1.25;
    }

    .mobile-model-menu__models a:hover,
    .mobile-model-menu__models a:focus {
        color: var(--white);
    }

    .mobile-model-menu__family-link {
        color: rgba(255, 255, 255, 0.62) !important;
        font-size: 0.84rem !important;
        font-weight: 560 !important;
    }
}

@media (max-width: 620px) {
    :root {
        --site-chrome-gutter: 10px;
        --site-mega-gap: 8px;
    }
    html {
        scroll-padding-top: 88px;
    }

    .brand {
        width: 146px;
        height: 34px;
    }

    .brand img {
        width: 146px;
    }

    .site-header {
        top: 10px;
        right: var(--site-chrome-gutter);
        left: var(--site-chrome-gutter);
        grid-template-columns: auto auto;
        gap: 10px;
        width: auto;
        min-height: 58px;
        padding: 8px 8px 8px 12px;
        border-radius: 24px;
    }

    .model-mega__grid {
        grid-template-columns: 1fr;
    }

    .model-mega__panels {
        max-height: 58vh;
    }

    .nav-button {
        width: 46px;
        height: 46px;
    }

    .hero {
        height: 100svh;
        min-height: 560px;
        padding: 108px 18px 38px;
    }

    .hero-content {
        width: 100%;
        min-width: 0;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.18rem, 10.2vw, 2.58rem);
        overflow-wrap: anywhere;
    }

    .hero-actions {
        display: grid;
    }

    .hero-progress {
        display: flex;
        width: min(292px, 100%);
        margin-top: 16px;
    }

    .button {
        width: 100%;
    }

    .quick-access,
    .home-model-grid,
    .family-strip,
    .family-strip--dense,
    .model-grid,
    .post-grid,
    .post-grid--wide,
    .post-grid--related,
    .variant-grid,
    .gallery-grid,
    .lead-form {
        grid-template-columns: 1fr;
    }

    .news-landing-hero {
        min-height: 520px;
        padding: 118px 0 42px;
    }

    .news-landing-hero__content,
    .news-editorial__inner {
        width: min(100% - 32px, 520px);
    }

    .news-landing-hero h1 {
        font-size: clamp(2.7rem, 15vw, 4.2rem);
    }

    .news-landing-hero .button,
    .news-mosaic .post-card__button {
        width: 100%;
    }

    .news-editorial {
        padding-top: 44px;
    }

    .access-card {
        min-height: 220px;
    }

    .home-model-card {
        min-height: 360px;
    }

    .service-image img {
        min-height: 320px;
    }

    .service-copy,
    .contact-band {
        padding: 34px 18px;
    }

    .lead-actions {
        justify-content: stretch;
    }

    .model-detail {
        min-height: 84svh;
        padding: 104px 14px 34px;
        justify-content: center;
    }

    .model-detail-content {
        padding: 22px;
        border-radius: 28px;
        transform: none;
    }

    .model-detail--reveal.has-featured-reveal {
        height: 560svh;
    }

    .model-detail--reveal.has-featured-reveal .model-detail-sticky {
        height: calc(var(--mobile-viewport-height, 100dvh) + 2px);
        min-height: 100dvh;
        padding: 96px 20px 18px;
        justify-content: center;
    }

    .model-detail--reveal.has-featured-reveal .model-detail-content {
        left: 50%;
        right: auto;
        top: 54%;
        bottom: auto;
        width: min(342px, calc(100vw - 40px));
        max-width: none;
        max-height: calc(100svh - 96px);
        overflow: auto;
        overflow-x: hidden;
        padding: 20px 16px 17px;
        border-radius: 22px;
        transform: translate(-50%, calc(-50% + ((1 - var(--featured-offer-progress)) * 22px))) scale(calc(0.985 + (var(--featured-offer-progress) * 0.015)));
    }

    .model-name {
        max-width: 9ch;
        margin: 0 0 18px;
        font-size: 3.25rem;
        white-space: normal;
    }

    .model-price {
        flex-wrap: wrap;
        font-size: 2.2rem;
    }

    .model-detail--reveal.has-featured-reveal .model-price {
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 7px;
        font-size: clamp(1.08rem, 5.1vw, 1.34rem);
        font-weight: 560;
        line-height: 1.08;
    }

    .model-detail--reveal.has-featured-reveal .model-name {
        max-width: none;
        margin-bottom: 10px;
        font-size: clamp(2.08rem, 9.2vw, 2.48rem);
        font-weight: 640;
        line-height: 0.98;
        text-wrap: balance;
    }

    .model-detail--reveal.has-featured-reveal .model-kicker {
        margin-bottom: 8px;
        font-size: 0.74rem;
        font-weight: 600;
    }

    .model-detail--reveal.has-featured-reveal .model-price small {
        font-size: 0.7rem;
        font-weight: 500;
    }

    .model-detail--reveal.has-featured-reveal .model-lede {
        margin-bottom: 20px;
        font-size: 0.78rem;
        font-weight: 540;
        line-height: 1.35;
    }

    .model-detail--reveal.has-featured-reveal .model-specs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 22px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs span {
        min-width: 0;
        min-height: 86px;
        padding: 10px 6px;
        border-radius: 14px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs small {
        max-width: 100%;
        font-size: clamp(0.76rem, 3.25vw, 0.86rem);
        font-weight: 640;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .model-detail--reveal.has-featured-reveal .model-specs strong {
        max-width: 100%;
        font-size: clamp(0.78rem, 3.25vw, 0.88rem);
        font-weight: 620;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .model-price small {
        font-size: 1rem;
    }

    .model-lede {
        display: block;
        margin-bottom: 18px;
        font-size: 1rem;
    }

    .model-specs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .model-specs span {
        min-width: 0;
        min-height: 60px;
        padding: 12px 6px;
        border-radius: 14px;
    }

    .model-specs small {
        font-size: 0.86rem;
    }

    .model-specs strong {
        font-size: 0.82rem;
        overflow-wrap: anywhere;
    }

    .spec-table div {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 761px) and (max-width: 1024px) {
    .model-detail--reveal.has-featured-reveal .model-detail-sticky {
        padding: calc(var(--site-header-bottom, 88px) + 26px) 42px 42px;
    }

    .model-detail--reveal.has-featured-reveal .model-detail-content {
        right: clamp(34px, 7vw, 82px);
        top: 55%;
        width: min(470px, calc(100vw - 84px));
        padding: 26px 24px 24px;
        border-radius: 28px;
    }

    .model-detail--reveal.has-featured-reveal .model-name {
        margin-bottom: 16px;
        font-size: clamp(2.35rem, 5.3vw, 3.18rem);
        font-weight: 600;
        line-height: 1.04;
    }

    .model-detail--reveal.has-featured-reveal .model-price {
        gap: 8px;
        margin-bottom: 8px;
        font-size: clamp(1.65rem, 3.4vw, 2.12rem);
        font-weight: 620;
        line-height: 1.02;
    }

    .model-detail--reveal.has-featured-reveal .model-lede {
        margin-bottom: 24px;
        font-size: 0.96rem;
        line-height: 1.42;
    }

    .model-detail--reveal.has-featured-reveal .model-specs {
        gap: 10px;
        margin-bottom: 24px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs span {
        min-height: 84px;
        padding: 13px 10px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs small {
        font-size: 0.92rem;
    }

    .model-detail--reveal.has-featured-reveal .model-specs strong {
        font-size: 0.88rem;
    }

    .model-detail--reveal.has-featured-reveal .model-actions .button {
        min-height: 50px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .model-detail--reveal.has-featured-reveal .model-detail-content {
        right: clamp(56px, 9vw, 112px);
        width: min(490px, calc(100vw - 96px));
        padding: 30px 26px 28px;
    }

    .model-detail--reveal.has-featured-reveal .model-name {
        margin-bottom: 18px;
        font-size: clamp(2.75rem, 3.9vw, 3.45rem);
        font-weight: 620;
        line-height: 1.03;
    }

    .model-detail--reveal.has-featured-reveal .model-price {
        margin-bottom: 8px;
        font-size: clamp(1.8rem, 2.25vw, 2.15rem);
        font-weight: 620;
    }

    .model-detail--reveal.has-featured-reveal .model-lede {
        margin-bottom: 28px;
        font-size: 1rem;
    }

    .model-detail--reveal.has-featured-reveal .model-specs {
        margin-bottom: 28px;
    }
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) and (max-width: 1440px) and (max-height: 820px) {
    .model-detail--reveal.has-featured-reveal .model-detail-sticky {
        padding: calc(var(--site-header-bottom, 96px) + 78px) max(40px, calc((100vw - 1180px) / 2 + 24px)) 28px;
    }

    .model-detail--reveal.has-featured-reveal .model-detail-content {
        right: clamp(40px, 5vw, 72px);
        top: calc(var(--site-header-bottom, 96px) + 72px);
        width: min(462px, calc(100vw - 80px));
        max-height: calc(100svh - var(--site-header-bottom, 96px) - 92px);
        overflow: auto;
        padding: 22px 18px 17px;
        border-radius: 22px;
        transform: translateY(calc((1 - var(--featured-offer-progress)) * 22px)) scale(calc(0.985 + (var(--featured-offer-progress) * 0.015)));
    }

    .model-detail--reveal.has-featured-reveal .model-kicker {
        margin-bottom: 5px;
        font-size: 0.72rem;
    }

    .model-detail--reveal.has-featured-reveal .model-name {
        margin-bottom: 8px;
        font-size: clamp(1.85rem, 2.35vw, 2.2rem);
        font-weight: 580;
        line-height: 1.02;
    }

    .model-detail--reveal.has-featured-reveal .model-price {
        gap: 7px;
        margin-bottom: 4px;
        font-size: clamp(1.24rem, 1.75vw, 1.48rem);
        font-weight: 620;
    }

    .model-detail--reveal.has-featured-reveal .model-price small {
        font-size: 0.72rem;
    }

    .model-detail--reveal.has-featured-reveal .model-lede {
        margin-bottom: 12px;
        font-size: 0.76rem;
        line-height: 1.26;
    }

    .model-detail--reveal.has-featured-reveal .model-specs {
        gap: 8px;
        margin-bottom: 12px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs span {
        min-height: 58px;
        padding: 8px 7px;
        border-radius: 12px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs small {
        font-size: 0.72rem;
    }

    .model-detail--reveal.has-featured-reveal .model-specs strong {
        font-size: 0.72rem;
    }

    .model-detail--reveal.has-featured-reveal .model-actions {
        gap: 8px;
    }

    .model-detail--reveal.has-featured-reveal .model-actions .button {
        min-height: 38px;
        border-radius: 13px;
        font-size: 0.84rem;
    }
}

@media (max-width: 900px) and (max-height: 620px) and (orientation: landscape) {
    .model-detail--reveal.has-featured-reveal .model-detail-sticky {
        padding: calc(var(--site-header-bottom, 74px) + 4px) 20px 8px;
        justify-content: flex-end;
    }

    .model-detail--reveal.has-featured-reveal .model-detail-content {
        left: auto;
        right: 20px;
        top: calc(var(--site-header-bottom, 74px) + 2px);
        bottom: auto;
        width: min(414px, calc(100vw - 40px));
        max-height: calc(100svh - var(--site-header-bottom, 74px) - 6px);
        overflow: auto;
        padding: 12px 14px;
        border-radius: 18px;
        transform: translateY(calc((1 - var(--featured-offer-progress)) * 16px)) scale(calc(0.985 + (var(--featured-offer-progress) * 0.015)));
    }

    .model-detail--reveal.has-featured-reveal .model-kicker {
        margin-bottom: 4px;
        font-size: 0.68rem;
    }

    .model-detail--reveal.has-featured-reveal .model-name {
        max-width: none;
        margin-bottom: 5px;
        font-size: clamp(1.38rem, 3.6vw, 1.66rem);
        font-weight: 540;
        line-height: 1.02;
    }

    .model-detail--reveal.has-featured-reveal .model-price {
        gap: 6px;
        margin-bottom: 3px;
        font-size: clamp(0.96rem, 2.35vw, 1.12rem);
        font-weight: 560;
    }

    .model-detail--reveal.has-featured-reveal .model-price small {
        font-size: 0.66rem;
    }

    .model-detail--reveal.has-featured-reveal .model-lede {
        margin-bottom: 7px;
        font-size: 0.68rem;
        line-height: 1.24;
    }

    .model-detail--reveal.has-featured-reveal .model-specs {
        gap: 7px;
        margin-bottom: 8px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs span {
        min-height: 42px;
        padding: 6px 5px;
        border-radius: 11px;
    }

    .model-detail--reveal.has-featured-reveal .model-specs small {
        font-size: 0.68rem;
    }

    .model-detail--reveal.has-featured-reveal .model-specs strong {
        font-size: 0.68rem;
    }

    .model-detail--reveal.has-featured-reveal .model-actions {
        gap: 7px;
    }

    .model-detail--reveal.has-featured-reveal .model-actions .button {
        min-height: 32px;
        border-radius: 12px;
        font-size: 0.78rem;
    }
}

/* ------------------------------------------------------------------
   Admin layout (panel interno) — preservado
------------------------------------------------------------------ */
.admin-body {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background:
        linear-gradient(90deg, #0f1217 0 260px, transparent 260px),
        radial-gradient(circle at 14% 0%, rgba(215, 25, 32, 0.08), transparent 28rem),
        #eef1f5;
}

.admin-sidebar {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    overflow: visible;
    min-height: 100vh;
    max-height: none;
    padding: 24px 18px;
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 0% 0%, rgba(215, 25, 32, 0.24), transparent 18rem),
        #0f1217;
}

.admin-brand {
    display: block;
    margin-bottom: 28px;
    color: var(--white);
    font-weight: 850;
    text-transform: uppercase;
}

.admin-brand span {
    color: var(--red);
}

.admin-menu-toggle {
    display: none;
}

.admin-sidebar nav {
    display: grid;
    gap: 14px;
    overflow: visible;
    padding-bottom: 32px;
}

.admin-nav__section {
    display: grid;
    gap: 6px;
}

.admin-nav__section + .admin-nav__section {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-nav__heading {
    display: flex;
    min-height: 30px;
    align-items: center;
    margin-bottom: 4px;
    padding: 7px 11px;
    border-left: 3px solid rgba(215, 25, 32, 0.82);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(90deg, rgba(215, 25, 32, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.035);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-sidebar a {
    padding: 12px 14px;
    border-radius: 14px;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.admin-shell {
    min-width: 0;
}

.admin-shell--login {
    grid-column: 1 / -1;
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 14px;
    backdrop-filter: blur(18px);
}

.admin-topbar span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.admin-content {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.admin-login-card,
.admin-panel {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.admin-login-card {
    width: min(460px, 100%);
    padding: 34px;
}

.admin-login-card h1,
.admin-heading h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.admin-heading > div:first-child {
    flex: 1 1 0;
    min-width: 0;
}

.admin-heading,
.admin-edit-grid {
    width: min(100%, 1380px);
    margin-inline: auto;
}

.admin-content > .admin-panel,
.admin-content > .admin-grid,
.admin-content > .admin-stats {
    width: min(100%, 1380px);
    margin-inline: auto;
}

.admin-resource-list {
    width: min(100%, 1380px);
    margin-inline: auto;
}

.admin-heading--landing-resource,
.admin-resource-list--landing {
    width: min(100%, 1380px);
}

.admin-heading p {
    max-width: 720px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.admin-stats article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.admin-stats strong {
    display: block;
    font-size: 2rem;
}

.admin-stats span {
    color: var(--muted);
}

.admin-grid,
.admin-edit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.admin-edit-grid--modelos {
    grid-template-columns: minmax(0, 1fr);
}

.admin-edit-grid--landing-resource {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}

.admin-edit-grid--landing {
    grid-template-columns: minmax(0, 1fr);
}

.admin-edit-grid > .admin-panel,
.admin-edit-grid > .admin-form-actions {
    width: 100%;
    grid-column: 1 / -1;
}

.admin-edit-grid > .admin-panel.admin-form,
.admin-edit-grid--landing-resource > .admin-panel.admin-form,
.admin-edit-grid--modelos > .admin-panel.admin-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.admin-edit-grid > .admin-panel.admin-form > header,
.admin-edit-grid--landing-resource > .admin-panel.admin-form > header,
.admin-edit-grid--modelos > .admin-panel.admin-form > header {
    grid-column: 1 / -1;
}

.admin-panel {
    overflow: hidden;
}

.admin-panel > header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.admin-panel > header h2 {
    font-size: 1.25rem;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #343a43;
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0;
    text-transform: none;
}

.admin-table code {
    color: var(--red);
    overflow-wrap: anywhere;
    white-space: normal;
}

.admin-table__compact {
    width: 1%;
    text-align: center;
}

.admin-featured-heading,
.admin-featured-indicator,
.admin-featured-priority,
.admin-muted-value {
    display: inline-grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
}

.admin-featured-heading,
.admin-featured-indicator {
    border-radius: 999px;
    font-size: 0.9rem;
    line-height: 1;
}

.admin-featured-heading {
    color: var(--muted);
}

.admin-featured-indicator {
    color: rgba(39, 49, 60, 0.34);
    background: rgba(39, 49, 60, 0.06);
}

.admin-featured-indicator.is-active {
    color: var(--red);
    background: rgba(215, 25, 32, 0.1);
}

.admin-featured-priority {
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    background: rgba(39, 49, 60, 0.08);
}

.admin-muted-value {
    color: rgba(39, 49, 60, 0.34);
}

.admin-model-features-table td:nth-child(3) span {
    display: inline-block;
    margin-left: 4px;
    color: var(--muted);
    font-size: 0.82rem;
}

.admin-feature-groups {
    display: grid;
    grid-column: 1 / -1;
    gap: 24px;
}

.admin-feature-group {
    display: grid;
    gap: 12px;
}

.admin-feature-group__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(39, 49, 60, 0.12);
}

.admin-feature-group__header h3 {
    margin: 0;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.admin-feature-group__count {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 760;
    white-space: nowrap;
}

.admin-feature-group__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
}

@media (max-width: 1180px) {
    .admin-feature-group__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .admin-feature-group__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .admin-feature-group__grid {
        grid-template-columns: 1fr;
    }
}

.admin-feature-card {
    overflow: hidden;
    border: 1px solid rgba(39, 49, 60, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.74);
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.admin-feature-card.is-enabled {
    border-color: rgba(215, 25, 32, 0.32);
    background: rgba(215, 25, 32, 0.035);
}

.admin-feature-card.is-open {
    grid-column: 1 / -1;
    box-shadow: 0 14px 30px rgba(16, 17, 21, 0.1);
}

.admin-feature-card__summary {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-feature-card__icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(215, 25, 32, 0.16);
    border-radius: 9px;
    color: var(--red);
    background: rgba(215, 25, 32, 0.05);
}

.admin-feature-card__icon svg {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
}

.admin-feature-card__meta {
    display: grid;
    gap: 2px;
    min-width: 0;
    margin-right: auto;
}

.admin-feature-card__name {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 720;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.admin-feature-card__code {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-feature-card__state {
    flex: 0 0 auto;
    padding: 3px 9px;
    border: 1px solid rgba(39, 49, 60, 0.22);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-feature-card.is-enabled .admin-feature-card__state {
    border-color: transparent;
    color: #fff;
    background: var(--red);
}

.admin-feature-card__chevron {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--muted);
    transition: transform 0.18s ease;
}

.admin-feature-card__chevron svg {
    width: 18px;
    height: 18px;
}

.admin-feature-card.is-open .admin-feature-card__chevron {
    transform: rotate(180deg);
}

.admin-feature-card__summary:focus-visible {
    outline: 2px solid rgba(215, 25, 32, 0.5);
    outline-offset: -2px;
}

.admin-feature-card__body {
    display: grid;
    gap: 12px;
    padding: 6px 14px 16px;
    border-top: 1px solid rgba(39, 49, 60, 0.1);
}

.admin-feature-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 780;
}

.admin-feature-card__body .admin-feature-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.admin-feature-toggle input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    accent-color: var(--red);
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-form {
    display: grid;
    gap: 16px;
    padding: 20px;
}

.admin-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.admin-form .admin-rich-editor-field {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.admin-form .admin-rich-editor-field > span {
    display: block;
}

.admin-rich-textarea {
    min-height: 360px;
    resize: vertical;
}

.admin-rich-editor-field .tox-tinymce {
    border-color: var(--line);
    border-radius: 12px;
    background: var(--white);
}

.admin-rich-editor-field .tox .tox-toolbar,
.admin-rich-editor-field .tox .tox-toolbar__overflow,
.admin-rich-editor-field .tox .tox-toolbar__primary {
    background: rgba(246, 247, 248, 0.94);
}

.admin-rich-editor-field .tox .tox-statusbar {
    border-top-color: rgba(16, 17, 21, 0.1);
}

.admin-rich-editor-field .tox .tox-edit-area::before {
    border-color: rgba(215, 25, 32, 0.42);
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-page-hero-slide-fields input,
.admin-page-hero-slide-fields select {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font: inherit;
}

.password-field {
    position: relative;
    display: block;
}

.admin-form .password-field input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 9px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(16, 17, 21, 0.52);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.16s ease, color 0.16s ease;
}

.password-toggle:hover,
.password-toggle:focus {
    background: rgba(16, 17, 21, 0.06);
    color: var(--ink);
}

.password-toggle:focus-visible {
    outline: 2px solid rgba(215, 25, 32, 0.52);
    outline-offset: 2px;
}

.password-toggle__icon--hide {
    display: none;
}

.password-field.is-visible .password-toggle__icon--show {
    display: none;
}

.password-field.is-visible .password-toggle__icon--hide {
    display: block;
}

.admin-form textarea {
    resize: vertical;
}

.admin-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
}

.admin-check input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
}

/* Promociones: asignación de modelos del banner */
.admin-promo-models__label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.admin-promo-models__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px 16px;
    margin-bottom: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 12px;
    background: rgba(16, 17, 21, 0.02);
    max-height: 280px;
    overflow-y: auto;
}

.admin-promo-models__grid .admin-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.admin-promo-models__grid .admin-check input[type="checkbox"] {
    flex: 0 0 auto;
    margin: 0;
}

/* Promociones: panel de conflicto de banners */
.admin-banner-conflicts {
    border: 1px solid rgba(215, 25, 32, 0.4);
    background: rgba(215, 25, 32, 0.04);
}

.admin-banner-conflicts > header h2 {
    color: var(--red-dark);
}

.admin-banner-conflict {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(215, 25, 32, 0.25);
    border-radius: 12px;
    background: var(--white);
}

.admin-banner-conflict legend {
    padding: 0 6px;
    font-weight: 800;
}

.admin-banner-conflict .admin-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 6px 0;
    flex-wrap: wrap;
}

.admin-banner-conflict .admin-check input[type="radio"] {
    width: 18px;
    min-height: 18px;
    flex: 0 0 auto;
    margin: 0;
}

.admin-banner-conflict .admin-check em {
    color: var(--red);
    font-style: normal;
    font-weight: 700;
}

.admin-banner-conflict .admin-check small {
    color: rgba(39, 49, 60, 0.62);
}

.admin-field-wide,
.admin-form-actions {
    grid-column: 1 / -1;
}

/* Herramientas de importacion: Excel + Google Sheet */
.admin-price-tools__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px 20px;
}

.admin-price-tool {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(248, 249, 251, 0.7);
}

.admin-price-tool__body h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
}

.admin-price-tool__body p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.42;
}

.admin-price-tool__body code {
    color: var(--red);
    font-size: 0.85em;
}

.admin-price-tool__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.admin-price-tool__form label {
    display: grid;
    gap: 6px;
    color: rgba(39, 49, 60, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
}

.admin-price-tool__form input[type="file"] {
    width: 100%;
    min-height: 38px;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    color: rgba(39, 49, 60, 0.7);
    font-weight: 650;
}

.admin-price-tool__form input[type="file"]::file-selector-button {
    min-height: 28px;
    margin-right: 10px;
    padding: 5px 10px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 9px;
    background: #ffffff;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.admin-price-tool__form .button {
    align-self: flex-start;
    min-height: 38px;
    white-space: nowrap;
}

/* Historial de importaciones */
.admin-price-imports {
    padding: 8px 20px 20px;
}

.admin-price-imports h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 0.95rem;
}

.admin-sheet-imports-table th,
.admin-sheet-imports-table td {
    padding: 12px 14px;
    vertical-align: middle;
}

.admin-sheet-imports-table th:first-child,
.admin-sheet-imports-table td:first-child {
    padding-left: 0;
}

.admin-sheet-imports-table th:last-child,
.admin-sheet-imports-table td:last-child {
    padding-right: 0;
}

.admin-sheet-imports-table th.admin-num,
.admin-sheet-imports-table td.admin-num {
    width: 1%;
    text-align: center;
    white-space: nowrap;
}

.admin-sheet-imports-table td.admin-num {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.admin-sheet-imports-table td.admin-num.is-zero {
    color: rgba(39, 49, 60, 0.32);
    font-weight: 600;
}

.admin-sheet-imports-table td.admin-num.is-warning {
    color: #8a6200;
}

.admin-sheet-imports-table td.admin-num.is-error {
    color: var(--red);
}

.admin-sheet-imports-table th.admin-col-actions,
.admin-sheet-imports-table td.admin-col-actions {
    width: 1%;
    text-align: right;
    white-space: nowrap;
}

.admin-sheet-imports-table td.admin-col-actions .button {
    min-height: 32px;
    padding-inline: 14px;
}

.admin-import-ref {
    font-weight: 800;
}

.admin-sheet-imports-table small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    line-height: 1.4;
}

.admin-import-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(39, 49, 60, 0.08);
    color: rgba(39, 49, 60, 0.7);
    font-size: 0.8rem;
    font-weight: 750;
    white-space: nowrap;
}

.admin-import-status--draft {
    background: rgba(214, 158, 0, 0.14);
    color: #8a6200;
}

.admin-import-status--ready {
    background: rgba(28, 110, 211, 0.12);
    color: #1457a8;
}

.admin-import-status--published {
    background: rgba(28, 160, 90, 0.14);
    color: #137a45;
}

.admin-import-status--failed {
    background: rgba(215, 25, 32, 0.12);
    color: var(--red-dark);
}

/* Detalle de importacion: resumen */
.admin-import-overview {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.admin-import-overview__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
}

.admin-import-overview__head .admin-import-status {
    font-size: 0.86rem;
    padding: 5px 13px;
}

.admin-import-overview__prev {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.admin-import-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.admin-import-stat {
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(248, 249, 251, 0.7);
}

.admin-import-stat strong {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.admin-import-stat span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.admin-import-stat--warning {
    border-color: rgba(214, 158, 0, 0.34);
    background: rgba(214, 158, 0, 0.08);
}

.admin-import-stat--warning strong {
    color: #8a6200;
}

.admin-import-stat--error {
    border-color: rgba(215, 25, 32, 0.28);
    background: rgba(215, 25, 32, 0.06);
}

.admin-import-stat--error strong {
    color: var(--red-dark);
}

.admin-import-overview__note {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.admin-import-overview__note strong {
    color: var(--ink);
}

.admin-import-publish {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.admin-import-publish small {
    color: var(--muted);
    font-size: 0.84rem;
}

/* Detalle de importacion: tabla de filas revisadas */
.admin-import-rows-table {
    width: 100%;
    font-size: 0.9rem;
}

.admin-import-rows-table th,
.admin-import-rows-table td {
    padding: 12px 14px;
    vertical-align: top;
}

.admin-import-rows-table th.admin-num,
.admin-import-rows-table td.admin-num {
    width: 1%;
    white-space: nowrap;
}

.admin-import-rows-table td.admin-num {
    font-variant-numeric: tabular-nums;
}

.admin-import-rows-table th:nth-child(7),
.admin-import-rows-table td:nth-child(7) {
    white-space: nowrap;
}

.admin-import-rows-table td small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.36;
}

.admin-import-rows-table td code {
    display: inline-block;
    margin-top: 3px;
    font-size: 0.78rem;
}

.admin-inline-action {
    margin-top: 8px;
}

.admin-inline-action .button {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.78rem;
}

.admin-row-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(39, 49, 60, 0.08);
    color: rgba(39, 49, 60, 0.7);
    font-size: 0.78rem;
    font-weight: 750;
    white-space: nowrap;
}

.admin-row-status--ready {
    background: rgba(28, 160, 90, 0.14);
    color: #137a45;
}

.admin-row-status--warning {
    background: rgba(214, 158, 0, 0.16);
    color: #8a6200;
}

.admin-row-status--error {
    background: rgba(215, 25, 32, 0.12);
    color: var(--red-dark);
}

.admin-row-status--skipped {
    background: rgba(39, 49, 60, 0.08);
    color: rgba(39, 49, 60, 0.5);
}

.admin-price-index {
    display: grid;
    gap: 28px;
    width: min(100%, 1380px);
    margin-inline: auto;
}

.admin-price-index > .admin-heading,
.admin-price-index > .admin-panel {
    width: 100%;
}

.admin-price-groups {
    display: grid;
    gap: 18px;
}

.admin-price-model-group {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 251, 0.86)),
        #ffffff;
    box-shadow: 0 18px 42px rgba(16, 17, 21, 0.07);
}

.admin-price-model-group__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
    background:
        linear-gradient(90deg, rgba(215, 25, 32, 0.08), rgba(255, 255, 255, 0.78) 42%),
        rgba(255, 255, 255, 0.84);
}

.admin-price-model-group__header h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.2;
}

.admin-price-model-group__header span {
    display: inline-block;
    margin-top: 4px;
    color: rgba(39, 49, 60, 0.66);
    font-size: 0.94rem;
}

.admin-price-model-group__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 220px;
    text-align: right;
}

.admin-price-model-group__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}

.admin-price-model-group__actions form {
    margin: 0;
}

.admin-price-model-group__meta strong {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(215, 25, 32, 0.16);
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.08);
    color: var(--red-dark);
    font-size: 0.84rem;
}

.admin-price-model-group__meta code {
    color: rgba(39, 49, 60, 0.54);
    font-size: 0.78rem;
}

.admin-price-model-group .admin-table-wrap {
    border-radius: 0;
    box-shadow: none;
}

.admin-price-variants-table th:first-child,
.admin-price-variants-table td:first-child {
    width: 19%;
}

.admin-price-variants-table th:nth-child(2),
.admin-price-variants-table td:nth-child(2) {
    width: 21%;
}

.admin-price-variants-table th:nth-child(3),
.admin-price-variants-table td:nth-child(3) {
    width: 7%;
    white-space: nowrap;
}

.admin-price-variants-table th:nth-child(4),
.admin-price-variants-table td:nth-child(4) {
    width: 7%;
    white-space: nowrap;
}

.admin-price-variants-table th:nth-child(5),
.admin-price-variants-table td:nth-child(5) {
    width: 9%;
    white-space: nowrap;
    text-transform: none;
}

.admin-price-variants-table th:nth-child(6),
.admin-price-variants-table td:nth-child(6) {
    width: 11%;
    white-space: nowrap;
}

.admin-price-variants-table th:nth-child(7),
.admin-price-variants-table td:nth-child(7) {
    width: 18%;
    white-space: normal;
}

.admin-price-variants-table th:nth-child(8),
.admin-price-variants-table td:nth-child(8) {
    width: 8%;
}

.admin-price-variants-table td small {
    color: var(--muted);
    font-size: 0.78rem;
}

.admin-price-promotion-cell strong {
    display: block;
    color: var(--red-dark);
    font-size: 0.88rem;
    font-weight: 720;
    line-height: 1.25;
}

.admin-price-promotion-cell small {
    display: block;
    max-width: 240px;
    margin-top: 3px;
    line-height: 1.3;
}

.admin-price-variants-table th.is-sortable {
    cursor: pointer;
    user-select: none;
}

.admin-price-variants-table th button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-price-variants-table th.is-sortable::after,
.admin-price-variants-table th button::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    opacity: 0.28;
    transform: translateY(1px);
}

.admin-price-variants-table th.is-sortable::after {
    border-top: 5px solid currentColor;
}

.admin-price-variants-table th:has(button)::after {
    content: none;
}

.admin-price-variants-table th button::after {
    border-top: 5px solid currentColor;
}

.admin-price-variants-table th.is-sort-asc::after,
.admin-price-variants-table th.is-sort-asc button::after {
    border-top: 0;
    border-bottom: 5px solid currentColor;
    opacity: 0.85;
}

.admin-price-variants-table th.is-sort-desc::after,
.admin-price-variants-table th.is-sort-desc button::after {
    border-top: 5px solid currentColor;
    border-bottom: 0;
    opacity: 0.85;
}

.admin-price-variants-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-price-status-cell {
    white-space: nowrap;
}

.admin-price-status-cell__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.admin-primary-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.09);
    color: var(--red-dark);
    font-size: 0.76rem;
    font-weight: 850;
}

.admin-price-model-group__header {
    padding-top: 14px;
    padding-bottom: 14px;
}

.admin-price-variants-table th,
.admin-price-variants-table td {
    padding-top: 9px;
    padding-bottom: 9px;
}

.admin-price-variants-table th button {
    min-height: 22px;
}

.admin-price-variants-table td {
    line-height: 1.25;
}

.admin-primary-badge {
    padding: 3px 7px;
    font-size: 0.72rem;
}

.admin-price-empty {
    margin: 0;
    padding: 18px 20px;
    border: 1px dashed rgba(16, 17, 21, 0.16);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.74);
}

.admin-price-model-form {
    display: grid;
    gap: 18px;
    width: min(100%, 1380px);
    margin-inline: auto;
}

.admin-price-variant-list {
    display: grid;
    gap: 12px;
}

.admin-price-variant-card {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 42px rgba(16, 17, 21, 0.07);
}

.admin-price-variant-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(105deg, rgba(215, 25, 32, 0.08), rgba(255, 255, 255, 0.94) 38%),
        #ffffff;
    box-shadow: none;
}

.admin-price-variant-card__title {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.admin-price-variant-index {
    margin: 0;
    color: var(--red-dark);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
}

.admin-price-variant-card__header h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.02rem, 1.26vw, 1.34rem);
    line-height: 1.08;
}

.admin-price-variant-card__body {
    display: grid;
    gap: 12px;
    padding: 12px;
    border-top: 1px solid rgba(16, 17, 21, 0.08);
    background: rgba(247, 248, 250, 0.72);
}

.admin-price-variant-card__body[hidden] {
    display: none !important;
}

.admin-price-variant-card.is-removed {
    display: none;
}

.admin-price-variant-card__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.admin-price-variant-toggle,
.admin-price-variant-remove {
    min-height: 38px;
    padding-right: 14px;
    padding-left: 14px;
}

.admin-price-variant-toggle:hover,
.admin-price-variant-toggle:focus,
.admin-price-variant-remove:hover,
.admin-price-variant-remove:focus {
    border-color: rgba(215, 25, 32, 0.48);
    background: rgba(215, 25, 32, 0.08);
    color: var(--red-dark);
}

.admin-primary-finance-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 7px 12px;
    border: 1px solid rgba(215, 25, 32, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--red-dark);
    font-size: 0.84rem;
    font-weight: 850;
    white-space: nowrap;
}

.admin-primary-finance-option input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--red);
}

.admin-price-variant-section {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 16px;
    align-items: start;
}

.admin-price-variant-section > header {
    grid-column: 1 / -1;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
}

.admin-price-variant-section > header h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.18rem;
}

.admin-price-variant-section label {
    gap: 6px;
}

.admin-price-variant-section input,
.admin-price-variant-section select,
.admin-price-variant-section textarea {
    min-height: 40px;
    padding-block: 9px;
}

.admin-price-field--full {
    grid-column: 1 / -1;
}

.admin-price-variant-section textarea {
    min-height: 88px;
}

.admin-edit-grid--price-finance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-edit-grid--price-finance > .admin-panel.admin-form {
    align-content: start;
}

@media (max-width: 1180px) {
    .admin-price-variant-section {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.admin-form-actions {
    display: flex;
    gap: 10px;
}

.admin-related-panel > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-related-panel > header p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-related-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.admin-seo-block-list {
    display: grid;
    gap: 12px;
    padding: 18px 20px 20px;
}

.admin-seo-block-card {
    display: grid;
    gap: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
}

.admin-seo-block-card.is-open {
    gap: 14px;
    padding: 16px;
}

.admin-seo-block-card.is-removed {
    opacity: 0.46;
}

.admin-seo-block-card.is-removed .admin-seo-block-fields {
    display: none;
}

.admin-seo-block-card__head,
.admin-seo-block-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-seo-block-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-seo-block-summary {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.admin-seo-block-card .admin-seo-block-summary strong {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    margin: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.admin-seo-block-card .admin-seo-block-summary span {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 750;
}

.admin-icon-button {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
    font: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.admin-icon-button:hover,
.admin-icon-button:focus {
    border-color: rgba(215, 25, 32, 0.38);
    background: var(--white);
    color: var(--red);
}

.admin-icon-button:focus-visible {
    outline: 2px solid rgba(215, 25, 32, 0.34);
    outline-offset: 2px;
}

.admin-seo-block-card span,
.admin-seo-block-card small {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
}

.admin-seo-block-card .admin-icon-button span {
    color: inherit;
    font-size: inherit;
    line-height: 1;
}

.admin-seo-block-card__head > div:not(.admin-seo-block-summary) strong {
    display: block;
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 0.98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-seo-block-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.admin-seo-block-card:not(.is-open) .admin-seo-block-fields {
    display: none;
}

.admin-seo-block-fields label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.admin-seo-block-fields .admin-rich-editor-field {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.admin-seo-block-fields input,
.admin-seo-block-fields select,
.admin-seo-block-fields textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font: inherit;
}

.admin-seo-block-fields textarea {
    resize: vertical;
}

.admin-rich-editor {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
}

.admin-rich-editor__top {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.1);
    background: rgba(246, 247, 248, 0.92);
}

.admin-rich-editor__toolbar {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 8px;
}

.admin-rich-editor__toolbar select,
.admin-rich-editor__toolbar button,
.admin-rich-editor__tabs button {
    min-height: 32px;
    border: 1px solid rgba(16, 17, 21, 0.13);
    border-radius: 4px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 0.86rem;
}

.admin-rich-editor__toolbar select {
    width: auto;
    min-width: 126px;
    padding: 5px 28px 5px 9px;
}

.admin-rich-editor__toolbar button {
    min-width: 34px;
    padding: 5px 9px;
    cursor: pointer;
}

.admin-rich-editor__toolbar button:hover,
.admin-rich-editor__toolbar button:focus,
.admin-rich-editor__tabs button:hover,
.admin-rich-editor__tabs button:focus {
    border-color: rgba(215, 25, 32, 0.34);
    color: var(--red);
}

.admin-rich-editor.is-code .admin-rich-editor__toolbar {
    opacity: 0.42;
    pointer-events: none;
}

.admin-rich-editor__tabs {
    display: flex;
    align-items: end;
    padding: 8px 8px 0 0;
}

.admin-rich-editor__tabs button {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 7px 12px;
    color: var(--muted);
    cursor: pointer;
}

.admin-rich-editor__tabs button.is-active {
    border-bottom-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.admin-rich-editor__visual,
.admin-rich-editor__code {
    display: none;
    width: 100%;
    min-height: 220px;
    border: 0;
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    line-height: 1.58;
}

.admin-rich-editor__visual {
    padding: 14px;
    overflow: auto;
}

.admin-rich-editor__visual:focus {
    outline: 0;
}

.admin-rich-editor__visual.is-active,
.admin-rich-editor__code.is-active {
    display: block;
}

.admin-seo-block-fields .admin-rich-editor__code {
    min-height: 220px;
    border: 0;
    border-radius: 0;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.88rem;
    resize: vertical;
    box-shadow: none;
}

.admin-form .admin-rich-editor__code {
    height: 640px;
    min-height: 360px;
    padding: 14px;
    border: 0;
    border-radius: 0;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.9rem;
    resize: vertical;
    box-shadow: none;
}

.admin-form .admin-rich-editor__visual {
    height: 640px;
    min-height: 360px;
    resize: vertical;
    overflow: auto;
}

.admin-empty-related {
    padding: 18px;
    border: 1px dashed rgba(16, 17, 21, 0.18);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.55);
}

.admin-alert {
    position: relative;
    padding: 18px 20px 18px 56px;
    border-radius: 16px;
    font-weight: 500;
    line-height: 1.45;
    box-shadow: 0 18px 42px rgba(16, 17, 21, 0.08);
}

.admin-alert::before {
    position: absolute;
    left: 18px;
    top: 18px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
}

.admin-alert--error::before {
    content: "!";
    background: var(--red);
    color: #ffffff;
}

.admin-alert--error {
    border: 1px solid rgba(215, 25, 32, 0.34);
    border-left: 5px solid var(--red);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.13), rgba(255, 255, 255, 0.9) 58%),
        rgba(255, 244, 244, 0.94);
    color: var(--red-dark);
    font-weight: 750;
}

.admin-alert--success::before {
    content: "\2713";
    background: var(--green);
    color: #ffffff;
}

.admin-alert--success {
    border: 1px solid rgba(36, 89, 74, 0.28);
    border-left: 5px solid var(--green);
    background:
        linear-gradient(135deg, rgba(36, 89, 74, 0.13), rgba(255, 255, 255, 0.88) 58%),
        rgba(241, 249, 245, 0.94);
    color: var(--green);
}

.admin-alert--info {
    border: 1px solid rgba(31, 94, 154, 0.18);
    border-left: 5px solid #2f6da3;
    background: rgba(31, 94, 154, 0.08);
    color: #24476b;
}

.admin-alert--info::before {
    content: "i";
    background: #2f6da3;
    color: #ffffff;
    font-family: Georgia, serif;
}

.admin-heading--technical-sheet,
.admin-heading--model-colors,
.admin-heading--image-management {
    align-items: start;
}

.admin-heading--technical-sheet > div,
.admin-heading--model-colors > div,
.admin-heading--image-management > div {
    display: grid;
    gap: 8px;
}

.admin-heading.admin-heading--technical-sheet h1,
.admin-heading.admin-heading--model-colors h1,
.admin-heading.admin-heading--image-management h1 {
    font-size: 2.55rem;
    line-height: 1.02;
}

.admin-heading--technical-sheet .button.secondary,
.admin-heading--model-colors .button.secondary,
.admin-heading--image-management .button.secondary,
.admin-spec-row > .button.secondary,
.admin-spec-add.button.secondary {
    border-color: rgba(16, 17, 21, 0.14);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.76);
}

.admin-heading--technical-sheet .button.secondary:hover,
.admin-heading--technical-sheet .button.secondary:focus,
.admin-heading--model-colors .button.secondary:hover,
.admin-heading--model-colors .button.secondary:focus,
.admin-heading--image-management .button.secondary:hover,
.admin-heading--image-management .button.secondary:focus,
.admin-spec-row > .button.secondary:hover,
.admin-spec-row > .button.secondary:focus,
.admin-spec-add.button.secondary:hover,
.admin-spec-add.button.secondary:focus {
    border-color: rgba(215, 25, 32, 0.22);
    color: var(--red);
    background: rgba(255, 255, 255, 0.95);
}

.admin-technical-model-title {
    max-width: 980px;
    color: var(--ink);
    font-size: 1.26rem;
    line-height: 1.2;
}

.admin-technical-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.admin-technical-summary span {
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-edit-grid--technical-sheet {
    grid-template-columns: 1fr;
    align-items: start;
}

.admin-form.admin-technical-card {
    grid-template-columns: minmax(180px, 0.9fr) minmax(220px, 1.15fr) minmax(150px, 0.65fr);
    align-items: end;
}

.admin-technical-card header,
.admin-technical-card .admin-alert {
    grid-column: 1 / -1;
}

.admin-edit-grid > .admin-panel.admin-form.admin-technical-specs {
    grid-template-columns: 1fr;
    overflow: hidden;
}

.admin-technical-specs > header,
.admin-technical-specs > .admin-spec-header,
.admin-technical-specs > .admin-spec-list,
.admin-technical-specs > .admin-spec-add {
    grid-column: 1 / -1;
}

.admin-spec-list {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.admin-spec-header,
.admin-spec-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.75fr) minmax(180px, 1fr) minmax(260px, 1.7fr) minmax(72px, 0.34fr) max-content;
    gap: 10px;
    min-width: 0;
}

.admin-spec-header {
    position: static;
    align-items: center;
    padding: 0 12px 6px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.1);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.admin-spec-row {
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 251, 252, 0.78)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 28px rgba(16, 17, 21, 0.045);
}

.admin-spec-header span,
.admin-spec-row > * {
    min-width: 0;
}

.admin-spec-row label {
    gap: 0;
    min-width: 0;
}

.admin-spec-field-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.admin-spec-row input,
.admin-spec-row textarea {
    height: 38px;
    min-height: 38px;
    min-width: 0;
    padding: 8px 10px;
}

.admin-spec-row textarea {
    resize: vertical;
    overflow: auto;
    line-height: 1.28;
}

.admin-spec-row.is-removed {
    opacity: 0.45;
}

.admin-spec-row.is-removed label {
    pointer-events: none;
}

.admin-spec-row__value textarea {
    height: auto;
    min-height: 44px;
    max-height: 120px;
}

.admin-spec-row > .button {
    height: 38px;
    min-height: 38px;
    padding-right: 14px;
    padding-left: 14px;
    white-space: nowrap;
}

.admin-spec-row .admin-check {
    display: flex;
    justify-content: center;
    height: 38px;
    min-height: 38px;
    align-content: center;
    padding: 0 8px;
}

.admin-spec-row .admin-check input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    height: 18px;
    padding: 0;
}

.admin-spec-add {
    justify-self: start;
    margin-top: 12px;
    width: fit-content;
}

.admin-edit-grid--forms,
.admin-form.admin-form-fields-panel {
    grid-template-columns: 1fr;
}

.admin-form.admin-form-settings {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.admin-form-settings header,
.admin-form-settings .admin-alert {
    grid-column: 1 / -1;
}

.admin-form-field-list {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.admin-form-field-header,
.admin-form-field-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.9fr) minmax(180px, 1fr) minmax(130px, 0.7fr) minmax(180px, 1fr) minmax(110px, 0.55fr) minmax(82px, 0.4fr) auto;
    gap: 10px;
}

.admin-form-field-header {
    position: sticky;
    top: 0;
    z-index: 2;
    align-items: center;
    padding: 0 12px 6px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.1);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.admin-form-field-row {
    align-items: end;
    padding: 10px 12px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 251, 252, 0.78)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 28px rgba(16, 17, 21, 0.045);
}

.admin-form-field-row label {
    gap: 0;
}

.admin-form-field-row input,
.admin-form-field-row select,
.admin-form-field-row textarea {
    min-height: 38px;
    padding: 8px 10px;
}

.admin-form-field-row > .button {
    height: 38px;
    min-height: 38px;
    padding-right: 14px;
    padding-left: 14px;
    white-space: nowrap;
}

.admin-form-field-required .admin-check {
    display: flex;
    justify-content: center;
    height: 38px;
    min-height: 38px;
    padding: 0 8px;
}

.admin-form-field-required .admin-check input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    height: 18px;
    padding: 0;
}

.admin-form-field-options {
    grid-column: 1 / span 4;
}

.admin-form-field-rules {
    grid-column: span 3;
}

.admin-form-field-options textarea {
    resize: vertical;
}

.admin-form-field-row.is-removed {
    opacity: 0.45;
}

.admin-form-field-row.is-removed label {
    pointer-events: none;
}

.admin-edit-grid--model-colors,
.admin-form.admin-model-colors-panel {
    grid-template-columns: 1fr;
}

.admin-form.admin-model-colors-panel {
    container-type: inline-size;
}

.admin-empty-muted {
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-model-color-header,
.admin-model-color-row {
    display: grid;
    grid-template-columns: 88px minmax(180px, 0.9fr) minmax(240px, 1.2fr) 92px 74px 86px 260px;
    gap: 10px;
    min-width: 0;
}

.admin-model-color-header {
    align-items: center;
    padding: 0 12px 6px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.1);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.admin-model-color-list {
    display: grid;
    gap: 8px;
}

.admin-model-color-row {
    align-items: center;
    min-height: 80px;
    padding: 10px 12px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 251, 252, 0.78)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 28px rgba(16, 17, 21, 0.045);
}

.admin-model-color-row label {
    gap: 0;
    min-width: 0;
}

.admin-model-color-row input,
.admin-model-color-row select {
    height: 38px;
    min-height: 38px;
    padding: 8px 10px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-model-color-row > .button,
.admin-model-color-actions > .button {
    height: 38px;
    min-height: 38px;
    padding-right: 14px;
    padding-left: 14px;
    white-space: nowrap;
}

.admin-model-color-image-cell {
    display: grid;
    width: 88px;
}

.admin-model-color-preview {
    display: grid;
    width: 88px;
    height: 58px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.admin-model-color-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-model-color-preview span {
    padding: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

.admin-model-color-status {
    display: inline-grid;
    width: fit-content;
    min-width: 74px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border: 1px solid rgba(22, 128, 73, 0.2);
    border-radius: 999px;
    background: rgba(22, 128, 73, 0.08);
    color: #167149;
    font-size: 0.76rem;
    font-weight: 800;
}

.admin-model-color-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
}

.admin-model-color-actions > .button {
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
    border-color: rgba(16, 17, 21, 0.14);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font-size: 0.78rem;
}

.admin-model-color-actions > .button:hover,
.admin-model-color-actions > .button:focus {
    border-color: rgba(215, 25, 32, 0.35);
    background: #fff;
    color: var(--red);
}

.admin-model-color-actions > .admin-danger-button:hover,
.admin-model-color-actions > .admin-danger-button:focus {
    border-color: rgba(215, 25, 32, 0.5);
    background: rgba(215, 25, 32, 0.08);
}

.admin-model-color-row.is-inactive {
    background:
        linear-gradient(180deg, rgba(248, 249, 251, 0.88), rgba(244, 245, 247, 0.74)),
        rgba(255, 255, 255, 0.72);
}

.admin-model-color-row.is-inactive .admin-model-color-status {
    border-color: rgba(93, 102, 114, 0.22);
    background: rgba(93, 102, 114, 0.08);
    color: var(--muted);
}

.admin-model-color-row.is-removed {
    opacity: 0.45;
}

.admin-model-color-row.is-removed label,
.admin-model-color-row.is-removed .admin-model-color-preview,
.admin-model-color-row.is-removed .admin-model-color-status {
    pointer-events: none;
}

@container (max-width: 1320px) {
    .admin-model-color-header {
        display: none;
    }

    .admin-model-color-row {
        grid-template-columns: 96px minmax(150px, 0.95fr) minmax(210px, 1.15fr) 90px 74px minmax(80px, auto);
        align-items: end;
        gap: 12px;
        padding: 14px;
    }

    .admin-model-color-image-cell {
        grid-row: span 2;
        align-self: stretch;
        width: 96px;
    }

    .admin-model-color-preview {
        width: 96px;
        height: 100%;
        min-height: 86px;
    }

    .admin-model-color-row .admin-spec-field-label {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        color: var(--muted);
        font-size: 0.74rem;
        font-weight: 800;
        line-height: 1.1;
        white-space: normal;
    }

    .admin-model-color-row label {
        gap: 6px;
    }

    .admin-model-color-status {
        align-self: end;
        margin-bottom: 4px;
    }

    .admin-model-color-actions {
        grid-column: 2 / -1;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .admin-model-color-actions > .button {
        flex: 0 1 auto;
    }
}

.admin-image-table strong,
.admin-image-table small {
    display: block;
}

.admin-image-index-panel {
    overflow: hidden;
}

.admin-list-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
    background: rgba(255, 255, 255, 0.44);
}

.admin-list-tools__search {
    display: grid;
    gap: 7px;
    width: min(430px, 100%);
}

.admin-list-tools label {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.admin-list-tools input {
    min-height: 44px;
    width: 100%;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.82);
    font: inherit;
}

.admin-list-tools__count {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.admin-image-table small,
.admin-muted {
    color: var(--muted);
    font-size: 0.86rem;
}

.admin-image-thumb {
    width: 74px;
    height: 48px;
    object-fit: contain;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-table td.admin-actions {
    display: table-cell;
    width: 1%;
    min-width: 138px;
    white-space: nowrap;
    vertical-align: middle;
}

.admin-table td.admin-actions .button {
    min-width: 108px;
    justify-content: center;
}

.admin-table td.admin-actions form {
    display: inline-block;
    margin: 0 0 0 8px;
}

.backup-notice,
.backup-panel {
    width: min(100%, 1380px);
    margin-inline: auto;
}

.backup-panel > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.backup-panel > header p {
    margin: 6px 0 4px;
    color: var(--muted);
}

.backup-panel > header small {
    color: var(--muted);
}

.backup-actions {
    min-width: 244px;
}

.cache-heading,
.cache-kpis,
.cache-panel {
    width: min(100%, 1380px);
    margin-inline: auto;
}

.cache-danger {
    background: var(--red);
    border-color: var(--red);
}

.cache-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.cache-kpi {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.cache-kpi span {
    color: var(--muted);
    font-size: 0.84rem;
}

.cache-kpi strong {
    color: var(--ink);
    font-size: 1.55rem;
}

.cache-kpi strong.is-ok {
    color: var(--green);
}

.cache-kpi strong.is-muted {
    color: var(--muted);
}

.cache-panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cache-config-form,
.cache-url-form {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.cache-config-form {
    grid-template-columns: minmax(180px, 0.4fr) minmax(120px, 0.2fr) minmax(280px, 1fr) auto;
    align-items: end;
}

.cache-config-form label,
.cache-url-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.cache-config-form input[type="number"],
.cache-config-form textarea,
.cache-url-form input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--ink);
    background: #ffffff;
}

.cache-switch span:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 650;
}

.cache-exclusions textarea {
    min-height: 96px;
    resize: vertical;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.cache-section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px;
}

.cache-section-actions form {
    margin: 0;
}

.cache-section-actions .button {
    gap: 10px;
}

.cache-section-actions .button span {
    display: inline-grid;
    min-width: 26px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    background: var(--muted);
}

.cache-url-form {
    grid-template-columns: minmax(0, 1fr) auto;
}

.cache-table td:first-child code {
    color: var(--red);
}

.admin-heading--feeds {
    align-items: end;
}

.admin-feed-panel > header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.admin-feed-panel > header p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.admin-feed-panel__body {
    padding: 18px 20px 20px;
}

.admin-feed-empty {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.admin-feed-create-form {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: end;
    gap: 14px;
}

.admin-feed-create-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.admin-feed-create-form select {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.admin-feeds-table {
    table-layout: fixed;
}

.admin-feeds-table__feed {
    width: 31%;
}

.admin-feeds-table__url {
    width: 17%;
}

.admin-feeds-table__count {
    width: 7%;
}

.admin-feeds-table__date {
    width: 13%;
}

.admin-feeds-table__file {
    width: 19%;
}

.admin-feeds-table__actions {
    width: 13%;
}

.admin-feed-name strong,
.admin-feed-name small,
.admin-feed-file code,
.admin-feed-file small {
    display: block;
}

.admin-feed-name strong {
    margin-bottom: 4px;
    line-height: 1.25;
}

.admin-feed-name small,
.admin-feed-file small {
    color: rgba(39, 49, 60, 0.68);
    line-height: 1.45;
}

.admin-feed-url a {
    overflow-wrap: normal;
    white-space: nowrap;
}

.admin-feed-file code {
    max-width: 100%;
    margin-bottom: 5px;
    padding: 0;
    color: var(--ink);
    overflow-wrap: anywhere;
    line-height: 1.45;
    white-space: normal;
}

.admin-feeds-table td.admin-actions {
    min-width: 150px;
}

.admin-feeds-table td.admin-actions form {
    margin: 0;
}

.admin-feeds-table td.admin-actions .button {
    width: 100%;
    min-width: 132px;
    justify-content: center;
    white-space: nowrap;
}

.tracking-scripts-heading,
.tracking-scripts-form {
    width: min(100%, 1380px);
    margin-inline: auto;
}

.tracking-scripts-form {
    display: grid;
    gap: 18px;
}

.tracking-scripts-panel > header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.tracking-scripts-panel > header p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.tracking-scripts-panel > header code {
    color: var(--ink);
    font-size: 0.92em;
}

.tracking-scripts-panel__body {
    display: grid;
    gap: 14px;
    padding: 18px 20px 20px;
}

.tracking-scripts-panel textarea {
    width: 100%;
    min-height: 220px;
    resize: vertical;
    border: 1px solid rgba(16, 17, 21, 0.18);
    border-radius: 8px;
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    font: 0.92rem/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.tracking-scripts-panel textarea:focus {
    outline: 2px solid rgba(215, 25, 32, 0.24);
    outline-offset: 2px;
    border-color: rgba(215, 25, 32, 0.5);
}

.tracking-scripts-priority {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.tracking-scripts-priority label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
}

.tracking-scripts-priority input {
    width: 84px;
    min-height: 36px;
    border: 1px solid rgba(16, 17, 21, 0.18);
    border-radius: 8px;
    padding: 8px 10px;
    font: inherit;
}

.tracking-scripts-actions {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .cache-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cache-config-form,
    .cache-url-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-feed-create-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .admin-feeds-table {
        min-width: 920px;
    }

    .tracking-scripts-priority {
        display: grid;
        align-items: start;
    }
}


.admin-table td.admin-actions--lead {
    min-width: 308px;
}

.admin-table td.admin-actions--lead .button {
    min-width: 82px;
}

.admin-lead-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    grid-column: 1 / -1;
}

.admin-lead-summary > div {
    display: grid;
    gap: 7px;
    padding: 14px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background: rgba(246, 247, 249, 0.72);
}

.admin-lead-summary span,
.admin-lead-values dt {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-lead-summary strong,
.admin-lead-values dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-weight: 800;
}

.admin-lead-values {
    display: grid;
    gap: 14px;
    grid-column: 1 / -1;
}

.admin-lead-values h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.02rem;
}

.admin-lead-values dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.admin-lead-values dl > div {
    display: grid;
    grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(16, 17, 21, 0.07);
}

.admin-lead-values dl > div:last-child {
    border-bottom: 0;
}

.admin-lead-status-field {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid rgba(16, 17, 21, 0.08);
}

.admin-edit-grid--images {
    grid-template-columns: minmax(0, 1fr);
}

.admin-edit-grid--images > .admin-panel.admin-form.admin-image-management-panel {
    grid-template-columns: minmax(0, 1fr);
}

.admin-edit-grid--images > .admin-panel.admin-form.admin-image-management-panel > * {
    grid-column: 1 / -1;
}

.admin-image-management-panel {
    gap: 22px;
    grid-template-columns: 1fr;
}

.admin-heading-actions,
.admin-heading--image-management > .button {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    align-self: start;
    justify-self: end;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: max-content;
    white-space: nowrap;
}

.admin-heading-actions .button {
    flex: 0 0 auto;
}

.admin-heading--image-management > .admin-heading-actions {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
}

.admin-image-management-panel > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-image-management-panel > header p {
    margin: 6px 0 0;
    color: var(--muted);
}

.admin-gallery-bulk-upload {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr) auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 248, 250, 0.74)),
        rgba(255, 255, 255, 0.72);
}

.admin-gallery-bulk-upload label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.admin-gallery-bulk-upload input {
    min-height: 42px;
}

.admin-gallery-bulk-upload .button {
    min-height: 42px;
    justify-content: center;
    white-space: nowrap;
}

.admin-gallery-bulk-upload__state {
    grid-column: 1 / -1;
    min-height: 18px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.admin-image-featured {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.admin-image-featured__actions {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.admin-image-featured__actions strong {
    grid-column: 1 / -1;
}

.admin-image-change-state,
.admin-image-row__meta em,
.admin-image-card em {
    color: var(--muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
}

.admin-image-change-state {
    grid-column: 1 / -1;
}

.admin-image-change-state.is-pending,
.admin-image-row__meta em.is-pending,
.admin-image-card em.is-pending {
    color: var(--red);
}

.admin-image-preview {
    display: grid;
    place-items: center;
    width: 96px;
    height: 66px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
}

.admin-image-preview--hero,
.admin-image-preview--page {
    width: 100%;
    height: 190px;
}

.admin-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-image-preview span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.admin-seo-image-field {
    display: grid;
    gap: 10px;
}

.admin-seo-image-field > span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.admin-seo-image-field .admin-image-preview {
    width: 100%;
    height: 150px;
}

.admin-model-description-image-field {
    justify-items: start;
}

.admin-model-description-image-field .admin-image-preview {
    width: min(100%, 520px);
    height: 292px;
    background:
        linear-gradient(45deg, rgba(16, 17, 21, 0.045) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(16, 17, 21, 0.045) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(16, 17, 21, 0.045) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(16, 17, 21, 0.045) 75%),
        rgba(248, 250, 252, 0.92);
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    background-size: 20px 20px;
}

.admin-model-description-image-field .admin-image-preview img {
    object-fit: contain;
}

.admin-seo-image-field .admin-image-row__meta,
.admin-seo-image-field .admin-image-row__actions {
    align-items: center;
}

.admin-promotion-card-image-field {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    align-items: center;
    gap: 14px 18px;
}

.admin-promotion-card-image-field > span {
    grid-column: 1 / -1;
}

.admin-promotion-card-image-field .admin-image-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.88);
}

.admin-promotion-card-image-field .admin-image-preview img {
    object-fit: cover;
}

.admin-promotion-card-image-field .admin-image-row__meta {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.admin-promotion-card-image-field .admin-image-row__meta strong,
.admin-promotion-card-image-field .admin-image-row__meta em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-promotion-card-image-field .admin-image-row__actions {
    justify-content: flex-start;
}

.admin-page-hero-slide-list {
    display: grid;
    gap: 16px;
    padding: 18px 20px 20px;
}

.admin-page-hero-slide-card {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
}

.admin-page-hero-slide-card__head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-page-hero-slide-card.is-removed {
    opacity: 0.45;
}

.admin-page-hero-slide-card.is-collapsed {
    gap: 0;
}

.admin-page-hero-slide-card.is-collapsed > .admin-seo-image-field,
.admin-page-hero-slide-card.is-collapsed > .admin-page-hero-slide-fields {
    display: none;
}

.admin-page-hero-slide-fields {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) 90px 130px repeat(2, minmax(150px, 1fr));
    gap: 12px;
}

.admin-page-hero-slide-fields label,
.admin-page-hero-slide-timing-row label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
}

.admin-page-hero-slide-fields input,
.admin-page-hero-slide-fields select,
.admin-page-hero-slide-fields textarea {
    min-height: 42px;
}

.admin-page-hero-slide-fields textarea {
    resize: vertical;
}

.admin-page-hero-slide-timing-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 160px));
    gap: 12px;
    justify-content: start;
}

.admin-page-hero-slide-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.admin-page-hero-slide-card .admin-seo-image-field .admin-image-preview {
    height: 150px;
}

.admin-page-hero-slide-card .admin-seo-block-summary strong {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    margin: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.admin-page-hero-slide-card .admin-seo-block-summary span {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 750;
}

.admin-page-hero-slide-card .admin-image-row__actions {
    flex-wrap: nowrap;
    justify-content: center;
}

.admin-page-hero-slide-card .admin-image-row__actions .button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
}

.admin-page-hero-slide-link select {
    text-overflow: ellipsis;
}

.admin-image-row-list {
    display: grid;
    gap: 10px;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
}

.admin-gallery-card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.admin-gallery-card .admin-image-preview {
    width: 100%;
    height: 118px;
}

.admin-gallery-card__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 8px;
}

.admin-gallery-card label,
.admin-image-card label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-gallery-card input,
.admin-gallery-card select,
.admin-image-card input,
.admin-image-card select {
    min-height: 40px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.86);
    font: inherit;
    font-weight: 700;
}

.admin-image-row {
    display: grid;
    grid-template-columns: 108px 150px 88px minmax(220px, 1fr) 190px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.admin-image-row label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-image-row input,
.admin-image-row select {
    min-height: 42px;
}

.admin-image-row__meta {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.admin-image-row__meta strong,
.admin-image-row__meta span,
.admin-gallery-card .admin-image-row__meta strong,
.admin-gallery-card .admin-image-row__meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-image-row__meta span {
    color: var(--muted);
    font-size: 0.86rem;
}

.admin-image-row__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.admin-gallery-card .admin-image-row__actions,
.admin-image-card .admin-image-row__actions {
    justify-content: stretch;
}

.admin-gallery-card .admin-image-row__actions .button,
.admin-image-card .admin-image-row__actions .button {
    flex: 1 1 auto;
    min-height: 38px;
    padding-right: 12px;
    padding-left: 12px;
}

.admin-image-row.is-removed {
    opacity: 0.45;
}

.admin-gallery-card.is-removed,
.admin-image-card.is-removed {
    opacity: 0.45;
}

.admin-image-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}

.admin-image-card,
.admin-page-image-card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.admin-image-card .admin-image-preview {
    width: 100%;
    height: 120px;
}

.admin-image-card strong,
.admin-image-card span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-image-card span {
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-image-card.is-inactive {
    opacity: 0.58;
}

.admin-page-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.admin-page-image-card h3 {
    margin: 0;
    font-size: 1rem;
}

.admin-media-picker {
    width: min(960px, calc(100% - 32px));
    max-height: min(760px, calc(100vh - 40px));
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
}

.admin-media-picker::backdrop {
    background: rgba(16, 17, 21, 0.46);
    backdrop-filter: blur(6px);
}

.admin-media-picker__panel {
    display: grid;
    gap: 14px;
    max-height: inherit;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 80px rgba(16, 17, 21, 0.22);
}

.admin-media-picker .button.secondary,
.admin-body .admin-image-management-panel .button.secondary {
    border-color: rgba(16, 17, 21, 0.16);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.84);
}

.admin-media-picker .button.secondary:hover,
.admin-media-picker .button.secondary:focus,
.admin-body .admin-image-management-panel .button.secondary:hover,
.admin-body .admin-image-management-panel .button.secondary:focus {
    border-color: rgba(215, 25, 32, 0.24);
    color: var(--red);
    background: var(--white);
}

.admin-media-picker__panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-media-picker__panel h2 {
    margin: 0;
    font-size: 1.2rem;
}

.admin-media-picker__panel label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.admin-media-picker__panel input {
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
}

.admin-media-upload {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto auto;
    align-items: end;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(246, 247, 249, 0.88);
}

.admin-media-upload > label {
    min-width: 0;
}

.admin-media-upload .button {
    white-space: nowrap;
}

.admin-media-upload input {
    width: 100%;
    min-width: 0;
}

.admin-media-upload input[type="file"] {
    max-width: 100%;
    padding: 8px;
    overflow: hidden;
    background: var(--white);
}

.admin-media-upload__state {
    grid-column: 1 / -1;
    min-height: 18px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-media-picker__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    max-height: min(540px, calc(100vh - 220px));
    overflow: auto;
    padding-right: 4px;
}

.admin-media-option {
    display: grid;
    gap: 7px;
    align-content: start;
    min-height: 162px;
    padding: 8px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-media-option strong {
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.admin-media-option:hover,
.admin-media-option:focus {
    border-color: rgba(215, 25, 32, 0.34);
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.08);
    outline: 0;
}

.admin-media-option img {
    width: 100%;
    height: 84px;
    object-fit: cover;
    border-radius: 6px;
    background: #f2f3f5;
}

.admin-media-option span {
    display: -webkit-box;
    min-height: 32px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.admin-media-option__action {
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.08);
    color: var(--red);
}

.admin-media-usages {
    min-width: 220px;
}

.admin-media-usages summary {
    width: fit-content;
    cursor: pointer;
    color: var(--red);
    font-weight: 800;
}

.admin-media-usages ul {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.admin-media-usages li {
    display: grid;
    gap: 2px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(16, 17, 21, 0.04);
}

.admin-media-usages li span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-media-usages li a,
.admin-media-usages li strong {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
}

.admin-media-library {
    display: grid;
    gap: 18px;
}

[data-media-bulk-delete-form] {
    display: none;
}

.admin-media-library__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.admin-media-library__summary span {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-media-library__summary strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1;
}

.admin-media-library__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 14px 18px;
    padding: 18px 20px;
}

.admin-media-library__field {
    display: grid;
    gap: 7px;
    width: min(220px, 100%);
    min-width: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-media-library__field select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font: inherit;
}

.admin-media-library__bulk {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 8px;
    margin-left: auto;
}

.admin-media-library__bulk .button {
    min-height: 44px;
    white-space: nowrap;
}

.admin-media-library__count {
    flex-basis: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.admin-media-library__note {
    flex-basis: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
}

.admin-media-library__tools .admin-list-tools {
    flex-wrap: wrap;
    align-items: flex-end;
}

.admin-media-library__tools .admin-list-tools > .admin-media-library__controls {
    flex-basis: 100%;
    padding: 0;
}

.admin-media-library__controls--actions {
    border-top: 1px solid rgba(16, 17, 21, 0.08);
}

.admin-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    margin-top: 18px;
}

.admin-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.admin-pagination__link,
.admin-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.admin-pagination__link:hover,
.admin-pagination__page:hover {
    border-color: var(--red);
    color: var(--red);
}

.admin-pagination__page.is-current {
    border-color: transparent;
    background: var(--red);
    color: #fff;
}

.admin-pagination__link.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.admin-pagination__gap {
    padding: 0 2px;
    color: var(--muted);
    font-weight: 800;
}

.admin-media-library__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
    gap: 16px;
    align-items: start;
}

.admin-media-card {
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(16, 17, 21, 0.08);
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.admin-media-card.is-selected {
    border-color: rgba(215, 25, 32, 0.54);
    box-shadow: 0 18px 52px rgba(215, 25, 32, 0.12);
}

.admin-media-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.admin-media-card__footer {
    display: grid;
    gap: 10px;
}

.admin-media-card__select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-media-card__select input {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

.admin-media-card__id,
.admin-media-card__unused {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.admin-media-card__preview {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background-color: #f4f5f7;
    background-image:
        linear-gradient(45deg, rgba(16, 17, 21, 0.055) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(16, 17, 21, 0.055) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(16, 17, 21, 0.055) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(16, 17, 21, 0.055) 75%);
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    background-size: 20px 20px;
}

.admin-media-card__preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.admin-media-card__preview span {
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(16, 17, 21, 0.08);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
}

.admin-media-card__meta {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.admin-media-card__meta strong,
.admin-media-card__meta code,
.admin-media-card__meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-media-card__meta strong {
    color: var(--ink);
    font-size: 0.96rem;
}

.admin-media-card__meta code {
    color: var(--muted);
    font-size: 0.76rem;
}

.admin-media-card__meta span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-media-usages--card {
    min-width: 0;
}

.admin-media-usages--card summary {
    font-size: 0.82rem;
}

.admin-media-usages--card ul {
    max-height: 180px;
    overflow: auto;
    padding-right: 4px;
}

.admin-media-library__empty {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.admin-media-library__sticky {
    position: sticky;
    bottom: 16px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 54px rgba(16, 17, 21, 0.16);
    backdrop-filter: blur(14px);
}

.admin-media-library__sticky span {
    color: var(--ink);
    font-weight: 900;
}

.admin-media-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.admin-media-card__actions .button {
    justify-content: center;
    width: 100%;
}

.admin-media-delete-button {
    border-color: rgba(215, 25, 32, 0.28);
    color: var(--red);
}

.admin-media-delete-button.is-in-use,
.admin-media-delete-button.is-in-use:disabled {
    border-color: var(--red);
    background: var(--red) !important;
    color: var(--white) !important;
    opacity: 1;
    cursor: not-allowed;
}

.admin-media-card__select input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-media-card__select input:disabled + span {
    color: var(--red);
}

.admin-media-library__sticky .button:disabled {
    opacity: 0.52;
    cursor: not-allowed;
}

.admin-media-delete-dialog {
    width: min(520px, calc(100% - 32px));
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
}

.admin-media-delete-dialog::backdrop {
    background: rgba(16, 17, 21, 0.48);
    backdrop-filter: blur(6px);
}

.admin-media-delete-dialog__panel {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 80px rgba(16, 17, 21, 0.22);
}

.admin-media-delete-dialog__panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.25rem;
}

.admin-media-delete-dialog__panel p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.45;
}

.admin-media-delete-dialog__panel strong {
    color: var(--ink);
}

.admin-media-delete-dialog__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

@media (max-width: 1180px) {
    .admin-heading--media-library {
        align-items: start;
    }

    .admin-media-library-summary {
        justify-content: flex-start;
    }

    .admin-media-library__filters,
    .admin-media-library__bulk {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .admin-media-library__filters,
    .admin-media-library__bulk {
        grid-template-columns: 1fr;
    }

    .admin-media-library__grid {
        grid-template-columns: 1fr;
    }

    .admin-media-card__head,
    .admin-media-library__sticky {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-media-card__footer .button,
    .admin-media-library__sticky .button {
        width: 100%;
    }

    .admin-media-delete-dialog__actions {
        flex-direction: column-reverse;
    }
}

@media (max-width: 1480px) {
    .admin-spec-header,
    .admin-spec-row {
        grid-template-columns: minmax(112px, 0.72fr) minmax(160px, 1fr) minmax(220px, 1.45fr) minmax(70px, 0.34fr) max-content;
    }

    .admin-form-field-header,
    .admin-form-field-row {
        grid-template-columns: minmax(150px, 0.9fr) minmax(180px, 1fr) minmax(130px, 0.7fr) minmax(110px, 0.55fr) minmax(82px, 0.4fr) auto;
    }

    .admin-form-field-header span:nth-child(4),
    .admin-form-field-row label:nth-of-type(4) {
        display: none;
    }

    .admin-spec-header span:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    .admin-spec-row__value {
        grid-column: auto;
    }
}

@media (max-width: 1280px) {
    .admin-model-color-header,
    .admin-model-color-row {
        grid-template-columns: 88px minmax(180px, 1fr) minmax(190px, 1fr) 74px 86px 230px;
    }

    .admin-model-color-header span:nth-child(4),
    .admin-model-color-row label:nth-of-type(3) {
        display: none;
    }
}

@media (max-width: 1020px) {
    .admin-body,
    .admin-grid,
    .admin-edit-grid {
        grid-template-columns: 1fr;
    }

    .admin-lead-summary {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        max-height: none;
        min-height: auto;
    }

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

    .admin-spec-header {
        display: none;
    }

    .admin-form-field-header {
        display: none;
    }

    .admin-spec-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-form-field-row,
    .admin-form.admin-form-settings {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-spec-row label,
    .admin-form-field-row label {
        gap: 7px;
    }

    .admin-spec-field-label {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        white-space: normal;
        font-size: 0.84rem;
    }

    .admin-spec-row__value {
        grid-column: 1 / -1;
    }

    .admin-form-field-row label:nth-of-type(4) {
        display: grid;
    }

    .admin-form-field-options,
    .admin-form-field-rules {
        grid-column: 1 / -1;
    }

    .admin-form.admin-technical-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-model-color-header {
        display: none;
    }

    .admin-model-color-row {
        grid-template-columns: 88px repeat(2, minmax(0, 1fr));
        align-items: end;
    }

    .admin-gallery-bulk-upload {
        grid-template-columns: 1fr;
    }

    .admin-model-color-row label {
        gap: 7px;
    }

    .admin-model-color-row label:nth-of-type(3) {
        display: grid;
    }

    .admin-model-color-status,
    .admin-model-color-actions {
        grid-column: span 1;
    }

    .admin-model-color-actions {
        justify-content: flex-start;
    }

    .admin-image-featured,
    .admin-page-image-grid {
        grid-template-columns: 1fr;
    }

    .admin-page-hero-slide-card {
        grid-template-columns: 1fr;
    }

    .admin-page-hero-slide-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-page-hero-slide-actions {
        justify-content: stretch;
    }

    .admin-page-hero-slide-actions .button {
        width: 100%;
    }

    .admin-list-tools {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
    }

    .admin-list-tools__search {
        width: 100%;
    }

    .admin-list-tools__count {
        width: fit-content;
    }

    .admin-image-row {
        grid-template-columns: 96px repeat(2, minmax(0, 1fr));
    }

    .admin-image-row__meta,
    .admin-image-row__actions {
        grid-column: 2 / -1;
    }

    .admin-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    }
}

@media (max-width: 640px) {
    .admin-content {
        padding: 18px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-heading,
    .admin-topbar,
    .admin-form-actions {
        display: grid;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-spec-row {
        grid-template-columns: 1fr;
    }

    .admin-form-field-row,
    .admin-form.admin-form-settings {
        grid-template-columns: 1fr;
    }

    .admin-heading.admin-heading--technical-sheet h1 {
        font-size: 2rem;
    }

    .admin-heading.admin-heading--model-colors h1 {
        font-size: 2rem;
    }

    .admin-technical-model-title {
        font-size: 1.05rem;
    }

    .admin-model-color-row {
        grid-template-columns: 1fr;
    }

    .admin-model-color-preview {
        width: 100%;
        height: 140px;
    }

    .admin-model-color-image-cell {
        width: 100%;
    }

    .admin-model-color-actions {
        flex-wrap: wrap;
    }

    .admin-image-management-panel > header {
        display: grid;
    }

    .admin-image-row {
        grid-template-columns: 1fr;
    }

    .admin-gallery-grid,
    .admin-image-card-grid,
    .admin-page-hero-slide-fields {
        grid-template-columns: 1fr;
    }

    .admin-image-row__meta,
    .admin-image-row__actions {
        grid-column: auto;
    }

    .admin-promotion-card-image-field {
        grid-template-columns: 1fr;
    }

    .admin-promotion-card-image-field > span {
        grid-column: auto;
    }

    .admin-image-preview {
        width: 100%;
        height: 140px;
    }

    .admin-model-description-image-field .admin-image-preview {
        width: 100%;
        height: 220px;
    }

    .admin-gallery-card .admin-image-preview,
    .admin-image-card .admin-image-preview {
        height: 150px;
    }

    .admin-image-featured__actions,
    .admin-image-row__actions {
        justify-content: stretch;
    }

    .admin-image-featured__actions .button,
    .admin-image-row__actions .button {
        flex: 1 1 130px;
    }
}

/* ------------------------------------------------------------------
   Admin visual polish
------------------------------------------------------------------ */
.admin-body {
    grid-template-columns: 248px minmax(0, 1fr);
    min-height: 100vh;
    background:
        linear-gradient(90deg, #101115 0 248px, transparent 248px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(239, 243, 247, 0.72)),
        #eef1f5;
}

.admin-body::before {
    background:
        radial-gradient(circle at 8% 0%, rgba(215, 25, 32, 0.14), transparent 30rem),
        radial-gradient(circle at 94% 14%, rgba(39, 49, 60, 0.12), transparent 28rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(246, 247, 248, 0.92));
}

.admin-sidebar {
    padding: 20px 14px;
    color: rgba(255, 255, 255, 0.68);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(32, 13, 18, 0.92), rgba(12, 15, 20, 0.98)),
        #101115;
    box-shadow: 16px 0 45px rgba(16, 17, 21, 0.18);
}

.admin-brand {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 6px;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
}

.admin-brand strong {
    color: rgba(255, 255, 255, 0.94);
}

.admin-sidebar .admin-nav {
    gap: 14px;
    padding-bottom: 34px;
}

.admin-nav__section {
    gap: 3px;
}

.admin-nav__section + .admin-nav__section {
    padding-top: 12px;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.admin-nav__heading {
    margin: 0 0 5px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.86);
    background:
        linear-gradient(90deg, rgba(215, 25, 32, 0.22), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.035);
    font-size: 0.68rem;
    letter-spacing: 0.095em;
}

.admin-sidebar nav a {
    position: relative;
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 9px 12px 9px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
    transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.admin-sidebar nav a[aria-current="page"] {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.88), rgba(159, 17, 23, 0.78)),
        rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.admin-topbar {
    position: static;
    margin: 16px 22px 0;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.62)),
        rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 54px rgba(16, 17, 21, 0.08);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.admin-topbar span {
    font-size: 0.78rem;
}

.admin-topbar strong {
    font-size: 0.96rem;
}

.admin-body .button.secondary {
    border-color: rgba(16, 17, 21, 0.18);
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.86)),
        rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 24px rgba(16, 17, 21, 0.07);
}

.admin-body .button.secondary:hover,
.admin-body .button.secondary:focus {
    border-color: rgba(215, 25, 32, 0.34);
    color: var(--red);
    background: var(--white);
}

.admin-topbar .button.secondary,
.admin-actions .button.secondary,
.admin-form-actions .button.secondary {
    border-color: rgba(16, 17, 21, 0.18);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
}

.admin-topbar .button.secondary:hover,
.admin-actions .button.secondary:hover,
.admin-form-actions .button.secondary:hover {
    background: var(--white);
}

.admin-field-help {
    display: block;
    max-width: 62ch;
    color: rgba(39, 49, 60, 0.62);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
}

.admin-edit-grid--locations {
    gap: 18px;
}

.admin-edit-grid--locations > .admin-location-editor {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.admin-edit-grid--locations > .admin-location-editor > header {
    grid-column: 1 / -1;
}

.admin-location-editor > header p {
    margin: 6px 0 0;
    max-width: 760px;
    color: rgba(39, 49, 60, 0.68);
    font-size: 0.92rem;
    line-height: 1.45;
}

.admin-location-advanced {
    grid-column: 1 / -1;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
}

.admin-location-advanced > summary {
    padding: 14px 16px;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.admin-location-advanced__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 0 16px 16px;
}

@media (max-width: 1180px) {
    .admin-edit-grid--locations > .admin-location-editor {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .admin-edit-grid--locations > .admin-location-editor {
        grid-template-columns: minmax(0, 1fr);
    }
}

.admin-content {
    gap: 22px;
    padding: 28px 22px 34px;
}

.admin-login-card,
.admin-panel,
.admin-stats article {
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
        rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.admin-login-card {
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.admin-login-card h1,
.admin-heading h1 {
    font-size: clamp(1.9rem, 3.2vw, 3.05rem);
    font-weight: 700;
    line-height: 1.08;
}

.admin-login-card p:not(.eyebrow),
.admin-heading p {
    color: var(--muted);
    line-height: 1.62;
}

.admin-shell--login {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(215, 25, 32, 0.18), transparent 27rem),
        radial-gradient(circle at 86% 24%, rgba(39, 49, 60, 0.16), transparent 30rem),
        linear-gradient(135deg, #f7f8fa 0%, #eceff3 46%, #f9fafb 100%);
}

.admin-shell--login::before,
.admin-shell--login::after {
    position: absolute;
    pointer-events: none;
    content: "";
}

.admin-shell--login::before {
    inset: 7% auto auto -8rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(215, 25, 32, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.42);
}

.admin-shell--login::after {
    right: -8rem;
    bottom: -10rem;
    width: 34rem;
    height: 34rem;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(16, 17, 21, 0.1), rgba(215, 25, 32, 0.12)),
        rgba(255, 255, 255, 0.14);
    filter: blur(2px);
}

.admin-shell--login .admin-content {
    position: relative;
    z-index: 1;
    width: min(100%, 920px);
    padding: 24px;
}

.admin-shell--login .admin-alert {
    width: min(100%, 760px);
    margin: 0 auto;
}

.admin-login-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 28px 90px rgba(16, 17, 21, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.admin-login-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    min-height: 100%;
    padding: 38px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(150deg, rgba(215, 25, 32, 0.68), rgba(42, 12, 18, 0.24) 34%, rgba(12, 14, 18, 0.96) 72%),
        radial-gradient(circle at 22% 8%, rgba(255, 255, 255, 0.18), transparent 18rem),
        #101115;
}

.admin-login-brand::before {
    position: absolute;
    inset: auto -42px -58px auto;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    content: "";
}

.admin-login-brand::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.admin-login-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-login-logo-frame {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(100%, 286px);
    min-height: 112px;
    place-items: center;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.admin-login-logo {
    width: 100%;
    max-height: 66px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(16, 17, 21, 0.16));
}

.admin-login-brand-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    max-width: 280px;
}

.admin-login-brand-copy strong {
    font-size: clamp(1.7rem, 2.6vw, 2.55rem);
    font-weight: 760;
    line-height: 1.04;
}

.admin-login-brand-copy span {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.58;
}

.admin-login-form-panel {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 54px 56px;
}

.admin-login-form-panel .eyebrow {
    color: var(--red);
    font-size: 0.76rem;
}

.admin-login-form-panel h1 {
    max-width: 420px;
    font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.admin-login-form-panel > p:not(.eyebrow) {
    max-width: 430px;
    margin-bottom: 12px;
}

.admin-login-form-panel .admin-form {
    gap: 18px;
    padding: 0;
}

.admin-login-form-panel .admin-form label {
    color: #3d4550;
    font-size: 0.82rem;
}

.admin-login-form-panel .admin-form input {
    min-height: 50px;
    border-color: rgba(16, 17, 21, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.9)),
        rgba(255, 255, 255, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 12px 30px rgba(16, 17, 21, 0.05);
}

.admin-login-form-panel .admin-form input:focus {
    border-color: rgba(215, 25, 32, 0.5);
    box-shadow:
        0 0 0 4px rgba(215, 25, 32, 0.11),
        0 12px 30px rgba(16, 17, 21, 0.05);
}

.admin-login-form-panel .button.primary {
    min-height: 52px;
    margin-top: 4px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #eb1d25, var(--red-dark)),
        var(--red);
    box-shadow: 0 16px 34px rgba(215, 25, 32, 0.24);
}

.admin-login-form-panel .button.primary:hover,
.admin-login-form-panel .button.primary:focus {
    background:
        linear-gradient(135deg, var(--red), #7f0d12),
        var(--red-dark);
    transform: translateY(-1px);
}

@media (max-width: 820px) {
    .admin-shell--login {
        place-items: stretch;
        min-height: 100vh;
        padding: 16px;
    }

    .admin-shell--login .admin-content {
        width: 100%;
        padding: 0;
        align-content: center;
        justify-items: center;
    }

    .admin-login-card {
        grid-template-columns: 1fr;
        width: min(100%, calc(100vw - 32px));
        min-height: 0;
    }

    .admin-login-brand {
        min-height: 220px;
        min-width: 0;
        padding: 26px;
    }

    .admin-login-logo-frame {
        width: min(72vw, 230px);
        min-height: 92px;
        padding: 18px 20px;
    }

    .admin-login-brand-copy {
        max-width: 100%;
        min-width: 0;
    }

    .admin-login-brand-copy strong {
        font-size: 1.55rem;
    }

    .admin-login-brand-copy span,
    .admin-login-form-panel > p:not(.eyebrow) {
        overflow-wrap: anywhere;
    }

    .admin-login-form-panel {
        width: 100%;
        min-width: 0;
        padding: 30px 24px 26px;
    }

    .admin-login-form-panel h1 {
        font-size: 2.15rem;
    }
}

.admin-liquid-filter {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.admin-shell--login {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 28px;
    background:
        linear-gradient(115deg, rgba(6, 8, 12, 0.39), rgba(6, 8, 12, 0.13) 44%, rgba(6, 8, 12, 0.42)),
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.15), transparent 23rem),
        url("https://hondamaquina.softalian.com/imagenes/1.webp") center / cover no-repeat;
}

.admin-shell--login::before {
    inset: 0;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(7, 9, 13, 0.22)),
        radial-gradient(circle at 18% 12%, rgba(215, 25, 32, 0.2), transparent 23rem);
    box-shadow: none;
}

.admin-shell--login::after {
    inset: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 48%, transparent 0 21rem, rgba(0, 0, 0, 0.14) 42rem),
        linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.2));
    filter: none;
}

.admin-shell--login .admin-content {
    width: min(100%, 540px);
    padding: 0;
    justify-items: center;
}

.admin-shell--login .admin-alert {
    width: 100%;
}

.admin-login-card {
    position: relative;
    display: block;
    width: min(100%, 520px);
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(20, 22, 26, 0.13), rgba(34, 38, 44, 0.08)),
        rgba(16, 17, 21, 0.08);
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px) saturate(1.18);
    -webkit-backdrop-filter: blur(15px) saturate(1.18);
}

.admin-login-card::before,
.admin-login-card::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
}

.admin-login-card::before {
    opacity: 0.14;
    background:
        radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.22), transparent 18rem),
        radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.1), transparent 13rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    filter: url("#admin-liquid-glass-filter");
}

.admin-login-card::after {
    border-radius: inherit;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 24%, transparent 64%, rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 72% 102%, rgba(215, 25, 32, 0.07), transparent 16rem);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 16px 18px 40px rgba(255, 255, 255, 0.05),
        inset -18px -20px 42px rgba(0, 0, 0, 0.08);
}

.admin-login-form-panel {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 15px;
    padding: 44px 50px 48px;
}

.admin-login-logo-frame {
    width: min(100%, 330px);
    min-height: 0;
    justify-self: center;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.admin-login-logo {
    max-height: 92px;
    filter:
        drop-shadow(0 1px 0 rgba(255, 255, 255, 0.2))
        drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.admin-login-form-panel .eyebrow {
    display: none;
    margin-top: 14px;
    color: #ff656b;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.admin-login-form-panel h1 {
    margin-top: 16px;
    max-width: none;
    color: var(--white);
    font-size: clamp(1.96rem, 2.92vw, 2.58rem);
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
}

.admin-login-form-panel > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.admin-login-form-panel .admin-form {
    margin-top: 4px;
}

.admin-login-form-panel .admin-form input {
    border-color: rgba(255, 255, 255, 0.28);
    color: #101115;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 242, 252, 0.84)),
        rgba(255, 255, 255, 0.78);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        inset 0 -1px 0 rgba(0, 0, 0, 0.14),
        0 14px 28px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.admin-login-form-panel .admin-form label {
    color: rgba(255, 255, 255, 0.8);
}

.admin-login-form-panel .admin-form input:-webkit-autofill,
.admin-login-form-panel .admin-form input:-webkit-autofill:hover,
.admin-login-form-panel .admin-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #101115;
    box-shadow: 0 0 0 1000px rgba(236, 242, 252, 0.9) inset;
}

@media (max-width: 620px) {
    .admin-shell--login {
        padding: 16px;
    }

    .admin-shell--login .admin-content,
    .admin-login-card {
        width: 100%;
    }

    .admin-login-form-panel {
        padding: 30px 24px 32px;
    }

    .admin-login-logo-frame {
        width: min(82vw, 280px);
    }

    .admin-login-form-panel h1 {
        font-size: 1.8rem;
        white-space: normal;
    }
}

.admin-heading p {
    max-width: 760px;
}

.admin-stats {
    gap: 12px;
}

.admin-stats article {
    position: relative;
    min-height: 98px;
    padding: 18px 18px 16px;
    overflow: hidden;
}

.admin-stats article::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    content: "";
    background: linear-gradient(180deg, var(--red), rgba(39, 49, 60, 0.34));
}

.admin-stats strong {
    line-height: 1;
}

.admin-stats span {
    display: block;
    margin-top: 6px;
    line-height: 1.25;
}

.admin-panel > header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.09);
    background: rgba(255, 255, 255, 0.42);
}

.admin-panel > header h2 {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.15;
}

.admin-table {
    font-size: 0.94rem;
}

.admin-table th,
.admin-table td {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
    line-height: 1.45;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-table tbody tr {
    transition: background 0.14s ease;
}

.admin-table tbody tr:hover {
    background: rgba(39, 49, 60, 0.035);
}

.admin-table th {
    color: #343a43;
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.admin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form.admin-image-management-panel {
    grid-template-columns: 1fr;
}

.admin-login-card .admin-form,
.admin-edit-grid > aside.admin-form {
    grid-template-columns: 1fr;
}

.admin-edit-grid > aside.admin-form {
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-edit-grid--landing-resource > aside.admin-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-form label {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-page-hero-slide-fields input,
.admin-page-hero-slide-fields select {
    border-color: rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-page-hero-slide-fields input:focus,
.admin-page-hero-slide-fields select:focus {
    border-color: rgba(215, 25, 32, 0.54);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}

.admin-workshop-reservation-panel {
    overflow: hidden;
}

.admin-workshop-reservation-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    padding: 22px 24px 4px;
}

.admin-workshop-reservation-fields > label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
}

.admin-workshop-reservation-fields .admin-field-wide {
    grid-column: 1 / -1;
}

.admin-workshop-reservation-fields input,
.admin-workshop-reservation-fields textarea {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.admin-workshop-reservation-fields textarea {
    min-height: 96px;
    resize: vertical;
    line-height: 1.45;
}

.admin-workshop-reservation-fields textarea[rows="3"] {
    min-height: 74px;
}

.admin-workshop-reservation-fields input:focus,
.admin-workshop-reservation-fields textarea:focus {
    border-color: rgba(215, 25, 32, 0.54);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}

.admin-workshop-reservation-fields .admin-field-help {
    color: rgba(92, 98, 106, 0.9);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.35;
}

.admin-workshop-weekdays {
    margin: 0;
    padding: 16px 18px 18px;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.56);
}

.admin-workshop-weekdays legend {
    padding: 0 6px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.admin-workshop-weekdays > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 10px;
}

.admin-workshop-weekdays .admin-check {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(246, 247, 248, 0.74);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 700;
}

.admin-workshop-weekdays .admin-check input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    min-height: 18px;
}

.admin-form .admin-alert {
    grid-column: 1 / -1;
}

.admin-alert {
    border-radius: 8px;
}

@media (max-width: 1180px) {
    .admin-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-edit-grid > .admin-panel.admin-form,
    .admin-edit-grid > aside.admin-form,
    .admin-edit-grid--landing-resource > .admin-panel.admin-form,
    .admin-edit-grid--landing-resource > aside.admin-form,
    .admin-edit-grid--modelos > .admin-panel.admin-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .admin-body {
        grid-template-columns: 1fr;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(239, 243, 247, 0.72)),
            #eef1f5;
    }

    .admin-shell,
    .admin-content {
        min-width: 0;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 40;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 12px;
        width: 100%;
        overflow: hidden;
        max-height: none;
        min-height: auto;
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .admin-brand {
        min-height: 42px;
        margin-bottom: 0;
        padding: 0;
    }

    .admin-sidebar::after {
        display: none;
    }

    .admin-menu-toggle {
        position: relative;
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 8px;
        color: var(--white);
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
            rgba(255, 255, 255, 0.05);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

    .admin-menu-toggle span {
        position: absolute;
        width: 19px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .admin-menu-toggle span:nth-child(1) {
        transform: translateY(-6px);
    }

    .admin-menu-toggle span:nth-child(3) {
        transform: translateY(6px);
    }

    .admin-sidebar.is-open .admin-menu-toggle span:nth-child(1) {
        transform: rotate(45deg);
    }

    .admin-sidebar.is-open .admin-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .admin-sidebar.is-open .admin-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .admin-sidebar nav {
        grid-column: 1 / -1;
        display: none;
        max-height: none;
        margin-top: 4px;
        overflow: visible;
        padding: 8px 0 16px;
    }

    .admin-sidebar.is-open nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-sidebar.is-open {
        position: relative;
    }

    .admin-topbar {
        top: 0;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 720px) {
    .admin-content {
        padding: 20px 14px 28px;
    }

    .admin-stats,
    .admin-form {
        grid-template-columns: 1fr;
    }

    .admin-edit-grid > .admin-panel.admin-form,
    .admin-edit-grid > aside.admin-form,
    .admin-edit-grid--landing-resource > .admin-panel.admin-form,
    .admin-edit-grid--landing-resource > aside.admin-form,
    .admin-edit-grid--modelos > .admin-panel.admin-form,
    .admin-edit-grid--price-finance,
    .admin-edit-grid--price-finance > .admin-panel.admin-form,
    .admin-price-tools__grid {
        grid-template-columns: 1fr;
    }

    .admin-price-tools__grid {
        padding: 14px;
        gap: 12px;
    }

    .admin-price-tool__form .button {
        align-self: stretch;
        width: 100%;
    }

    .admin-price-imports {
        padding: 4px 14px 16px;
    }

    .admin-price-imports .admin-table-wrap {
        overflow-x: auto;
    }

    .admin-import-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-price-model-group__header {
        display: grid;
        gap: 12px;
    }

    .admin-price-model-group__meta {
        justify-content: flex-start;
        min-width: 0;
        text-align: left;
    }

    .admin-price-model-group__actions {
        width: 100%;
    }

    .admin-price-model-group__actions .button {
        flex: 1 1 auto;
    }

    .admin-price-variant-card__header {
        display: grid;
        gap: 10px;
        padding: 14px 16px;
    }

    .admin-price-variant-card__actions {
        display: grid;
        justify-content: stretch;
    }

    .admin-price-variant-toggle,
    .admin-price-variant-remove,
    .admin-primary-finance-option {
        width: 100%;
    }

    .admin-primary-finance-option {
        justify-content: flex-start;
        white-space: normal;
    }

    .admin-price-variant-section {
        grid-template-columns: 1fr;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        display: flex;
        min-height: 52px;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 8px 12px;
    }

    .admin-topbar > div {
        min-width: 0;
    }

    .admin-topbar span {
        display: none;
    }

    .admin-topbar strong {
        display: block;
        max-width: 100%;
        overflow: hidden;
        font-size: 0.9rem;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .admin-topbar form {
        flex: 0 0 auto;
    }

    .admin-topbar .button.secondary {
        min-height: 36px;
        padding: 0 16px;
        white-space: nowrap;
    }

    .admin-heading .button,
    .admin-form-actions .button {
        width: 100%;
    }

    .admin-seo-create-grid {
        grid-template-columns: 1fr;
    }

    .admin-related-panel > header,
    .admin-seo-block-card__head {
        display: grid;
    }

    .admin-related-actions,
    .admin-seo-block-actions {
        justify-content: stretch;
    }

    .admin-related-actions .button,
    .admin-seo-block-actions .button {
        width: 100%;
    }

    .admin-seo-block-fields {
        grid-template-columns: 1fr;
    }

    .admin-table {
        min-width: 680px;
    }
}

@media (max-width: 980px) {
    .models {
        width: min(100% - 36px, 760px);
    }

    .models .home-model-grid {
        grid-template-columns: 1fr;
    }

    .models .home-model-card {
        min-height: 420px;
    }

    .home-action-cards,
    .home-trust-card {
        width: min(100% - 36px, 760px);
    }

    .home-action-cards {
        grid-template-columns: 1fr;
    }

    .home-action-cards .panel {
        min-height: 320px;
    }

    .home-trust-card .section-heading.split {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 620px) {
    .models {
        width: min(100% - 28px, 420px);
        padding-top: 60px;
    }

    .models .models-heading {
        margin-bottom: 26px;
    }

    .models .models-heading .eyebrow.dark {
        margin-bottom: 16px;
    }

    .models .models-heading h2 {
        margin-bottom: 0;
        font-size: clamp(2rem, 10.2vw, 2.45rem);
        line-height: 1.08;
    }

    .models .models-heading__copy {
        margin-top: 14px;
        font-size: 0.95rem;
        line-height: 1.56;
    }

    .models .models-heading__cta {
        margin-top: 2px;
    }

    .models .home-model-grid {
        margin-top: 8px;
    }

    .models .home-model-card {
        min-height: 360px;
    }

    .models-carousel-ui {
        grid-template-columns: 42px 1fr 42px;
    }

    .home-action-cards,
    .home-trust-card {
        width: min(100% - 28px, 420px);
    }

    .home-action-cards .panel,
    .home-trust-card {
        padding: 34px 28px;
    }

    .home-action-cards .panel h2,
    .home-trust-card .section-heading h2 {
        font-size: clamp(1.95rem, 9vw, 2.55rem);
    }

    .home-trust-card__copy {
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .home-action-cards .red-panel .button.light {
        width: 100%;
    }
}

/* ------------------------------------------------------------------
   Occasion landing
------------------------------------------------------------------ */
.occasion-hero {
    height: 100svh;
    min-height: 560px;
}

.occasion-hero .public-hero-media img {
    object-position: center 50%;
    filter: saturate(0.92) contrast(1.08);
}

.occasion-hero .public-hero-shade {
    background:
        radial-gradient(circle at 78% 30%, rgba(215, 25, 32, 0.16), transparent 24rem),
        linear-gradient(90deg, rgba(6, 7, 9, 0.88) 0%, rgba(6, 7, 9, 0.52) 43%, rgba(6, 7, 9, 0.16) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.02), rgba(6, 7, 9, 0.68));
}

.occasion-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.occasion-page {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(246, 247, 248, 0.96) 22rem),
        var(--paper);
}

.occasion-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.86fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 104px) 0;
}

.occasion-intro__copy h2 {
    max-width: 780px;
}

.occasion-intro__copy p:not(.eyebrow) {
    max-width: 760px;
    font-size: clamp(1rem, 1vw, 1.125rem);
}

.occasion-intro__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.occasion-intro__stats span {
    display: grid;
    gap: 4px;
    min-height: 86px;
    padding: 16px 18px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.07);
}

.occasion-intro__stats strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.2;
}

.occasion-intro__stats small {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.occasion-catalog-card {
    position: relative;
    display: flex;
    min-height: clamp(410px, 42vw, 560px);
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    border: 0;
    border-radius: 18px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(8, 10, 12, 0.08), rgba(8, 10, 12, 0.8)),
        var(--occasion-card-bg, #111) center 52% / auto 108%;
    box-shadow: 0 24px 80px rgba(16, 17, 21, 0.18);
    isolation: isolate;
}

.occasion-catalog-card span {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
}

.occasion-catalog-card strong {
    max-width: 390px;
    color: var(--white);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 720;
    line-height: 0.96;
}

.occasion-catalog-card em {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-style: normal;
    font-weight: 760;
}

.occasion-sell {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    min-height: 680px;
    color: var(--white);
    background: #101115;
}

.occasion-sell__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 7vw, 110px) clamp(42px, 7vw, 104px);
    background:
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.16), transparent 19rem),
        linear-gradient(135deg, #d71920 0%, #bd131a 58%, #8e1016 100%);
}

.occasion-sell__main h2,
.occasion-sell__main p {
    color: var(--white);
}

.occasion-sell__main .eyebrow,
.occasion-sell__main h2,
.occasion-sell__main p,
.occasion-sell__main .button {
    max-width: 650px;
}

.occasion-sell__main h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    text-wrap: balance;
}

.occasion-sell__main p:not(.eyebrow) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1vw, 1.125rem);
}

.occasion-sell__main .button {
    width: fit-content;
    margin-top: 18px;
    padding-right: 24px;
    padding-left: 24px;
}

.occasion-process {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 7vw, 110px) clamp(42px, 7vw, 104px);
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.1), transparent 19rem),
        linear-gradient(145deg, #191d23 0%, #0c0f14 64%, #080a0d 100%);
}

.occasion-process .eyebrow,
.occasion-process h2,
.occasion-process article {
    max-width: 620px;
}

.occasion-process h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    text-wrap: balance;
}

.occasion-process article {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.occasion-process article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.occasion-process article > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    font-weight: 760;
}

.occasion-process h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.14rem;
}

.occasion-process p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.54;
}

.occasion-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.occasion-type-grid article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.07);
}

.occasion-type-grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-weight: 800;
}

.occasion-type-grid p {
    margin-bottom: 0;
}

.occasion-seo {
    padding-top: clamp(58px, 8vw, 104px);
}

.occasion-seo__grid {
    align-items: stretch;
}

.occasion-seo .model-seo-card--media img {
    object-position: center;
}

.occasion-final-cta {
    margin-top: clamp(30px, 5vw, 56px);
}

@media (max-width: 980px) {
    .occasion-intro,
    .occasion-sell {
        grid-template-columns: 1fr;
    }

    .occasion-process {
        padding-right: max(28px, calc((100vw - 760px) / 2 + 18px));
        padding-left: max(28px, calc((100vw - 760px) / 2 + 18px));
    }

    .occasion-type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .occasion-hero {
        height: 100svh;
        min-height: 560px;
    }

    .occasion-hero__actions .button,
    .occasion-sell__main .button {
        width: 100%;
    }

    .occasion-intro {
        width: min(100% - 28px, 430px);
    }

    .occasion-intro__stats,
    .occasion-type-grid {
        grid-template-columns: 1fr;
    }

    .occasion-catalog-card {
        min-height: 360px;
        border-radius: 12px;
    }

    .occasion-sell__main,
    .occasion-process {
        padding-right: 22px;
        padding-left: 22px;
    }

    .occasion-process article {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
    }

    .occasion-process article > span {
        width: 38px;
        height: 38px;
        font-size: 0.86rem;
    }

    .occasion-type-grid article {
        min-height: 0;
    }
}

/* ------------------------------------------------------------------
   Workshop landing
------------------------------------------------------------------ */
.workshop-hero {
    box-sizing: border-box;
    height: 100svh;
    min-height: 560px;
    padding-top: clamp(148px, 14vw, 190px);
}

.workshop-hero .public-hero-media img {
    object-position: center 48%;
    filter: saturate(0.9) contrast(1.08);
}

.workshop-hero .public-hero-shade {
    background:
        linear-gradient(90deg, rgba(6, 7, 9, 0.84) 0%, rgba(6, 7, 9, 0.5) 46%, rgba(6, 7, 9, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.04), rgba(6, 7, 9, 0.72));
}

.workshop-hero__actions,
.workshop-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.workshop-hero__actions .button {
    min-height: 52px;
    padding: 0 28px;
    border-radius: 18px;
    font-size: 1rem;
}

.workshop-intro {
    padding: clamp(58px, 8vw, 104px) 0;
}

.workshop-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.64fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
}

.workshop-intro__copy {
    max-width: 760px;
}

.workshop-intro__copy h2 {
    margin-bottom: 18px;
}

.workshop-intro .eyebrow,
.workshop-services .eyebrow,
.workshop-parts .eyebrow,
.workshop-final-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.workshop-intro .eyebrow::after,
.workshop-services .eyebrow::after,
.workshop-parts .eyebrow::after,
.workshop-final-label::after {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.workshop-intro__copy p:not(.eyebrow) {
    font-size: clamp(1rem, 1vw, 1.125rem);
}

.workshop-intro__actions {
    margin-top: 26px;
    justify-content: center;
}

.workshop-intro__actions .button {
    width: min(100%, 218px);
}

.workshop-intro__actions .button.secondary {
    border-color: rgba(16, 17, 21, 0.14);
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 14px 36px rgba(16, 17, 21, 0.08);
}

.workshop-intro__actions .button.secondary:hover,
.workshop-intro__actions .button.secondary:focus {
    border-color: rgba(215, 25, 32, 0.28);
    color: var(--red);
    background: rgba(255, 255, 255, 0.94);
}

.workshop-info {
    display: grid;
    gap: 10px;
}

.workshop-info article,
.workshop-service-card,
.workshop-parts__list article {
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.workshop-info article {
    padding: 18px 20px;
}

.workshop-info span {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 760;
}

.workshop-info strong {
    display: block;
    color: var(--ink);
    font-size: 1.04rem;
    line-height: 1.25;
}

.workshop-info p {
    margin: 7px 0 0;
    color: var(--muted);
    line-height: 1.48;
}

.workshop-info a {
    color: var(--red);
    font-weight: 760;
}

.workshop-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.workshop-service-card {
    min-height: 220px;
    padding: 22px;
}

.workshop-service-card h3,
.workshop-parts__list h3 {
    font-size: 1.08rem;
}

.workshop-service-card p,
.workshop-parts__list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.58;
}

.workshop-parts {
    padding: clamp(58px, 8vw, 104px) 0;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.16), transparent 22rem),
        linear-gradient(135deg, #b9151b, #d71920 48%, #991018);
    color: var(--white);
}

.workshop-parts__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.74fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
}

.workshop-parts__grid > div:first-child {
    max-width: 720px;
}

.workshop-parts .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.workshop-parts h2 {
    color: var(--white);
}

.workshop-parts h3 {
    color: var(--ink);
}

.workshop-parts p {
    color: rgba(255, 255, 255, 0.82);
}

.workshop-parts__list {
    display: grid;
    gap: 12px;
}

.workshop-parts__list article {
    border-color: rgba(255, 255, 255, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
        rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 18px 52px rgba(93, 7, 12, 0.22);
    padding: 20px 22px;
}

.workshop-parts__list article p {
    color: var(--muted);
}

.workshop-reservation {
    scroll-margin-top: 108px;
    padding: clamp(56px, 8vw, 96px) 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.1), transparent 26rem),
        linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(238, 242, 246, 0.96));
}

.workshop-reservation__card {
    scroll-margin-top: calc(var(--site-header-bottom, 86px) + 18px);
    display: grid;
    width: min(1360px, calc(100% - 36px));
    max-width: none;
    grid-template-columns: 1fr;
    gap: clamp(18px, 2.2vw, 26px);
    padding: clamp(18px, 2.4vw, 28px);
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 251, 0.82)),
        rgba(255, 255, 255, 0.8);
    box-shadow: 0 22px 70px rgba(16, 17, 21, 0.1);
}

.workshop-reservation__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px 28px;
    align-items: center;
    padding: 6px 4px 0;
}

.workshop-reservation__copy {
    min-width: 0;
}

.workshop-reservation__head h2 {
    margin-bottom: 8px;
}

.workshop-reservation__head p:not(.eyebrow) {
    max-width: 580px;
    margin-bottom: 0;
}

.workshop-reservation__steps {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-self: end;
}

.workshop-reservation__steps span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 760;
}

.workshop-reservation-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.workshop-reservation-form .form-alert {
    grid-column: 1 / -1;
}

.workshop-reservation-form__schedule,
.workshop-reservation-form__choices,
.workshop-reservation-form__details {
    display: grid;
    align-content: start;
    gap: 14px;
    height: 100%;
    min-width: 0;
    padding: clamp(16px, 1.8vw, 22px);
    border-radius: 8px;
}

.workshop-reservation-form__schedule,
.workshop-reservation-form__choices {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 16rem),
        linear-gradient(150deg, rgba(159, 17, 23, 0.98), rgba(215, 25, 32, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 52px rgba(159, 17, 23, 0.18);
    color: var(--white);
}

.workshop-reservation-form__choices {
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.12), transparent 14rem),
        linear-gradient(160deg, rgba(132, 14, 20, 0.98), rgba(195, 22, 29, 0.96));
}

.workshop-reservation-form__details {
    border: 1px solid rgba(16, 17, 21, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 18px 52px rgba(16, 17, 21, 0.06);
}

.workshop-reservation-form__section-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.workshop-reservation-form__section-head > span {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
}

.workshop-reservation-form__schedule .workshop-reservation-form__section-head > span,
.workshop-reservation-form__choices .workshop-reservation-form__section-head > span {
    background: var(--white);
    color: var(--red);
}

.workshop-reservation-form__section-head h3 {
    margin: 0 0 4px;
    font-size: 1.25rem;
}

.workshop-reservation-form__section-head p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.4;
}

.workshop-reservation-form__schedule h3,
.workshop-reservation-form__schedule p,
.workshop-reservation-form__choices h3,
.workshop-reservation-form__choices p {
    color: var(--white);
}

.workshop-reservation-form__schedule p,
.workshop-reservation-form__choices p,
.workshop-reservation-form__schedule .workshop-calendar__status,
.workshop-reservation-form__schedule .workshop-calendar__legend {
    color: rgba(255, 255, 255, 0.78);
}

.workshop-calendar {
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 16px 44px rgba(16, 17, 21, 0.08);
}

.workshop-calendar__top {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    gap: 8px;
    align-items: center;
}

.workshop-calendar__top strong {
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 780;
    text-align: center;
}

.workshop-calendar__nav {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font: inherit;
    font-size: 1.45rem;
    font-weight: 760;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.workshop-calendar__nav:hover,
.workshop-calendar__nav:focus-visible {
    border-color: rgba(215, 25, 32, 0.36);
    color: var(--red);
    background: var(--white);
}

.workshop-calendar__nav:disabled {
    opacity: 0.36;
    cursor: not-allowed;
}

.workshop-calendar__mobile-days {
    display: none;
}

.workshop-calendar-mobile-days__pager {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
    align-items: center;
}

.workshop-calendar-mobile-days__pager-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font: inherit;
    font-size: 1.3rem;
    font-weight: 780;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.workshop-calendar-mobile-days__pager-button:hover,
.workshop-calendar-mobile-days__pager-button:focus-visible {
    border-color: rgba(215, 25, 32, 0.36);
    color: var(--red);
    background: var(--white);
}

.workshop-calendar-mobile-days__pager-button:disabled {
    opacity: 0.36;
    cursor: not-allowed;
}

.workshop-calendar-mobile-days__range {
    min-width: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 820;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.workshop-calendar-mobile-days__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.workshop-calendar-mobile-days__empty {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.workshop-calendar-mobile-day {
    display: grid;
    min-width: 0;
    min-height: 58px;
    align-content: center;
    gap: 5px;
    padding: 10px 12px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(16, 17, 21, 0.08);
    font: inherit;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.workshop-calendar-mobile-day:hover,
.workshop-calendar-mobile-day:focus-visible {
    border-color: rgba(215, 25, 32, 0.36);
    color: var(--red);
    transform: translateY(-1px);
}

.workshop-calendar-mobile-day.is-selected {
    border-color: rgba(255, 255, 255, 0.48);
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 14px 30px rgba(16, 17, 21, 0.22);
}

.workshop-calendar-mobile-day__date {
    font-size: 0.95rem;
    font-weight: 820;
    line-height: 1;
}

.workshop-calendar-mobile-day small {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 760;
    line-height: 1;
    text-transform: capitalize;
}

.workshop-calendar-mobile-day.is-selected small {
    color: rgba(255, 255, 255, 0.78);
}

.workshop-calendar__weekdays,
.workshop-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.workshop-calendar__weekdays span {
    display: grid;
    min-height: 22px;
    place-items: center;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 760;
}

.workshop-calendar__day {
    display: grid;
    aspect-ratio: 1 / 1;
    min-width: 0;
    min-height: 34px;
    place-items: center;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 720;
    cursor: pointer;
    transition: border-color 0.16s ease, color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.workshop-calendar__day:hover,
.workshop-calendar__day:focus-visible {
    border-color: rgba(215, 25, 32, 0.38);
    color: var(--red);
    transform: translateY(-1px);
}

.workshop-calendar__day.is-today {
    border-color: rgba(16, 17, 21, 0.24);
}

.workshop-calendar__day.is-selected {
    border-color: var(--red);
    color: var(--white);
    background: var(--red);
    box-shadow: 0 10px 22px rgba(215, 25, 32, 0.22);
}

.workshop-calendar__day.is-disabled {
    border-color: rgba(16, 17, 21, 0.04);
    color: rgba(16, 17, 21, 0.26);
    background: rgba(16, 17, 21, 0.04);
    cursor: not-allowed;
    transform: none;
}

.workshop-calendar__day.is-empty {
    border-color: transparent;
    background: transparent;
    pointer-events: none;
}

.workshop-calendar__status {
    min-height: 1.35em;
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.35;
}

.workshop-calendar__status.is-error {
    color: var(--red-dark);
    font-weight: 700;
}

.workshop-reservation-form__schedule .workshop-calendar .workshop-calendar__status,
.workshop-reservation-form__schedule .workshop-calendar .workshop-calendar__legend {
    color: var(--muted);
}

.workshop-calendar__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.2;
}

.workshop-calendar__legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.workshop-calendar__legend i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.workshop-calendar__legend .is-available {
    background: var(--white);
    border: 1px solid rgba(16, 17, 21, 0.18);
}

.workshop-calendar__legend .is-selected {
    background: var(--red);
}

.workshop-calendar__legend .is-closed {
    background: rgba(16, 17, 21, 0.14);
}

.workshop-calendar .workshop-calendar__status,
.workshop-calendar .workshop-calendar__legend {
    color: var(--muted);
}

.workshop-calendar .workshop-calendar__status.is-error {
    color: var(--red-dark);
}

.workshop-reservation-form__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.workshop-reservation-form__details .workshop-reservation-form__section-head,
.workshop-reservation-summary,
.workshop-reservation-form__details .lead-field--wide,
.workshop-reservation-form .button {
    grid-column: 1 / -1;
}

.workshop-reservation-form .button {
    min-height: 50px;
    border-radius: 8px;
    font-size: 1rem;
}

.workshop-reservation-form input:invalid,
.workshop-reservation-form select:invalid {
    box-shadow: none;
}

.workshop-reservation-form__details .lead-field {
    font-weight: 720;
}

.workshop-reservation-form__details .lead-field input,
.workshop-reservation-form__details .lead-field textarea {
    min-height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
}

.workshop-reservation-form__details .lead-field textarea {
    min-height: 74px;
}

.workshop-reservation-summary {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(215, 25, 32, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.78);
}

.workshop-reservation-summary > span {
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 820;
}

.workshop-reservation-summary dl {
    display: grid;
    grid-template-columns: minmax(138px, 1.04fr) minmax(72px, 0.56fr) minmax(116px, 0.88fr);
    gap: 8px;
    margin: 0;
}

.workshop-reservation-summary div {
    min-width: 0;
}

.workshop-reservation-summary div:nth-child(3) {
    grid-column: auto;
}

.workshop-reservation-summary dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 760;
}

.workshop-reservation-summary dd {
    margin: 0;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
}

.workshop-reservation-form__details .lead-field input:focus,
.workshop-reservation-form__details .lead-field textarea:focus {
    border-color: rgba(215, 25, 32, 0.46);
    outline: 3px solid rgba(215, 25, 32, 0.1);
}

.workshop-choice-panel {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.workshop-choice-panel legend {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 760;
}

.workshop-hour-groups {
    display: grid;
    gap: 10px;
}

.workshop-hour-group {
    display: grid;
    gap: 8px;
}

.workshop-hour-group > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 820;
}

.workshop-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.workshop-choice-grid--hours {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-choice {
    min-width: 0;
}

.workshop-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.workshop-choice span {
    display: grid;
    min-height: 38px;
    place-items: center;
    padding: 9px 6px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    font-weight: 760;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.workshop-choice--service span {
    min-height: 40px;
}

.workshop-choice span:hover {
    transform: translateY(-1px);
}

.workshop-choice input:checked + span {
    border-color: var(--white);
    color: var(--red);
    background: var(--white);
    box-shadow: 0 12px 24px rgba(93, 7, 12, 0.2);
}

.workshop-choice input:focus-visible + span {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.workshop-choice.is-hidden {
    display: none;
}

.workshop-cta-panel {
    border: 0;
    background:
        radial-gradient(circle at 86% 32%, rgba(215, 25, 32, 0.18), transparent 18rem),
        linear-gradient(135deg, #111318, #242a31);
    box-shadow: 0 24px 80px rgba(16, 17, 21, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.workshop-cta-panel h2,
.workshop-cta-panel p {
    color: var(--white);
}

.workshop-cta-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1120px) {
    .workshop-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workshop-reservation-form {
        grid-template-columns: 1fr;
    }

    .workshop-choice-grid,
    .workshop-choice-grid--hours {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .workshop-intro__grid,
    .workshop-parts__grid,
    .workshop-reservation__card {
        grid-template-columns: 1fr;
    }

    .workshop-reservation__head {
        grid-template-columns: 1fr;
    }

    .workshop-reservation__steps {
        justify-self: start;
        flex-wrap: wrap;
    }

    .workshop-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .workshop-hero,
    .models-landing-hero {
        height: 100svh;
        min-height: 560px;
        padding-top: 126px;
        padding-bottom: 34px;
    }

    .workshop-hero .public-hero-content,
    .models-landing-hero .public-hero-content {
        width: 100%;
        max-width: none;
    }

    .workshop-hero h1,
    .models-landing-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.35rem);
        line-height: 1.05;
    }

    .workshop-hero p:not(.eyebrow),
    .models-landing-hero p:not(.eyebrow) {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.5;
    }

    .workshop-hero .actions,
    .models-landing-hero .actions {
        margin-top: 22px;
    }

    .breadcrumbs.breadcrumbs--below-hero {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 16px var(--shell-inline) 22px;
        box-shadow: none;
    }
    .workshop-info,
    .workshop-service-grid {
        grid-template-columns: 1fr;
    }

    .workshop-reservation {
        padding: 42px 0 54px;
    }

    .workshop-reservation__card {
        width: min(100% - 28px, 460px);
        padding: 22px 16px;
    }

    .workshop-reservation-form__schedule,
    .workshop-reservation-form__choices,
    .workshop-reservation-form__details {
        padding: 18px 14px;
    }

    .workshop-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workshop-choice-grid--hours {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .workshop-reservation-summary dl {
        grid-template-columns: 1fr;
    }

    .workshop-calendar {
        margin-right: -2px;
        margin-left: -2px;
        gap: 12px;
        padding: 12px 10px 10px;
    }

    .workshop-calendar__top,
    .workshop-calendar__grid,
    .workshop-calendar__weekdays,
    .workshop-calendar__legend {
        display: none;
    }

    .workshop-calendar__mobile-days {
        display: grid;
        gap: 10px;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .workshop-calendar-mobile-day {
        min-height: 54px;
        gap: 4px;
        padding: 8px 7px;
        border-radius: 7px;
        box-shadow: 0 8px 18px rgba(16, 17, 21, 0.07);
    }

    .workshop-calendar-mobile-day__date {
        font-size: 0.82rem;
    }

    .workshop-calendar-mobile-day small {
        font-size: 0.68rem;
    }

    .workshop-calendar__status {
        font-size: 0.82rem;
    }

    .workshop-service-card {
        min-height: 0;
    }

    .workshop-hero__actions .button,
    .workshop-intro__actions .button,
    .workshop-reservation-form .button {
        width: 100%;
    }

    .workshop-reservation-form__details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 370px) {
    .workshop-choice-grid--hours {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ------------------------------------------------------------------
   Contact landing
------------------------------------------------------------------ */
.contact-hero .public-hero-media img {
    object-position: center 44%;
    filter: saturate(0.94) contrast(1.08);
}

.contact-hero .public-hero-shade {
    background:
        radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.08), transparent 24rem),
        linear-gradient(90deg, rgba(6, 7, 9, 0.86) 0%, rgba(6, 7, 9, 0.48) 48%, rgba(6, 7, 9, 0.1) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.08), rgba(6, 7, 9, 0.7));
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.contact-hero__actions .button {
    min-height: 52px;
    padding: 0 28px;
    border-radius: 18px;
    font-size: 1rem;
}

.contact-intro {
    scroll-margin-top: 108px;
    padding: clamp(58px, 8vw, 104px) 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.08), transparent 26rem),
        linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(238, 242, 246, 0.96));
}

.contact-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.72fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: stretch;
}

.contact-intro__copy {
    display: grid;
    align-content: center;
    max-width: 740px;
}

.contact-intro .eyebrow,
.contact-locations .eyebrow {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-intro .eyebrow::after,
.contact-locations .eyebrow::after {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.contact-intro__copy h2 {
    max-width: 680px;
    margin-bottom: 18px;
}

.contact-intro__copy p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(1rem, 1vw, 1.125rem);
}

.contact-intro__routes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.contact-intro__routes a,
.contact-location-card,
.contact-map-card {
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.contact-intro__routes a {
    display: grid;
    grid-template-rows: minmax(72px, 1fr) auto;
    gap: 14px;
    min-height: 156px;
    align-items: end;
    padding: 18px;
    color: var(--ink);
}

.contact-route__copy {
    display: grid;
    gap: 8px;
    align-self: start;
}

.contact-intro__routes small,
.contact-location-card__head span {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 780;
}

.contact-intro__routes strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.2;
}

.contact-intro__routes em {
    display: inline-flex;
    width: 126px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    align-self: end;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--white);
    background: var(--red);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 780;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(215, 25, 32, 0.18);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-intro__routes a:hover em,
.contact-intro__routes a:focus-visible em {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(215, 25, 32, 0.24);
}

.contact-map-card {
    display: grid;
    grid-template-rows: minmax(320px, 1fr) auto;
    overflow: hidden;
    min-height: 460px;
}

.contact-map-card__frame {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: #eef2f6;
}

.contact-map-card iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    filter: saturate(0.88) contrast(1.02);
}

.contact-map-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.88);
}

.contact-map-card__footer span {
    color: var(--ink);
    font-weight: 800;
}

.contact-map-card__footer a {
    color: var(--red);
    font-weight: 780;
}

.contact-locations {
    padding: 0 0 clamp(58px, 8vw, 104px);
    background: linear-gradient(180deg, rgba(238, 242, 246, 0.96), var(--paper));
}

.contact-location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-location-card {
    display: grid;
    gap: 20px;
    padding: clamp(22px, 2.5vw, 30px);
}

.contact-location-card__head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.75rem, 2.8vw, 2.6rem);
}

.contact-location-card__address strong {
    display: block;
    color: var(--ink);
    font-size: 1.18rem;
}

.contact-location-card__address p {
    margin: 6px 0 0;
    color: var(--muted);
}

.contact-location-card__hours {
    padding-top: 18px;
    border-top: 1px solid rgba(16, 17, 21, 0.08);
}

.contact-location-card__hours h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.04rem;
}

.contact-location-card__hours ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-location-card__hours li {
    color: var(--muted);
    line-height: 1.45;
}

.contact-location-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.contact-location-card__actions .button.secondary {
    border-color: rgba(16, 17, 21, 0.14);
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 14px 36px rgba(16, 17, 21, 0.08);
}

@media (max-width: 920px) {
    .contact-intro__grid,
    .contact-location-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-card {
        min-height: 400px;
    }
}

@media (max-width: 700px) {
    .contact-intro__routes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .contact-hero__actions .button,
    .contact-location-card__actions .button {
        width: 100%;
    }

    .contact-intro {
        padding: 46px 0 54px;
    }

    .contact-map-card {
        min-height: 340px;
    }

    .contact-map-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ------------------------------------------------------------------
   Nosotros
------------------------------------------------------------------ */
.about-hero .public-hero-media img {
    object-position: center 46%;
}

.about-hero .public-hero-shade {
    background:
        radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.08), transparent 25rem),
        linear-gradient(90deg, rgba(6, 7, 9, 0.88) 0%, rgba(6, 7, 9, 0.52) 46%, rgba(6, 7, 9, 0.12) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.08), rgba(6, 7, 9, 0.68));
}

.about-hero__actions,
.about-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.about-hero .public-hero-content {
    min-width: 0;
}

.about-hero p:not(.eyebrow) {
    overflow-wrap: break-word;
}

.about-page {
    background:
        radial-gradient(circle at 88% 6%, rgba(215, 25, 32, 0.08), transparent 22rem),
        linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(239, 243, 247, 0.96));
}

.about-intro,
.about-certified,
.about-network,
.about-pillars,
.about-story,
.about-timeline-editorial,
.about-timeline-preview,
.about-closing,
.about-facilities {
    padding: clamp(56px, 8vw, 96px) 0;
}

.about-intro__grid,
.about-certified__grid,
.about-network__grid,
.about-story__grid,
.about-closing__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.76fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.about-intro__copy,
.about-story__copy {
    max-width: 760px;
}

.about-intro .eyebrow,
.about-certified .eyebrow,
.about-network .eyebrow,
.about-pillars .eyebrow,
.about-story .eyebrow,
.about-closing .eyebrow,
.about-facilities .eyebrow,
.about-timeline-editorial .eyebrow,
.about-timeline-preview .eyebrow {
    margin-bottom: 12px;
    color: var(--red);
}

.about-intro .eyebrow::after,
.about-certified .eyebrow::after,
.about-network .eyebrow::after,
.about-story .eyebrow::after,
.about-closing .eyebrow::after,
.about-facilities .eyebrow::after,
.about-timeline-editorial .eyebrow::after,
.about-timeline-preview .eyebrow::after {
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: currentColor;
}

.about-intro h2,
.about-certified h2,
.about-network h2,
.about-story h2,
.about-closing h2,
.about-facilities h2,
.about-timeline-editorial h2,
.about-timeline-preview h2 {
    color: var(--ink);
    text-wrap: balance;
}

.about-intro p,
.about-certified p,
.about-network p,
.about-story p,
.about-closing p,
.about-facility-card p,
.about-hours p,
.about-timeline-editorial p,
.about-timeline-preview p,
.about-pillar-card p {
    color: var(--muted);
    line-height: 1.64;
}

.about-intro__actions .button.secondary {
    border-color: rgba(16, 17, 21, 0.14);
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 14px 36px rgba(16, 17, 21, 0.08);
}

.about-intro__panel {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
        rgba(255, 255, 255, 0.76);
    box-shadow: 0 24px 80px rgba(16, 17, 21, 0.1);
}

.about-intro__panel > img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
}

.about-intro__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(16, 17, 21, 0.08);
}

.about-intro__stats article {
    min-height: 132px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
}

.about-intro__stats strong {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1;
}

.about-intro__stats span {
    display: block;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.34;
}

.about-pillars {
    background: rgba(255, 255, 255, 0.72);
}

.about-certified {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.16), transparent 22rem),
        linear-gradient(135deg, #b9151b, #d71920 48%, #991018);
    color: var(--white);
}

.about-certified__grid {
    grid-template-columns: minmax(360px, 0.76fr) minmax(0, 0.94fr);
}

.about-certified__media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 28px 86px rgba(86, 7, 10, 0.28);
}

.about-certified__media img,
.about-network__media img,
.about-closing__grid img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.about-certified__media img {
    aspect-ratio: 1.1 / 1;
}

.about-certified .eyebrow,
.about-certified h2 {
    color: var(--white);
}

.about-certified p {
    color: rgba(255, 255, 255, 0.82);
}

.about-certified .button {
    margin-top: 10px;
}

.about-network {
    background:
        radial-gradient(circle at 92% 10%, rgba(215, 25, 32, 0.07), transparent 24rem),
        rgba(255, 255, 255, 0.74);
}

.about-network__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.78fr);
}

.about-network__media {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 74px rgba(16, 17, 21, 0.12);
}

.about-network__media img {
    aspect-ratio: 1.18 / 1;
}

.about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-pillar-card {
    overflow: hidden;
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.about-pillar-card > a {
    display: block;
    overflow: hidden;
    background: #dfe4e9;
}

.about-pillar-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.about-pillar-card:hover img {
    transform: scale(1.03);
}

.about-pillar-card div {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.about-pillar-card h3,
.about-timeline-item h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.14rem;
}

.about-pillar-card p,
.about-timeline-item p {
    margin: 0;
}

.about-story {
    color: var(--white);
    background:
        radial-gradient(circle at 10% 4%, rgba(215, 25, 32, 0.2), transparent 24rem),
        linear-gradient(135deg, #111318, #242a31);
}

.about-story__grid {
    grid-template-columns: minmax(360px, 0.75fr) minmax(0, 0.92fr);
}

.about-story__media {
    margin: 0;
}

.about-story__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.08 / 1;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.about-story .eyebrow,
.about-story h2 {
    color: var(--white);
}

.about-story p {
    color: rgba(255, 255, 255, 0.78);
}

.about-timeline-editorial {
    background:
        radial-gradient(circle at 88% 0%, rgba(215, 25, 32, 0.08), transparent 24rem),
        linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(239, 243, 247, 0.96));
}

.about-timeline-editorial__head {
    max-width: 880px;
    margin-bottom: clamp(28px, 4vw, 46px);
}

.about-timeline-editorial__head p:not(.eyebrow) {
    max-width: 700px;
    margin: 14px 0 0;
    font-size: 1.06rem;
}

.about-timeline-editorial__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.about-timeline-rail {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 14px;
    padding: 26px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 66px rgba(16, 17, 21, 0.09);
}

.about-timeline-rail::before {
    width: 44px;
    height: 2px;
    content: "";
    background: var(--red);
}

.about-timeline-rail span {
    color: var(--red);
    font-size: clamp(2.1rem, 3.4vw, 3rem);
    font-weight: 780;
    line-height: 0.98;
}

.about-timeline-rail strong {
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.35;
}

.about-timeline-rail p {
    margin: 0;
    font-size: 0.98rem;
}

.about-era-list {
    display: grid;
    width: min(100%, 1120px);
    margin: 0 auto;
    gap: clamp(18px, 2.4vw, 28px);
}

.about-era {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: stretch;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 70px rgba(16, 17, 21, 0.09);
}

.about-era:nth-child(even) {
    grid-template-columns: minmax(360px, 0.56fr) minmax(0, 1fr);
}

.about-era:nth-child(even) .about-era__media {
    order: -1;
}

.about-era--dark {
    background:
        radial-gradient(circle at 86% 10%, rgba(215, 25, 32, 0.18), transparent 18rem),
        linear-gradient(135deg, #111318, #242a31);
    color: var(--white);
}

.about-era__body {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(24px, 3.8vw, 44px);
}

.about-era__kicker {
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 820;
}

.about-era__range {
    color: var(--red);
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    font-weight: 780;
    line-height: 0.95;
}

.about-era h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.08;
    text-wrap: balance;
}

.about-era p {
    margin: 0;
}

.about-era--dark .about-era__kicker,
.about-era--dark .about-era__range {
    color: #ff4a50;
}

.about-era--dark h3 {
    color: var(--white);
}

.about-era--dark p {
    color: rgba(255, 255, 255, 0.76);
}

.about-era__milestones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.about-era__milestones div {
    min-height: 92px;
    padding: 14px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
}

.about-era__milestones span {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 1rem;
    font-weight: 820;
}

.about-era__milestones p {
    font-size: 0.9rem;
    line-height: 1.46;
}

.about-era--dark .about-era__milestones div {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
}

.about-era--dark .about-era__milestones span {
    color: #ff6268;
}

.about-era__media {
    min-height: 100%;
    margin: 0;
    background: #dfe4e9;
}

.about-era__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-timeline-preview {
    background:
        radial-gradient(circle at 92% 0%, rgba(215, 25, 32, 0.08), transparent 24rem),
        rgba(255, 255, 255, 0.7);
}

.about-timeline-preview__note {
    align-self: end;
    padding: 8px 12px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 760;
}

.about-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-timeline-item {
    position: relative;
    min-height: 250px;
    padding: 24px 22px;
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.about-timeline-item::before {
    position: absolute;
    top: 24px;
    right: 22px;
    width: 36px;
    height: 2px;
    content: "";
    background: var(--red);
}

.about-timeline-item span {
    display: block;
    margin-bottom: 42px;
    color: var(--red);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 760;
    line-height: 1;
}

.about-timeline-item h3 {
    margin-bottom: 10px;
}

.about-closing {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.1), transparent 22rem),
        linear-gradient(135deg, #111318, #242a31);
}

.about-closing__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
}

.about-closing .eyebrow,
.about-closing h2,
.about-closing strong {
    color: var(--white);
}

.about-closing p {
    color: rgba(255, 255, 255, 0.78);
}

.about-closing strong {
    display: block;
    margin-top: 22px;
    font-size: 1.1rem;
}

.about-closing__grid img {
    aspect-ratio: 1.25 / 1;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.about-facilities {
    background:
        radial-gradient(circle at 12% 0%, rgba(215, 25, 32, 0.08), transparent 24rem),
        linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(239, 243, 247, 0.96));
}

.about-facilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-facility-card,
.about-hours article {
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.about-facility-card {
    min-height: 210px;
    padding: 24px;
}

.about-facility-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 780;
}

.about-facility-card h3,
.about-hours h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 1.18rem;
}

.about-facility-card .text-link {
    margin-top: 18px;
}

.about-facility-card__button {
    width: fit-content;
    margin-top: 18px;
}

.about-hours {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.about-hours article {
    padding: 24px;
}

.about-hours p {
    margin: 6px 0 0;
    font-size: 0.98rem;
}

/* ------------------------------------------------------------------
   Trabaja con nosotros
------------------------------------------------------------------ */
.careers-page {
    background:
        radial-gradient(circle at 10% 0%, rgba(215, 25, 32, 0.08), transparent 24rem),
        linear-gradient(180deg, rgba(250, 251, 252, 0.98), rgba(239, 243, 247, 0.96));
}

.careers-hero .public-hero-media img {
    object-position: center 52%;
    filter: saturate(0.94) contrast(1.08);
}

.careers-hero .public-hero-shade {
    background:
        radial-gradient(circle at 70% 38%, rgba(215, 25, 32, 0.2), transparent 24rem),
        linear-gradient(90deg, rgba(6, 7, 9, 0.94) 0%, rgba(6, 7, 9, 0.58) 50%, rgba(6, 7, 9, 0.22) 100%),
        linear-gradient(180deg, rgba(6, 7, 9, 0.12), rgba(6, 7, 9, 0.82));
}

.careers-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.careers-hero__actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.careers-intro,
.careers-project,
.careers-jobs,
.careers-apply,
.careers-reasons {
    padding: clamp(56px, 8vw, 96px) 0;
}

.careers-intro__grid,
.careers-project__grid,
.careers-apply__grid {
    display: grid;
    gap: clamp(26px, 5vw, 68px);
    align-items: start;
}

.careers-intro__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
}

.careers-project__grid {
    grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
    align-items: end;
}

.careers-apply__grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.6fr);
}

.careers-intro .eyebrow.dark,
.careers-project .eyebrow.dark,
.careers-jobs .eyebrow.dark,
.careers-apply .eyebrow.dark,
.careers-reasons .eyebrow.dark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.careers-intro .eyebrow.dark::after,
.careers-project .eyebrow.dark::after,
.careers-jobs .eyebrow.dark::after,
.careers-apply .eyebrow.dark::after,
.careers-reasons .eyebrow.dark::after {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.careers-intro__copy h2,
.careers-project h2,
.careers-apply h2,
.careers-reasons h2 {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    text-wrap: balance;
}

.careers-intro__copy p:not(.eyebrow),
.careers-project__grid > p,
.careers-apply__copy > p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.66;
}

.careers-intro__stats {
    display: grid;
    gap: 12px;
}

.careers-intro__stats article,
.careers-department-grid article,
.careers-job-card,
.careers-reason-grid article {
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 52px rgba(16, 17, 21, 0.08);
}

.careers-intro__stats article {
    display: grid;
    gap: 4px;
    min-height: 112px;
    padding: 24px;
}

.careers-intro__stats strong {
    color: var(--red);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 0.95;
}

.careers-intro__stats span {
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 760;
}

.careers-job-grid {
    display: grid;
    gap: 18px;
}

.careers-job-card {
    padding: clamp(24px, 3.4vw, 40px);
}

.careers-job-card > span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 820;
}

.careers-job-card h3 {
    max-width: 860px;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.3vw, 2.15rem);
    line-height: 1.08;
}

.careers-job-card > p {
    max-width: 820px;
    color: var(--muted);
    line-height: 1.62;
}

.careers-job-card__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.careers-job-card__columns div {
    min-height: 100%;
    padding: 20px;
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 8px;
    background: rgba(246, 248, 250, 0.72);
}

.careers-job-card__columns strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 0.98rem;
}

.careers-job-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 1.1rem;
}

.careers-job-card li {
    color: var(--muted);
    line-height: 1.52;
}

.careers-job-card__offer {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(16, 17, 21, 0.08);
    color: var(--ink);
    font-weight: 720;
}

.careers-department-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.careers-department-grid article {
    display: grid;
    gap: 8px;
    min-height: 120px;
    padding: 20px;
}

.careers-department-grid strong {
    color: var(--ink);
    line-height: 1.2;
}

.careers-department-grid span {
    color: var(--muted);
    line-height: 1.5;
}

.careers-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: clamp(22px, 3.3vw, 34px);
    border: 1px solid rgba(16, 17, 21, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
        rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 76px rgba(16, 17, 21, 0.12);
}

.careers-form .lead-field--wide,
.careers-form .lead-consent,
.careers-form .button,
.careers-form .form-alert {
    grid-column: 1 / -1;
}

.careers-form .button {
    width: fit-content;
    min-width: 190px;
}

.careers-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.careers-reason-grid article {
    min-height: 210px;
    padding: 24px;
}

.careers-reason-grid h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(1.15rem, 1.45vw, 1.35rem);
}

.careers-reason-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

@media (max-width: 1120px) {
    .about-intro__grid,
    .about-certified__grid,
    .about-network__grid,
    .about-closing__grid,
    .about-story__grid {
        grid-template-columns: 1fr;
    }

    .about-timeline-editorial__layout,
    .about-era {
        grid-template-columns: 1fr;
    }

    .about-era:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .about-era:nth-child(even) .about-era__media {
        order: 0;
    }

    .about-timeline-rail {
        position: static;
    }

    .about-era__media img {
        min-height: 320px;
    }

    .about-pillar-grid,
    .about-timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story__media img {
        aspect-ratio: 16 / 8;
    }

    .about-certified__media img,
    .about-network__media img,
    .about-closing__grid img {
        aspect-ratio: 16 / 8;
    }
}

@media (max-width: 620px) {
    .about-hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    .about-hero .public-hero-content {
        width: min(100%, calc(100vw - 40px));
    }

    .about-hero__actions .button,
    .about-intro__actions .button {
        width: 100%;
    }

    .about-intro,
    .about-certified,
    .about-network,
    .about-pillars,
    .about-story,
    .about-timeline-editorial,
    .about-timeline-preview,
    .about-closing,
    .about-facilities {
        padding: 46px 0;
    }

    .about-intro__stats,
    .about-pillar-grid,
    .about-era__milestones,
    .about-timeline-grid,
    .about-facilities__grid,
    .about-hours {
        grid-template-columns: 1fr;
    }

    .about-intro__panel > img,
    .about-pillar-card img,
    .about-story__media img,
    .about-certified__media img,
    .about-network__media img,
    .about-closing__grid img {
        aspect-ratio: 4 / 3;
    }

    .about-intro__stats article,
    .about-era__milestones div,
    .about-timeline-item,
    .about-facility-card {
        min-height: 0;
    }

    .about-timeline-editorial__head {
        margin-bottom: 24px;
    }

    .about-timeline-rail,
    .about-era__body {
        padding: 22px;
    }

    .about-era__range {
        font-size: clamp(2.1rem, 11vw, 3.1rem);
    }

    .about-era__media img {
        min-height: 240px;
    }
}

@media (max-width: 980px) {
    .careers-intro__grid,
    .careers-project__grid,
    .careers-apply__grid {
        grid-template-columns: 1fr;
    }

    .careers-reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .careers-hero {
        min-height: 580px;
        padding-top: 126px;
        padding-bottom: 36px;
    }

    .careers-hero .public-hero-content {
        width: min(100%, calc(100vw - 40px));
    }

    .careers-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.35rem);
        line-height: 1.04;
    }

    .careers-hero__actions .button,
    .careers-form .button {
        width: 100%;
    }

    .careers-intro,
    .careers-project,
    .careers-jobs,
    .careers-apply,
    .careers-reasons {
        padding: 46px 0;
    }

    .careers-job-card__columns,
    .careers-department-grid,
    .careers-form,
    .careers-reason-grid {
        grid-template-columns: 1fr;
    }

    .careers-job-card,
    .careers-form,
    .careers-reason-grid article {
        padding: 22px;
    }

    .careers-reason-grid article {
        min-height: 0;
    }
}

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

/* Ajuste final: las tarjetas de noticias en movil quedan uniformes y centradas. */
@media (max-width: 620px) {
    .news-editorial {
        padding-top: 26px !important;
    }

    .news-editorial__inner {
        width: 100% !important;
        max-width: none !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .news-mosaic {
        display: grid !important;
        width: min(100% - 32px, 360px) !important;
        margin: 0 auto !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        column-count: auto !important;
        column-gap: 0 !important;
    }

    .news-mosaic .post-card.post-card--mosaic {
        position: relative !important;
        display: grid !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        overflow: hidden !important;
        aspect-ratio: 1 / 1 !important;
        grid-column: auto !important;
        grid-row: auto !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
        break-inside: avoid !important;
        border-radius: 14px !important;
        box-shadow: 0 18px 48px rgba(16, 17, 21, 0.14) !important;
    }

    body:not(.has-reduced-motion) .news-mosaic .post-card.post-card--mosaic,
    body:not(.has-reduced-motion) .news-mosaic .post-card.post-card--mosaic.news-reveal,
    body:not(.has-reduced-motion) .news-mosaic .post-card.post-card--mosaic.is-visible {
        opacity: 1 !important;
        transform: none !important;
    }

    .news-mosaic .post-card.post-card--mosaic .post-card__media {
        display: block !important;
        grid-area: 1 / 1 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: auto !important;
    }

    .news-mosaic .post-card.post-card--mosaic .post-card__media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .news-mosaic .post-card.post-card--mosaic .post-card__body {
        display: flex !important;
        grid-area: 1 / 1 !important;
        min-height: 100% !important;
        height: 100% !important;
        padding: 20px 18px 18px !important;
        justify-content: flex-end !important;
        gap: 14px !important;
        overflow: hidden !important;
    }

    .news-mosaic .post-card.post-card--mosaic h3 {
        max-width: 100% !important;
        margin: 0 !important;
        font-size: clamp(1.16rem, 5.4vw, 1.42rem) !important;
        line-height: 1.11 !important;
        letter-spacing: 0 !important;
        text-wrap: balance !important;
    }

    .news-mosaic .post-card.post-card--mosaic h3 a {
        display: -webkit-box !important;
        overflow: hidden !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 4 !important;
        overflow-wrap: anywhere !important;
        hyphens: auto !important;
    }

    .news-mosaic .post-card.post-card--mosaic .post-card__button {
        width: 100% !important;
        min-height: 42px !important;
        padding: 0 18px !important;
        align-self: stretch !important;
        justify-content: center !important;
        font-size: 0.86rem !important;
        line-height: 1 !important;
        border-radius: 16px !important;
        flex: 0 0 auto !important;
    }
}

/* Responsive audit fixes: catalogo de modelos y ficha de moto */
.models-catalog,
.model-finder,
.model-grid--catalog,
.family-strip,
.model-page > .section-band,
.model-colours,
.model-gallery,
.model-seo-section {
    scroll-margin-top: calc(var(--site-header-bottom, 96px) + 24px);
}

.site-footer__main,
.site-footer__nav,
.site-footer__bottom {
    min-width: 0;
}

.site-footer__bottom {
    flex-wrap: wrap;
}

.site-footer__legal {
    min-width: 0;
}

.site-footer__legal a {
    overflow-wrap: anywhere;
}

.model-page.has-model-sticky {
    --model-sticky-space: 94px;
}

.model-page.has-model-sticky > .section-band,
.model-page.has-model-sticky .model-colours,
.model-page.has-model-sticky .model-gallery,
.model-page.has-model-sticky .model-seo-section {
    padding-bottom: calc(var(--model-section-gap) + var(--model-sticky-space));
}

.model-page.has-model-sticky .model-colours,
.model-page.has-model-sticky .model-gallery {
    padding-bottom: var(--model-bridge-gap);
}

.model-page.has-model-sticky .model-gallery {
    padding-bottom: var(--model-section-gap);
}

.model-sticky-cta.is-footer-visible {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(140%);
}

.price-card .price-sub__pvp {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 560;
    white-space: nowrap;
}

@media (max-width: 1180px) and (min-width: 981px) {
    .site-footer__main {
        grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr);
        padding-right: clamp(22px, 4vw, 48px);
        padding-left: clamp(22px, 4vw, 48px);
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .model-hero-cinematic {
        min-height: auto;
        padding: calc(var(--site-header-bottom, 92px) + 52px) 22px 42px;
    }

    .model-hero-grid {
        width: min(100%, 720px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        margin: 0 auto;
    }

    .model-hero-info {
        transform: none;
    }

    .model-hero-info h1 {
        font-size: clamp(2.55rem, 7.4vw, 4.2rem);
    }

    .price-card {
        max-width: 520px;
        justify-self: center;
        transform: none;
    }

    .model-finder__filters {
        isolation: isolate;
    }

    .model-filter {
        overflow: hidden;
        border-radius: 14px;
    }

    .model-filter[open] {
        box-shadow: 0 18px 42px rgba(16, 17, 21, 0.12);
    }

    .model-filter[open] .model-filter__body {
        position: static;
        z-index: auto;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: none;
    }

    .model-filter__body label {
        min-height: 34px;
    }
}

@media (max-width: 760px) {
    .models-landing-hero {
        min-height: 520px;
        padding-top: calc(var(--site-header-bottom, 78px) + 42px);
    }

    .models-catalog {
        padding-top: clamp(56px, 14vw, 76px);
    }

    .models-catalog__heading {
        margin-bottom: 24px;
    }

    .models-catalog__heading h2 {
        font-size: clamp(2.05rem, 9.2vw, 2.7rem);
        line-height: 1.06;
    }

    .models-catalog__heading p:not(.eyebrow) {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .model-finder {
        margin-bottom: 28px;
    }

    .model-finder__toggle {
        display: flex;
        width: 100%;
        min-height: 54px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 16px;
        border: 1px solid rgba(16, 17, 21, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: var(--ink);
        font: inherit;
        font-weight: 820;
        box-shadow: 0 12px 32px rgba(16, 17, 21, 0.08);
        cursor: pointer;
    }

    .model-finder__toggle-icon {
        display: inline-flex;
        width: 24px;
        height: 24px;
        align-items: center;
        justify-content: center;
        color: var(--red);
        flex: 0 0 auto;
    }

    .model-finder__toggle-icon svg {
        width: 20px;
        height: 20px;
    }

    .model-finder__toggle > span:not(.model-finder__toggle-icon) {
        min-width: 0;
        flex: 1 1 auto;
        text-align: left;
    }

    .model-finder__toggle-count {
        display: inline-flex;
        min-width: 24px;
        height: 24px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--red);
        color: var(--white);
        font-size: 0.78rem;
        font-weight: 820;
        line-height: 1;
    }

    .model-finder__toggle-count[hidden] {
        display: none !important;
    }

    .model-finder__toggle:focus-visible {
        border-color: rgba(215, 25, 32, 0.5);
        box-shadow:
            0 12px 32px rgba(16, 17, 21, 0.08),
            0 0 0 4px rgba(215, 25, 32, 0.1);
        outline: none;
    }

    [data-model-finder].is-filters-open .model-finder__toggle {
        border-color: rgba(215, 25, 32, 0.24);
        background: rgba(255, 255, 255, 0.98);
    }

    .model-finder__bar {
        display: none;
        gap: 12px;
        margin-top: 12px;
        padding: 12px;
        border: 1px solid rgba(16, 17, 21, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 16px 44px rgba(16, 17, 21, 0.08);
    }

    [data-model-finder].is-filters-open .model-finder__bar {
        display: grid;
    }

    .model-finder__filters {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .model-finder__actions {
        justify-content: stretch;
        min-width: 0;
    }

    .model-finder__reset {
        width: 100%;
    }

    .model-finder__active {
        min-height: 0;
        margin-top: 10px;
    }

    .model-finder__active[hidden] {
        display: none !important;
        min-height: 0;
        margin-top: 0;
        visibility: hidden;
    }

    .model-filter summary {
        min-height: 54px;
        padding: 0 15px;
        font-size: 0.92rem;
    }

    .model-filter__body {
        padding: 12px 15px 15px;
    }

    .model-grid--catalog {
        gap: 16px;
    }

    .model-page {
        --model-shell: min(100% - 28px, 520px);
        --model-section-gap: clamp(38px, 10vw, 50px);
        --model-bridge-gap: clamp(16px, 4.5vw, 22px);
    }

    .model-page.has-model-sticky {
        --model-sticky-space: 118px;
    }

    .model-hero-cinematic {
        --model-hero-mobile-pad-top: calc(var(--site-header-bottom, 74px) + 34px);
        --model-hero-mobile-pad-bottom: max(28px, env(safe-area-inset-bottom));
        min-height: var(--mobile-viewport-height, 100svh);
        padding: var(--model-hero-mobile-pad-top) 14px var(--model-hero-mobile-pad-bottom);
    }

    .model-hero-grid {
        width: 100%;
        max-width: 100%;
        min-height: calc(var(--mobile-viewport-height, 100svh) - var(--model-hero-mobile-pad-top) - var(--model-hero-mobile-pad-bottom));
        grid-template-rows: auto minmax(clamp(18px, 5svh, 56px), 1fr) auto;
        gap: 0;
    }

    .model-hero-info {
        grid-row: 1;
    }

    .model-hero-info h1 {
        font-size: clamp(2.05rem, 9vw, 2.65rem);
        line-height: 1.04;
    }

    .price-card {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
        align-self: end;
        grid-row: 3;
        margin: 0;
        padding: 20px 18px 18px;
        border-radius: 24px;
    }

    .model-hero-grid > .price-card.has-promo {
        margin-top: 0;
    }

    .price-card .price-eyebrow {
        font-size: 0.8rem;
    }

    .price-card .price-main {
        gap: 7px;
        margin-bottom: 8px;
        font-size: clamp(1.78rem, 7.8vw, 2.18rem);
        line-height: 1.02;
        white-space: normal;
    }

    .price-card .price-main span,
    .price-card .price-main small,
    .price-card .price-sub__pvp {
        white-space: normal;
    }

    .price-card .price-main small {
        font-size: 0.88rem;
    }

    .price-card .price-sub {
        margin-bottom: 20px;
        font-size: 0.94rem;
        line-height: 1.35;
    }

    .price-plus-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 20px;
    }

    .plus-option {
        min-width: 0;
        min-height: 64px;
        padding: 10px 4px;
        border-radius: 13px;
    }

    .plus-option strong {
        font-size: 0.82rem;
    }

    .plus-option em {
        font-size: 0.8rem;
    }

    .price-card .price-actions {
        gap: 10px;
        margin-bottom: 0;
    }

    .price-card .price-actions .button {
        min-height: 50px;
        border-radius: 15px;
        font-size: 0.92rem;
    }

    .model-colours,
    .model-gallery,
    .model-seo-section {
        width: var(--model-shell);
    }

    .model-sticky-cta {
        right: auto;
        bottom: max(10px, env(safe-area-inset-bottom));
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        width: min(100% - 24px, 520px);
        padding: 10px 10px 10px 14px;
        border-radius: 18px;
    }

    .model-sticky-cta .info strong {
        font-size: 0.9rem;
    }

    .model-sticky-cta .info span,
    .model-sticky-cta__pricing small {
        font-size: 0.76rem;
    }

    .model-sticky-cta__pricing small {
        display: none;
    }

    .model-sticky-cta .button {
        min-height: 44px;
        padding: 0 14px;
        border-radius: 14px;
        font-size: 0.82rem;
        white-space: nowrap;
    }
}

@media (max-width: 760px) and (max-height: 700px) {
    .model-hero-cinematic {
        --model-hero-mobile-pad-top: calc(var(--site-header-bottom, 74px) + 24px);
        --model-hero-mobile-pad-bottom: max(22px, env(safe-area-inset-bottom));
    }

    .model-hero-grid > .price-card.has-promo {
        padding-top: 18px;
        padding-bottom: 16px;
    }

    .model-hero-grid > .price-card.has-promo .price-promo {
        margin-bottom: 14px;
    }

    .model-hero-grid > .price-card.has-promo .price-plus-options {
        margin-bottom: 14px;
    }

    .model-hero-grid > .price-card.has-promo .plus-option {
        min-height: 58px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .model-hero-grid > .price-card.has-promo .price-actions {
        gap: 8px;
    }

    .model-hero-grid > .price-card.has-promo .price-actions .button {
        min-height: 48px;
    }
}

@media (max-width: 420px) {
    .model-hero-cinematic {
        padding-right: 12px;
        padding-left: 12px;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }

    .price-card .price-main {
        font-size: clamp(1.68rem, 7.5vw, 2.02rem);
    }

    .price-plus-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .plus-option {
        min-height: 56px;
        padding-right: 3px;
        padding-left: 3px;
    }

    .plus-option strong {
        font-size: 0.74rem;
    }

    .plus-option em {
        font-size: 0.76rem;
    }

    .model-sticky-cta {
        width: calc(100% - 20px);
    }
}

@media (max-width: 900px) and (max-height: 620px) and (orientation: landscape) {
    .models-landing-hero {
        height: auto;
        min-height: 440px;
        padding-top: calc(var(--site-header-bottom, 74px) + 26px);
        padding-bottom: 38px;
    }

    .models-landing-hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .model-hero-cinematic {
        min-height: auto;
        padding-top: calc(var(--site-header-bottom, 74px) + 24px);
    }

    .model-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
        grid-template-rows: auto;
        align-items: center;
        min-height: auto;
    }

    .model-hero-info,
    .model-hero-grid > .price-card {
        grid-row: auto;
    }

    .price-card {
        width: min(100%, 340px);
        margin-top: 0;
        padding: 16px 16px 14px;
    }

    .price-card .price-main {
        font-size: 1.72rem;
    }

    .price-card .price-sub,
    .price-plus-options {
        margin-bottom: 14px;
    }

    .plus-option {
        min-height: 58px;
    }
}

.admin-form.admin-model-colors-panel {
    grid-template-columns: 1fr;
    container-type: inline-size;
}

.admin-model-colors-panel > header,
.admin-model-colors-panel > .admin-alert,
.admin-model-colors-panel > .admin-model-color-list,
.admin-model-colors-panel > .admin-spec-add {
    grid-column: 1 / -1;
}

.admin-model-colors-panel > header p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.admin-model-color-header {
    display: none;
}

.admin-model-color-list {
    gap: 12px;
    min-width: 0;
}

.admin-model-color-row {
    display: grid;
    grid-template-areas:
        "image code tariff name hex order status"
        "image code tariff name hex actions actions";
    grid-template-columns: 220px minmax(96px, 0.42fr) minmax(190px, 0.84fr) minmax(220px, 0.95fr) minmax(300px, 1fr) 84px 92px;
    gap: 12px 14px;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 14px 16px;
    border: 1px solid rgba(16, 17, 21, 0.13);
}

.admin-model-color-image-cell {
    grid-area: image;
    align-self: center;
    width: 220px;
    min-width: 0;
}

.admin-model-color-preview {
    width: 220px;
    height: auto;
    min-height: 118px;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(16, 17, 21, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.admin-model-color-preview img {
    object-fit: contain;
}

.admin-model-color-row label {
    display: grid;
    gap: 6px;
    align-self: center;
    min-width: 0;
}

.admin-model-color-row label:nth-of-type(1) {
    grid-area: code;
}

.admin-model-color-row label:nth-of-type(2) {
    grid-area: tariff;
}

.admin-model-color-row label:nth-of-type(3) {
    grid-area: name;
}

.admin-model-color-row label:nth-of-type(5) {
    grid-area: order;
}

.admin-model-color-row .admin-spec-field-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: normal;
}

.admin-model-color-row input,
.admin-model-color-row select {
    min-width: 0;
}

.admin-model-color-row input[readonly] {
    color: rgba(16, 17, 21, 0.68);
    background: rgba(16, 17, 21, 0.035);
}

.admin-model-color-hex-control {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px 8px;
    align-items: center;
    min-width: 0;
}

.admin-model-color-hex-field {
    grid-area: hex;
    align-self: stretch;
    padding: 10px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
}

.admin-model-color-hex-label {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 850;
    line-height: 1;
}

.admin-model-color-hex-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
}

.admin-model-color-hex-control input[type="color"] {
    width: 42px;
    min-width: 42px;
    height: 40px;
    padding: 3px;
    cursor: pointer;
}

.admin-model-color-status {
    grid-area: status;
    align-self: end;
    justify-self: end;
    margin-bottom: 0;
}

.admin-model-color-actions {
    grid-area: actions;
    align-self: start;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.admin-model-color-actions > .button {
    flex: 0 0 auto;
}

.admin-model-colors-panel > .admin-spec-add {
    position: static;
    justify-self: start;
    margin-top: 4px;
}

@media (max-width: 1280px) {
    .admin-model-color-row {
        grid-template-areas:
            "image code tariff name order status"
            "image hex hex hex actions actions";
        grid-template-columns: 200px minmax(96px, 0.42fr) minmax(190px, 0.92fr) minmax(220px, 1fr) 84px 92px;
    }

    .admin-model-color-image-cell,
    .admin-model-color-preview {
        width: 200px;
    }

    .admin-model-color-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 760px) {
    .admin-lead-values dl > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .admin-model-color-row {
        grid-template-areas:
            "image"
            "code"
            "tariff"
            "name"
            "hex"
            "order"
            "status"
            "actions";
        grid-template-columns: 1fr;
    }

    .admin-model-color-image-cell,
    .admin-model-color-preview {
        width: 100%;
    }

    .admin-model-color-preview {
        height: 140px;
        aspect-ratio: auto;
    }

    .admin-model-color-hex-pair {
        grid-template-columns: 1fr;
    }

    .admin-model-color-actions {
        justify-content: flex-start;
    }

    .admin-model-color-status {
        justify-self: start;
    }
}

/* Form builder: stable row layout for editable fields */
.admin-form.admin-form-fields-panel {
    overflow: hidden;
}

.admin-edit-grid--forms > .admin-form.admin-form-fields-panel {
    grid-template-columns: 1fr;
}

.admin-edit-grid--forms > .admin-form.admin-form-fields-panel > header,
.admin-edit-grid--forms > .admin-form.admin-form-fields-panel > .admin-form-field-header,
.admin-edit-grid--forms > .admin-form.admin-form-fields-panel > .admin-form-field-list,
.admin-edit-grid--forms > .admin-form.admin-form-fields-panel > .admin-spec-add {
    grid-column: 1 / -1;
}

.admin-form-field-header,
.admin-form-field-row {
    grid-template-columns:
        minmax(128px, 1fr)
        minmax(158px, 1.12fr)
        minmax(124px, 0.72fr)
        minmax(158px, 1fr)
        minmax(104px, 0.52fr)
        minmax(76px, 0.42fr)
        minmax(92px, auto);
}

.admin-form-field-header {
    position: static;
    padding: 0 14px 8px;
}

.admin-form-field-header > span {
    min-width: 0;
}

.admin-form-field-row {
    grid-template-areas:
        "name label type placeholder required order actions"
        "options options options options rules rules actions";
    align-items: start;
    gap: 10px;
    padding: 12px;
}

.admin-form-field-head--name {
    grid-column: 1;
}

.admin-form-field-head--label {
    grid-column: 2;
}

.admin-form-field-head--type {
    grid-column: 3;
}

.admin-form-field-head--placeholder {
    grid-column: 4;
    display: block !important;
}

.admin-form-field-head--required {
    grid-column: 5;
}

.admin-form-field-head--order {
    grid-column: 6;
}

.admin-form-field-head--actions {
    grid-column: 7;
}

.admin-form-field-row .admin-form-field-cell {
    min-width: 0;
}

.admin-form-field-row .admin-form-field-cell--name {
    grid-area: name;
}

.admin-form-field-row .admin-form-field-cell--label {
    grid-area: label;
}

.admin-form-field-row .admin-form-field-cell--type {
    grid-area: type;
}

.admin-form-field-row .admin-form-field-cell--placeholder {
    grid-area: placeholder;
    display: grid !important;
}

.admin-form-field-row .admin-form-field-cell--required {
    grid-area: required;
}

.admin-form-field-row .admin-form-field-cell--order {
    grid-area: order;
}

.admin-form-field-row .admin-form-field-cell--actions {
    grid-area: actions;
    align-self: center;
    justify-self: stretch;
}

.admin-form-field-row .admin-form-field-cell--options {
    grid-area: options;
}

.admin-form-field-row .admin-form-field-cell--rules {
    grid-area: rules;
}

.admin-form-field-row:not(.has-options-editor) {
    grid-template-areas:
        "name label type placeholder required order actions"
        "rules rules rules rules rules rules actions";
}

.admin-form-field-row:not(.has-options-editor) .admin-form-field-cell--options {
    display: none;
}

.admin-form-field-row textarea {
    min-height: 68px;
}

.admin-form-field-row .admin-check {
    justify-content: flex-start;
}

.admin-form-fields-panel > .admin-spec-add {
    margin-top: 14px;
}

@media (max-width: 1180px) {
    .admin-form-field-header {
        display: none;
    }

    .admin-form-field-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "name label"
            "type placeholder"
            "required order"
            "options options"
            "rules rules"
            "actions actions";
    }

    .admin-form-field-row:not(.has-options-editor) {
        grid-template-areas:
            "name label"
            "type placeholder"
            "required order"
            "rules rules"
            "actions actions";
    }

    .admin-form-field-row .admin-form-field-cell--actions {
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .admin-form-field-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "name"
            "label"
            "type"
            "placeholder"
            "required"
            "order"
            "options"
            "rules"
            "actions";
    }

    .admin-form-field-row .admin-form-field-cell--actions {
        width: 100%;
    }
}

/* ============================================================
   Editor de campos de formulario — rediseño en tarjetas
   (admin/forms-form.php). Clases con prefijo .ff-
   ============================================================ */
.ff-panel-head h2 {
    margin: 0;
}

.ff-panel-intro {
    margin: 8px 0 0;
    max-width: 72ch;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
}

.admin-form.admin-form-fields-panel {
    gap: 14px;
}

.ff-list {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.ff-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(16, 17, 21, 0.05);
    overflow: hidden;
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.ff-card:focus-within {
    border-color: rgba(215, 25, 32, 0.42);
    box-shadow: 0 14px 38px rgba(16, 17, 21, 0.09);
}

/* Las filas guardadas que se marcan para borrar se ocultan,
   pero sus inputs ocultos (id + _delete=1) siguen enviándose. */
.ff-card.is-removed {
    display: none;
}

.ff-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--paper), var(--white));
}

.ff-card__index {
    display: grid;
    flex: none;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.ff-card__drag {
    flex: none;
    color: rgba(16, 17, 21, 0.28);
    font-size: 1.1rem;
    line-height: 1;
}

.ff-card__heading {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ff-card__title {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ff-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ff-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ff-badge--type {
    background: var(--mist);
    color: var(--steel);
}

.ff-badge--required {
    background: rgba(215, 25, 32, 0.1);
    color: var(--red-dark);
}

.ff-badge[hidden] {
    display: none;
}

.ff-card__tools {
    display: flex;
    flex: none;
    gap: 4px;
}

.ff-icon-btn {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease, opacity 0.14s ease;
}

.ff-icon-btn:hover:not(:disabled) {
    background: var(--paper);
}

.ff-icon-btn:disabled {
    opacity: 0.32;
    cursor: not-allowed;
}

.ff-icon-btn--danger:hover:not(:disabled) {
    border-color: rgba(215, 25, 32, 0.42);
    background: rgba(215, 25, 32, 0.1);
    color: var(--red-dark);
}

.ff-icon-btn:focus-visible {
    outline: 2px solid rgba(215, 25, 32, 0.52);
    outline-offset: 2px;
}

.ff-card__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 16px;
    padding: 16px 16px 18px;
}

.ff-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.ff-field--label,
.ff-field--options,
.ff-advanced {
    grid-column: 1 / -1;
}

.admin-form .ff-label {
    display: block;
    gap: 0;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.ff-req {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}

.ff-hint {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.4;
}

.ff-hint code {
    padding: 0 4px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--paper);
    font-size: 0.92em;
}

/* Interruptor "obligatorio" */
.admin-form .ff-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
}

.ff-switch input[type="checkbox"] {
    position: absolute;
    width: 1px;
    min-height: 0;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.ff-switch__track {
    position: relative;
    flex: none;
    width: 44px;
    height: 24px;
    border-radius: 999px;
    background: rgba(16, 17, 21, 0.2);
    transition: background 0.18s ease;
}

.ff-switch__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease;
}

.ff-switch input:checked ~ .ff-switch__track {
    background: var(--green);
}

.ff-switch input:checked ~ .ff-switch__track .ff-switch__thumb {
    transform: translateX(20px);
}

.ff-switch input:focus-visible ~ .ff-switch__track {
    outline: 2px solid rgba(215, 25, 32, 0.52);
    outline-offset: 2px;
}

.ff-switch__text {
    color: var(--ink);
}

/* El editor de opciones solo aparece para el tipo "Selector" */
.ff-field--options {
    display: none;
}

.ff-card.has-options .ff-field--options {
    display: flex;
}

/* Opciones avanzadas */
.ff-advanced {
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.ff-advanced__summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.ff-advanced__summary::-webkit-details-marker {
    display: none;
}

.ff-advanced__summary::before {
    content: "\25B8";
    display: inline-block;
    transition: transform 0.15s ease;
}

.ff-advanced[open] .ff-advanced__summary::before {
    transform: rotate(90deg);
}

.ff-advanced__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.ff-advanced__body .ff-field:first-child {
    grid-column: 1 / -1;
}

.ff-empty {
    margin: 0;
    padding: 22px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: var(--paper);
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
}

.ff-add {
    justify-self: start;
    align-self: start;
}

.ff-add span {
    margin-right: 4px;
    font-weight: 800;
}

@media (max-width: 720px) {
    .ff-card__body,
    .ff-advanced__body {
        grid-template-columns: 1fr;
    }

    .ff-card__title {
        white-space: normal;
    }

    .ff-add {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ff-card,
    .ff-icon-btn,
    .ff-switch__track,
    .ff-switch__thumb,
    .ff-advanced__summary::before {
        transition: none;
    }
}

/* ============================================================
   Panel "Datos del formulario" — ajustes agrupados (.ff-settings)
   ============================================================ */
.admin-edit-grid--forms > .admin-panel.admin-form.admin-form-settings-panel,
.admin-form.admin-form-settings-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
}

.ff-settings-alert {
    margin: 16px 20px 0;
}

.ff-settings {
    display: grid;
    gap: 0;
    padding: 4px 20px 20px;
}

.ff-group {
    margin: 0;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid var(--line);
    min-width: 0;
}

.ff-group:first-child {
    border-top: 0;
}

.ff-group__title {
    float: none;
    width: auto;
    padding: 0;
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ff-group__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 16px;
}

.ff-group__stack {
    display: grid;
    gap: 16px;
}

@media (max-width: 720px) {
    .ff-group__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Landing de formulario — diseño enfocado a conversión
   Modos: split (recomendado) · cover (hero+imagen) · compact (sin hero)
   ============================================================ */
.form-landing {
    position: relative;
    padding-block: clamp(28px, 4vw, 52px);
    background:
        radial-gradient(circle at 14% 0%, rgba(215, 25, 32, 0.07), transparent 26rem),
        var(--paper);
}

/* Sin hero oscuro: despejar el header flotante fijo para que no se solape. */
.form-landing--split,
.form-landing--compact {
    padding-top: calc(var(--site-header-bottom) + var(--site-mega-gap) + 30px);
}

.form-landing__crumbs {
    margin-bottom: 18px;
    padding: 0;
}

/* ---- Split: persuasión + formulario sobre el pliegue ---- */
.form-landing__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.form-landing__aside {
    min-width: 0;
}

.form-landing__aside h1 {
    margin: 8px 0 14px;
    color: var(--ink);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 680;
    line-height: 1.05;
}

.form-landing__lead {
    max-width: 46ch;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
    line-height: 1.6;
}

.form-landing__trust {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.form-landing__trust li {
    display: flex;
    gap: 11px;
    align-items: center;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 500;
}

.form-landing__tick {
    display: grid;
    flex: none;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 0.78rem;
}

.form-landing__alt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(16, 17, 21, 0.12);
}

.form-landing__alt span {
    color: var(--muted);
    font-size: 0.94rem;
}

/* ---- Tarjeta del formulario (modo bare, sin intro duplicada) ---- */
.form-landing__panel {
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(16, 17, 21, 0.08);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-landing__single {
    max-width: 760px;
    margin-inline: auto;
}

.form-landing__head {
    margin-bottom: 22px;
    text-align: center;
}

.form-landing__head h1 {
    margin: 8px 0 12px;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.06;
}

.form-landing__head .form-landing__lead {
    margin-inline: auto;
    text-align: center;
}

/* ---- Split con imagen de fondo ---- */
.form-landing--split.has-media {
    background: #0b0c0e;
}

.form-landing__bg,
.form-landing__bg-shade {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.form-landing__bg {
    overflow: hidden;
}

.form-landing__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.form-landing__bg-shade {
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.82) 0%, rgba(8, 10, 12, 0.5) 52%, rgba(8, 10, 12, 0.2) 100%),
        linear-gradient(180deg, rgba(8, 10, 12, 0.2), rgba(8, 10, 12, 0.55));
}

.form-landing--split.has-media .shell {
    position: relative;
    z-index: 1;
}

.has-media .form-landing__aside,
.has-media .form-landing__aside h1,
.has-media .form-landing__trust li {
    color: #fff;
}

.has-media .form-landing__lead {
    color: rgba(255, 255, 255, 0.85);
}

.has-media .form-landing__alt {
    border-top-color: rgba(255, 255, 255, 0.22);
}

.has-media .form-landing__alt span {
    color: rgba(255, 255, 255, 0.82);
}

.has-media .form-landing__crumbs a,
.has-media .form-landing__crumbs strong,
.has-media .form-landing__crumbs span {
    color: rgba(255, 255, 255, 0.82);
}

/* ---- Banda "Qué pasa después" ---- */
.form-landing-steps {
    padding: clamp(26px, 3.5vw, 40px) 0 clamp(40px, 6vw, 68px);
    border-top: 1px solid rgba(16, 17, 21, 0.07);
    background: var(--white);
}

.form-landing-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 28px);
}

.form-landing-steps__item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.form-landing-steps__num {
    display: grid;
    flex: none;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
}

.form-landing-steps__item strong {
    display: block;
    color: var(--ink);
    font-size: 1.02rem;
}

.form-landing-steps__item span:not(.form-landing-steps__num) {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .form-landing__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 720px) {
    .form-landing-steps__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-landing__alt {
        align-self: stretch;
    }

    .form-landing__whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Contraste sobre fondo claro de la landing (split/compact sin imagen) */
.form-landing:not(.has-media) .eyebrow {
    color: var(--red);
}

.form-landing:not(.has-media) .button.secondary {
    border-color: rgba(16, 17, 21, 0.18);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.form-landing:not(.has-media) .button.secondary:hover,
.form-landing:not(.has-media) .button.secondary:focus {
    background: var(--white);
}

/* ===== Campo de archivo: config en el admin ===== */
.ff-field--file {
    display: none;
}

.ff-card.has-file .ff-field--file {
    display: flex;
}

.ff-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 2px;
}

.admin-form .ff-format {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.ff-format input[type="checkbox"] {
    width: 16px;
    min-height: 16px;
    height: 16px;
    padding: 0;
}

.admin-form .ff-file-max {
    display: grid;
    gap: 6px;
    max-width: 200px;
    margin-top: 12px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

/* ===== Campo de archivo: input público ===== */
.lead-field--file input[type="file"] {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.94);
    cursor: pointer;
}

.lead-file-hint {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* ===== Confirmación tras enviar formulario (panel de éxito + cuenta atrás) ===== */
.lead-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 12px 6px;
    text-align: center;
}

.lead-success:focus {
    outline: none;
}

.lead-success__icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    box-shadow: 0 14px 32px rgba(36, 89, 74, 0.32);
}

.lead-success__icon svg {
    width: 34px;
    height: 34px;
}

.lead-success__title {
    margin: 4px 0 0;
    color: var(--ink);
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    line-height: 1.1;
}

.lead-success__text {
    max-width: 44ch;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.lead-success__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
}

.lead-success__actions .button {
    min-width: 168px;
}

.lead-success__countdown {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

@media (prefers-reduced-motion: no-preference) {
    .lead-success__icon {
        animation: lead-success-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes lead-success-pop {
        from { transform: scale(0.6); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }
}

@media (max-width: 720px) {
    .lead-success__actions .button {
        width: 100%;
    }
}

/* ============================================================
   Ubicaciones de formulario — listado visual en tarjetas
   ============================================================ */
/* Ubicaciones de formularios: tablero compacto agrupado por zona */
.loc-board {
    display: grid;
    gap: 18px;
    padding: 0;
    overflow: hidden;
}

.loc-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px 18px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
    background: rgba(255, 255, 255, 0.5);
}

.loc-toolbar__search {
    display: grid;
    gap: 7px;
    width: min(360px, 100%);
    flex: 1 1 240px;
}

.loc-toolbar__search label,
.loc-toolbar__field {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.loc-toolbar__search input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    font: inherit;
}

.loc-toolbar__field {
    display: grid;
    gap: 7px;
    width: min(190px, 100%);
}

.loc-toolbar__field select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font: inherit;
}

.loc-toolbar__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

.loc-toolbar__summary span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.loc-toolbar__summary strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1;
}

.loc-board__zones {
    display: grid;
    gap: 22px;
    padding: 4px 20px 22px;
}

.loc-zone[hidden] {
    display: none !important;
}

.loc-zone__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 9px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.1);
}

.loc-zone__icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(215, 25, 32, 0.18);
    border-radius: 8px;
    color: var(--red);
    background: rgba(215, 25, 32, 0.05);
}

.loc-zone__icon svg {
    width: 19px;
    height: 19px;
}

.loc-zone__title {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 820;
    letter-spacing: 0.01em;
}

.loc-zone__count {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(16, 17, 21, 0.08);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.loc-zone__rows {
    display: grid;
    gap: 8px;
}

.loc-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.loc-row[hidden] {
    display: none !important;
}

.loc-row:hover {
    border-color: rgba(16, 17, 21, 0.2);
    box-shadow: 0 10px 24px rgba(16, 17, 21, 0.06);
}

.loc-row--inactive {
    background: rgba(16, 17, 21, 0.015);
}

.loc-row--archived {
    opacity: 0.66;
}

.loc-row__lead {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    flex: 1 1 280px;
}

.loc-row__dot {
    flex: none;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--muted);
}

.loc-row__dot--active {
    background: var(--green);
}

.loc-row__dot--inactive {
    background: rgba(16, 17, 21, 0.3);
}

.loc-row__dot--archived {
    background: var(--red-dark);
}

.loc-row__id {
    min-width: 0;
}

.loc-row__title {
    margin: 0;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 760;
    line-height: 1.25;
}

.loc-row__sub {
    margin: 2px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loc-row__facets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    flex: 1 1 360px;
    justify-content: flex-end;
}

.loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 760;
    line-height: 1.2;
    text-decoration: none;
}

.loc-pill--form {
    border: 1px solid rgba(215, 25, 32, 0.28);
    background: rgba(215, 25, 32, 0.06);
    color: var(--red-dark);
}

.loc-pill--form svg {
    flex: none;
    width: 15px;
    height: 15px;
}

.loc-pill--form span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loc-pill--form:hover {
    border-color: var(--red);
    background: rgba(215, 25, 32, 0.1);
}

.loc-pill--empty {
    border: 1px dashed var(--line);
    color: var(--muted);
}

.loc-row__actions {
    display: flex;
    flex: none;
    gap: 7px;
}

.loc-row__actions .button {
    min-height: 38px;
    padding: 0 14px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .loc-row {
        flex-wrap: wrap;
    }

    .loc-row__facets {
        justify-content: flex-start;
        flex-basis: 100%;
    }
}

@media (max-width: 600px) {
    .loc-toolbar__summary {
        margin-left: 0;
    }

    .loc-row__actions {
        flex-basis: 100%;
    }

    .loc-row__actions .button,
    .loc-row__actions form {
        flex: 1;
    }
}

.loc-chip {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    max-width: 100%;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
}

.loc-chip--action {
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
}

.loc-chip--behavior::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: none;
    border-radius: 999px;
    background: currentColor;
}

.loc-chip--landing {
    background: rgba(39, 49, 60, 0.1);
    color: var(--steel);
}

.loc-chip--embedded {
    background: rgba(36, 89, 74, 0.12);
    color: var(--green);
}

.loc-chip--modal {
    background: rgba(101, 71, 172, 0.13);
    color: #5b3fa0;
}

.loc-chip--redirect {
    background: rgba(176, 122, 18, 0.15);
    color: #8a5e00;
}

.loc-chip--default {
    background: var(--paper);
    color: var(--muted);
}

.loc-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.loc-status--active {
    background: rgba(36, 89, 74, 0.12);
    color: var(--green);
}

.loc-status--inactive {
    background: rgba(16, 17, 21, 0.08);
    color: var(--muted);
}

.loc-status--archived {
    background: rgba(215, 25, 32, 0.1);
    color: var(--red-dark);
}

.loc-empty {
    margin: 0;
    padding: 26px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    background: var(--paper);
    color: var(--muted);
    text-align: center;
}

/* Precio del hero del modelo: "Desde 176,56 €/mes" en UNA sola línea, con "/mes"
   pegado a la barra (regla final para imponerse a los overrides por breakpoint). */
.price-card .price-main {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 5px;
    font-size: clamp(1.78rem, 2.95vw, 2.45rem);
    font-weight: 820;
    line-height: 0.98;
}

.price-card .price-main span,
.price-card .price-main small {
    white-space: nowrap;
}

.price-card .price-eyebrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 1vw, 0.98rem);
    font-weight: 760;
}

.price-card .price-main small {
    font-size: clamp(0.96rem, 1.16vw, 1.18rem);
    font-weight: 680;
}

.price-card .price-sub {
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(0.95rem, 1.12vw, 1.05rem);
    font-weight: 560;
    line-height: 1.45;
}

.price-card .price-sub > span:first-child {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 680;
}

@media (max-width: 620px) {
    .hero-content,
    .public-hero-content {
        width: min(21rem, 100%);
        max-width: min(21rem, 100%);
    }

    .hero h1,
    .public-hero h1,
    .workshop-hero h1,
    .models-landing-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(1.88rem, 8vw, 2.18rem);
        line-height: 1.08;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: wrap;
    }

    .hero-copy,
    .public-hero p:not(.eyebrow) {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }

    .hero-actions,
    .public-hero .actions,
    .hero-actions .button,
    .public-hero .actions .button {
        width: min(21rem, 100%);
        max-width: min(21rem, 100%);
    }

    .public-hero .public-hero-content > p:not(.eyebrow),
    .contact-hero.public-hero .public-hero-content > p:not(.eyebrow),
    .models-landing-hero.public-hero .public-hero-content > p:not(.eyebrow) {
        display: block !important;
        width: min(21rem, 100%) !important;
        max-width: min(21rem, 100%) !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }
}

/* Home: el final del reveal reutiliza la composicion del hero de ficha. */
.model-detail-content--hero-final,
.model-detail--reveal.has-featured-reveal .model-detail-content--hero-final {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.46fr);
    gap: clamp(64px, 6vw, 120px);
    align-items: center;
    width: min(1500px, 100%);
    max-width: none;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.model-detail-content--hero-final::before {
    display: none;
}

.model-detail-final-info {
    min-width: 0;
    transform: translateY(-8%);
}

.model-detail-final-info h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.75rem, 5.4vw, 4.85rem);
    font-weight: 680;
    line-height: 1;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.model-detail-final-info h2 span {
    display: inline-block;
}

.model-detail-final-info h2 span + span {
    display: block;
}

.model-detail-content--hero-final .price-card {
    width: min(462px, 100%);
    max-width: 462px;
    justify-self: end;
    transform: none;
}

.model-detail--reveal.has-featured-reveal .model-detail-content--hero-final {
    left: max(20px, calc((100vw - 1500px) / 2 + 18px));
    right: max(20px, calc((100vw - 1500px) / 2 + 18px));
    top: 50%;
    width: auto;
    transform: translateY(calc(-50% + ((1 - var(--featured-offer-progress)) * 34px))) scale(calc(0.985 + (var(--featured-offer-progress) * 0.015)));
}

@media (max-width: 1180px) {
    .model-detail-content--hero-final,
    .model-detail--reveal.has-featured-reveal .model-detail-content--hero-final {
        grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
        gap: clamp(34px, 5vw, 58px);
    }

    .model-detail-final-info h2 {
        font-size: clamp(2.45rem, 5.8vw, 4rem);
    }
}

@media (max-width: 900px) {
    .model-detail-content--hero-final,
    .model-detail--reveal.has-featured-reveal .model-detail-content--hero-final {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .model-detail-final-info {
        transform: none;
    }

    .model-detail-content--hero-final .price-card {
        width: 100%;
        max-width: 462px;
        justify-self: stretch;
    }
}

@media (max-width: 760px) {
    .model-detail--reveal.has-featured-reveal .model-detail-content--hero-final {
        left: 50%;
        right: auto;
        top: 54%;
        width: min(342px, calc(100vw - 40px));
        max-height: none;
        overflow: visible;
        transform: translate(-50%, calc(-50% + ((1 - var(--featured-offer-progress)) * 22px))) scale(calc(0.985 + (var(--featured-offer-progress) * 0.015)));
    }

    .model-detail-final-info h2 {
        font-size: clamp(2.08rem, 9.2vw, 2.48rem);
        font-weight: 640;
        line-height: 0.98;
    }
}

@media (max-width: 900px) and (max-height: 620px) and (orientation: landscape) {
    .model-detail--reveal.has-featured-reveal .model-detail-content--hero-final {
        left: auto;
        right: 20px;
        top: calc(var(--site-header-bottom, 74px) + 2px);
        width: min(414px, calc(100vw - 40px));
        max-height: calc(100svh - var(--site-header-bottom, 74px) - 6px);
        transform: translateY(calc((1 - var(--featured-offer-progress)) * 16px)) scale(calc(0.985 + (var(--featured-offer-progress) * 0.015)));
    }
}

/* Admin precios y financiacion: compacta la edicion por variante. */
.admin-price-model-form .admin-price-model-selector.admin-form {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(360px, 560px) !important;
    align-items: center;
    justify-content: start;
    gap: 0;
    padding: 10px 14px;
}

.admin-price-model-form .admin-price-model-selector label {
    gap: 5px;
}

.admin-price-model-form .admin-price-model-selector select {
    min-height: 38px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.admin-price-model-form .admin-price-variant-section.admin-form {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px 14px;
}

.admin-price-model-form .admin-price-variant-section--commercial.admin-form {
    grid-template-columns:
        minmax(210px, 1.25fr)
        minmax(170px, 1fr)
        minmax(130px, 0.72fr)
        minmax(90px, 0.45fr)
        minmax(165px, 0.95fr)
        minmax(145px, 0.82fr) !important;
}

.admin-price-model-form .admin-price-variant-section--finance.admin-form {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.admin-price-model-form .admin-price-summary-row {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 14px;
    margin-bottom: 2px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.1);
}

.admin-price-model-form .admin-price-summary-row label {
    min-width: 0;
}

.admin-price-model-form .admin-price-variant-section > header,
.admin-price-model-form .admin-price-field--full {
    grid-column: 1 / -1;
}

.admin-price-model-form .admin-price-variant-section label {
    min-width: 0;
    gap: 5px;
}

.admin-price-model-form .admin-price-variant-section input,
.admin-price-model-form .admin-price-variant-section select,
.admin-price-model-form .admin-price-variant-section textarea {
    min-height: 38px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.admin-price-model-form .admin-price-variant-section textarea {
    min-height: 78px;
}

@media (max-width: 1180px) {
    .admin-price-model-form .admin-price-variant-section.admin-form {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .admin-price-model-form .admin-price-variant-section--commercial.admin-form {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .admin-price-model-form .admin-price-variant-section--finance.admin-form {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    .admin-price-model-form .admin-price-model-selector.admin-form {
        grid-template-columns: 1fr !important;
    }

    .admin-price-model-form .admin-price-variant-section.admin-form {
        grid-template-columns: 1fr !important;
    }

    .admin-price-model-form .admin-price-variant-section--commercial.admin-form {
        grid-template-columns: 1fr !important;
    }

    .admin-price-model-form .admin-price-variant-section--finance.admin-form {
        grid-template-columns: 1fr !important;
    }

    .admin-price-model-form .admin-price-summary-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Estadísticas de leads ===== */
.ls-panel {
    padding: 0;
    overflow: hidden;
}

.ls-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 16px 18px 0;
}

.ls-preset {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 760;
    text-decoration: none;
}

.ls-preset:hover {
    border-color: var(--red);
    color: var(--red);
}

.ls-preset.is-active {
    border-color: transparent;
    background: var(--red);
    color: #fff;
}

.ls-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px 14px;
    padding: 16px 18px;
}

.ls-filters__field {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.ls-filters__field input,
.ls-filters__field select {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(16, 17, 21, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font: inherit;
    font-weight: 500;
}

.ls-filters .button {
    min-height: 42px;
}

.ls-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 1380px);
    margin-inline: auto;
}

.ls-kpi {
    display: grid;
    gap: 5px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(16, 17, 21, 0.045);
}

.ls-kpi__label {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.ls-kpi__value {
    color: var(--ink);
    font-size: 1.9rem;
    font-weight: 820;
    line-height: 1;
}

.ls-kpi__value--up {
    color: var(--green);
}

.ls-kpi__value--down {
    color: var(--red);
}

.ls-kpi__value--flat,
.ls-kpi__value--muted {
    color: var(--muted);
}

.ls-kpi__hint {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.ls-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 0;
}

.ls-section-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.05rem;
}

.ls-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.ls-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.ls-legend__item strong {
    color: var(--ink);
}

.ls-legend__dot {
    width: 11px;
    height: 11px;
    border-radius: 3px;
}

.ls-chart {
    padding: 18px 20px 20px;
}

.ls-chart__bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 240px;
}

.ls-chart__col {
    display: flex;
    flex: 1 1 0;
    align-items: flex-end;
    min-width: 0;
    height: 100%;
}

.ls-chart__stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 2px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    background: rgba(16, 17, 21, 0.05);
}

.ls-seg {
    width: 100%;
}

.ls-chart__col:hover .ls-chart__stack {
    outline: 2px solid rgba(16, 17, 21, 0.14);
    outline-offset: 1px;
}

.ls-chart__axis {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.ls-chart__tick {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.ls-mail {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ls-mail__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.ls-mail__item strong {
    font-weight: 900;
}

.ls-mail__item--sent {
    border-color: transparent;
    background: rgba(36, 89, 74, 0.1);
    color: var(--green);
}

.ls-mail__item--failed {
    border-color: transparent;
    background: rgba(215, 25, 32, 0.1);
    color: var(--red-dark);
}

.ls-mail__item--skipped {
    border-color: transparent;
    background: rgba(176, 122, 18, 0.14);
    color: #8a5e00;
}

.ls-mail__item--pending {
    background: rgba(16, 17, 21, 0.06);
}

.ls-table {
    width: calc(100% - 40px);
    margin: 14px 20px 20px;
    border-collapse: collapse;
}

.ls-table th,
.ls-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
    font-size: 0.9rem;
    text-align: left;
}

.ls-table th {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ls-table__num {
    width: 80px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.ls-table td.ls-table__num {
    color: var(--ink);
    font-weight: 800;
}

.ls-table__share {
    width: 250px;
    white-space: nowrap;
}

.ls-bar-track {
    display: inline-block;
    width: 130px;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(16, 17, 21, 0.08);
    vertical-align: middle;
}

.ls-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
}

.ls-share-num {
    margin-left: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.ls-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(16, 17, 21, 0.05);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
}

.ls-type-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--c, #94a3b8);
}

.ls-empty {
    margin: 0;
    padding: 28px 20px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 880px) {
    .ls-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .ls-table__share {
        display: none;
    }
}

/* ===== Páginas: reorden por arrastre + papelera ===== */
.pages-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(16, 17, 21, 0.08);
}

.pages-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 760;
    text-decoration: none;
}

.pages-tab:hover {
    border-color: rgba(16, 17, 21, 0.28);
}

.pages-tab.is-active {
    border-color: transparent;
    background: var(--red);
    color: #fff;
}

.pages-tab__count {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(16, 17, 21, 0.1);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.pages-tab.is-active .pages-tab__count {
    background: rgba(255, 255, 255, 0.26);
    color: #fff;
}

.pages-table__handle {
    width: 46px;
    text-align: center;
}

.pages-drag {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    color: var(--muted);
    cursor: grab;
}

.pages-drag:hover {
    background: rgba(16, 17, 21, 0.06);
    color: var(--ink);
}

.pages-table tbody tr.is-dragging {
    opacity: 0.55;
    background: rgba(215, 25, 32, 0.05);
}

.pages-table tbody tr[draggable="true"] {
    cursor: grabbing;
}

.pages-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
}

.pages-status--published {
    background: rgba(36, 89, 74, 0.12);
    color: var(--green);
}

.pages-status--draft {
    background: rgba(16, 17, 21, 0.08);
    color: var(--muted);
}

.pages-status--private {
    background: rgba(101, 71, 172, 0.13);
    color: #5b3fa0;
}

.pages-status--archived {
    background: rgba(176, 122, 18, 0.14);
    color: #8a5e00;
}

.pages-empty {
    padding: 26px;
    color: var(--muted);
    text-align: center;
}

.admin-body .button.secondary.pages-btn-danger {
    border-color: rgba(215, 25, 32, 0.28);
    color: var(--red-dark);
}

.admin-body .button.secondary.pages-btn-danger:hover,
.admin-body .button.secondary.pages-btn-danger:focus {
    border-color: var(--red);
    color: var(--red);
}

/* ------------------------------------------------------------------
   Consentimiento de cookies
------------------------------------------------------------------ */
.site-footer__consent-row {
    display: flex;
    justify-content: flex-end;
    padding: 0 clamp(18px, 6vw, 86px) 14px;
    background: #090a0c;
}

.site-footer__consent {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.66);
    background: transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 650;
    cursor: pointer;
}

.site-footer__consent:hover,
.site-footer__consent:focus-visible {
    color: var(--white);
    border-bottom-color: var(--red);
}

.cookie-consent {
    position: fixed;
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
    z-index: 90;
    display: flex;
    width: min(560px, calc(100vw - 28px));
    justify-content: flex-start;
    pointer-events: none;
}

.cookie-consent__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    align-items: start;
    padding: 20px;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 68px rgba(16, 17, 21, 0.22);
    pointer-events: auto;
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.cookie-consent__copy {
    min-width: 0;
}

.cookie-consent__eyebrow {
    margin: 0 0 5px;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-consent h2,
.cookie-preferences h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    line-height: 1.16;
}

.cookie-consent p:not(.cookie-consent__eyebrow) {
    max-width: none;
    margin: 7px 0 0;
    font-size: 0.94rem;
    line-height: 1.52;
}

.cookie-consent__actions,
.cookie-preferences__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: stretch;
}

.cookie-consent__actions .cookie-button {
    flex: 1 1 0;
}

.cookie-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 7px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 780;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
    transform: translateY(-1px);
}

.cookie-button--primary {
    color: #fff;
    background: var(--red);
    box-shadow: 0 12px 30px rgba(215, 25, 32, 0.26);
}

.cookie-button--primary:hover,
.cookie-button--primary:focus-visible {
    background: var(--red-dark);
}

.cookie-button--secondary {
    border-color: rgba(16, 17, 21, 0.1);
    color: var(--ink);
    background: #f7f8fa;
}

.cookie-button--secondary:hover,
.cookie-button--secondary:focus-visible {
    border-color: rgba(16, 17, 21, 0.22);
    background: #eef1f4;
}

.cookie-button--ghost {
    color: var(--ink);
    background: transparent;
}

.cookie-button--ghost:hover,
.cookie-button--ghost:focus-visible {
    color: var(--red-dark);
    background: rgba(215, 25, 32, 0.07);
}

.cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 18px;
}

.cookie-preferences__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 17, 21, 0.34);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cookie-preferences__panel {
    position: relative;
    display: grid;
    width: min(650px, 100%);
    max-height: min(760px, calc(100svh - 36px));
    overflow: auto;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 90px rgba(16, 17, 21, 0.28);
}

.cookie-preferences__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 20px 12px;
}

.cookie-preferences__close {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(16, 17, 21, 0.12);
    border-radius: 7px;
    color: var(--muted);
    background: #f7f8fa;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.cookie-preferences__close:hover,
.cookie-preferences__close:focus-visible {
    color: var(--ink);
    border-color: rgba(16, 17, 21, 0.24);
}

.cookie-preferences__options {
    display: grid;
    gap: 10px;
    padding: 8px 20px 18px;
}

.cookie-toggle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(16, 17, 21, 0.1);
    border-radius: 8px;
    background: #f7f8fa;
}

.cookie-toggle strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 0.96rem;
}

.cookie-toggle small {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.42;
}

.cookie-toggle input {
    width: 48px;
    height: 26px;
    margin: 0;
    accent-color: var(--red);
}

.cookie-toggle.is-locked {
    opacity: 0.78;
}

.cookie-preferences__actions {
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(16, 17, 21, 0.1);
}

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

    .cookie-consent__actions,
    .cookie-preferences__actions {
        justify-content: stretch;
    }

    .cookie-button {
        flex: 1 1 150px;
    }
}

@media (max-width: 520px) {
    .cookie-consent {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
    }

    .cookie-consent__panel,
    .cookie-preferences__panel {
        padding: 0;
    }

    .cookie-consent__panel {
        gap: 14px;
        padding: 16px;
    }

    .cookie-button {
        width: 100%;
        flex-basis: 100%;
    }

    .cookie-toggle {
        grid-template-columns: 1fr;
    }

    .cookie-toggle input {
        justify-self: start;
    }
}
