:root {
    --v2-bg: #f7f8f8;
    --v2-panel: #f0f2f3;
    --v2-panel-strong: #ffffff;
    --v2-border: rgba(31, 36, 40, 0.10);
    --v2-shadow: 0 26px 70px rgba(18, 22, 25, 0.18);
    --v2-shadow-soft: 0 16px 32px rgba(18, 22, 25, 0.08);
    --v2-text: #202529;
    --v2-muted: #626b72;
    --v2-accent: #e66f18;
    --v2-accent-soft: rgba(230, 111, 24, 0.12);
    --v2-metal: #a9b0b6;
    --v2-metal-soft: rgba(169, 176, 182, 0.22);
    --v2-panel-width: 360px;
    --v2-peek: 52px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

.v2-stage {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.v2-stage-canvas {
    position: relative;
    min-height: 100vh;
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-content-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100vw, 100%);
    z-index: 18;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 96px 26px 44px;
    background: radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.96), transparent 34%), linear-gradient(135deg, #FFFFFF 0%, #F2F4F5 50%, #E7EAEC 100%);
    border-left: 1px solid rgba(43, 58, 69, 0.08);
    box-shadow: -18px 0 42px rgba(18, 22, 25, 0.10);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
    contain: layout paint style;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v2-content-panel.is-visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    will-change: transform;
}

.v2-content-panel::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.v2-content-panel.has-product-open {
    overflow: hidden;
}

.v2-content-panel.is-navigation-grid {
    background:
        radial-gradient(circle at 18% 12%, rgba(230, 111, 24, 0.10), transparent 30%),
        radial-gradient(circle at 82% 4%, rgba(169, 176, 182, 0.26), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F4F5F5 52%, #E7EAEC 100%);
}

.ifc-legal-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 18px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.26s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.ifc-legal-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ifc-legal-consent__card {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    color: var(--v2-text);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 247, 0.94));
    border: 1px solid rgba(31, 36, 40, 0.10);
    border-radius: 24px;
    box-shadow: 0 22px 54px rgba(18, 22, 25, 0.16);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.ifc-legal-consent__copy {
    display: grid;
    gap: 5px;
}

.ifc-legal-consent__copy p,
.ifc-legal-preferences__eyebrow {
    margin: 0;
    color: var(--v2-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ifc-legal-consent__copy span {
    max-width: 760px;
    color: var(--v2-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ifc-legal-consent__copy a {
    color: var(--v2-text);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(230, 111, 24, 0.42);
    text-underline-offset: 3px;
}

.ifc-legal-consent__actions,
.ifc-legal-preferences__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.ifc-legal-consent button,
.ifc-legal-preferences button {
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ifc-legal-consent button:hover,
.ifc-legal-preferences button:hover {
    transform: translateY(-1px);
}

.ifc-legal-consent__primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #E66F18, #F19235);
    box-shadow: 0 12px 24px rgba(230, 111, 24, 0.24);
}

.ifc-legal-consent__secondary {
    color: var(--v2-text);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 36, 40, 0.10) !important;
}

.ifc-legal-preferences {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.ifc-legal-preferences.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.ifc-legal-preferences__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 36, 40, 0.30);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.ifc-legal-preferences__dialog {
    position: relative;
    width: min(620px, 100%);
    display: grid;
    gap: 18px;
    padding: 28px;
    color: var(--v2-text);
    background: linear-gradient(145deg, #FFFFFF 0%, #F6F7F7 100%);
    border: 1px solid rgba(31, 36, 40, 0.10);
    border-radius: 28px;
    box-shadow: 0 30px 78px rgba(18, 22, 25, 0.22);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.ifc-legal-preferences.is-visible .ifc-legal-preferences__dialog {
    transform: translateY(0) scale(1);
}

.ifc-legal-preferences__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    min-height: 36px !important;
    padding: 0 !important;
    color: #FFFFFF;
    background: var(--v2-accent);
}

.ifc-legal-preferences h2,
.ifc-legal-page__hero h1 {
    margin: 0;
    color: var(--v2-text);
    font-size: clamp(34px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.ifc-legal-preferences__options {
    display: grid;
    gap: 10px;
}

.ifc-legal-preferences__options article,
.ifc-legal-preferences__options label {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(31, 36, 40, 0.08);
    border-radius: 18px;
    background: #FFFFFF;
}

.ifc-legal-preferences__options h3 {
    margin: 0 0 4px;
    font-size: 14px;
}

.ifc-legal-preferences__options p {
    margin: 0;
    color: var(--v2-muted);
    font-size: 12px;
    line-height: 1.4;
}

.ifc-legal-preferences__options span {
    color: var(--v2-accent);
    font-size: 11px;
    font-weight: 800;
}

.ifc-legal-preferences__options input {
    width: 22px;
    height: 22px;
    accent-color: var(--v2-accent);
}

.ifc-legal-page {
    margin: 0;
    min-height: 100vh;
    overflow-y: auto;
    color: var(--v2-text);
    background:
        radial-gradient(circle at 8% 10%, rgba(230, 111, 24, 0.14), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F5F6F6 55%, #E7EAEC 100%);
    font-family: "Exo 2", sans-serif;
}

.ifc-legal-page__shell {
    width: min(1040px, calc(100% - 36px));
    margin: 0 auto;
    padding: 38px 0 58px;
}

.ifc-legal-page__logo img {
    width: 118px;
    height: auto;
}

.ifc-legal-page__hero {
    display: grid;
    gap: 12px;
    padding: 78px 0 34px;
}

.ifc-legal-page__hero p {
    margin: 0;
    color: var(--v2-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ifc-legal-page__hero span {
    max-width: 680px;
    color: var(--v2-muted);
    font-size: 18px;
    line-height: 1.45;
}

.ifc-legal-page__content {
    display: grid;
    gap: 14px;
}

.ifc-legal-page__content article,
.ifc-legal-page__note {
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(31, 36, 40, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(18, 22, 25, 0.06);
}

.ifc-legal-page__content h2 {
    margin: 0 0 8px;
    font-size: 17px;
}

.ifc-legal-page__content p {
    margin: 0;
    color: var(--v2-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ifc-legal-page__note {
    color: var(--v2-accent);
    font-size: 12px;
    font-weight: 800;
}

.v2-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 24;
    padding: 18px 26px 0;
    opacity: 0;
    transform: translateY(-24px);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-site-header__inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 12px 28px rgba(34, 49, 58, 0.06);
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
    gap: 12px;
    transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.v2-site-header.is-ready {
    opacity: 1;
    transform: translateY(0);
}

.v2-site-header.is-entry-skipped {
    transition: none;
}

.v2-site-header.is-scrolled .v2-site-header__inner {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(43, 58, 69, 0.10);
    box-shadow: 0 14px 32px rgba(34, 49, 58, 0.08);
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__inner {
    background: rgba(14, 17, 20, 0.14);
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__inner {
    background: rgba(14, 17, 20, 0.86);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.v2-site-header__brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.v2-site-header__brand-mark {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v2-text);
}

.v2-site-header__brand-logo {
    width: auto;
    height: 22px;
    display: block;
    transition: filter 0.22s ease, opacity 0.22s ease;
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__brand-logo {
    filter: brightness(0) invert(1);
}

.v2-site-header__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.v2-site-header__actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.26s ease, transform 0.26s ease;
}

.v2-site-header__nav-trigger {
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    color: rgba(34, 49, 58, 0.78);
    cursor: pointer;
    transition: color 0.18s ease;
}

.v2-site-header__nav-trigger:hover {
    color: var(--v2-text);
}

.v2-site-header__nav-trigger--mobile {
    display: none;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--v2-text);
}

.v2-site-header.has-preview-open .v2-site-header__icon--close {
    opacity: 0;
    transform: scale(0.86);
    pointer-events: none;
}

.v2-site-header.has-product-detail-open .v2-site-header__icon--close {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.v2-site-header.is-search-open .v2-site-header__brand,
.v2-site-header.is-search-open .v2-site-header__nav,
.v2-site-header.is-search-open .v2-site-header__actions {
    opacity: 0;
    transform: translateX(-22px);
    pointer-events: none;
}

.v2-site-header__search-mode {
    position: absolute;
    inset: 0;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-4px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-site-header__search-count {
    height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    color: rgba(34, 49, 58, 0.78);
    font-size: 13px;
    font-weight: 500;
    line-height: 36px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.26s ease 0.16s, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}

.v2-site-header.is-search-open .v2-site-header__search-count:not([hidden]) {
    opacity: 1;
    transform: translateX(0);
}

.v2-site-header.is-search-open .v2-site-header__search-mode {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.v2-site-header__search-mode-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
    transform: translate3d(var(--v2-search-shift-x, 0px), var(--v2-search-shift-y, 0px), 0) scale(0.82);
    transform-origin: center;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.v2-site-header.is-search-open .v2-site-header__search-mode-icon {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.v2-site-header__search-input {
    width: 100%;
    height: 40px;
    border: 0;
    background: transparent;
    outline: none;
    color: var(--v2-text);
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.28s ease 0.14s, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}

.v2-site-header.is-search-open .v2-site-header__search-input {
    opacity: 1;
    transform: translateX(0);
}

.v2-site-header__search-input::placeholder {
    color: rgba(34, 49, 58, 0.46);
}

.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__search-input {
    color: #FFFFFF;
}

.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__search-input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.v2-site-header__search-close {
    min-width: 88px;
    height: 38px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    color: #7F6859;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateX(18px);
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.v2-site-header__search-preview-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #D94B4B 0%, #C63A3A 100%);
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateX(18px) scale(0.92);
    pointer-events: none;
    transition: opacity 0.26s ease 0.12s, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, box-shadow 0.22s ease, filter 0.22s ease;
}

.v2-site-header.is-search-open.has-product-detail-open
.v2-site-header__search-preview-close {
    opacity: 0;
    transform: translateX(10px) scale(0.94);
    pointer-events: none;
}

.v2-site-header__search-preview-close:hover {
    box-shadow: 0 14px 28px rgba(198, 58, 58, 0.28);
    filter: brightness(1.03);
}

.v2-site-header.is-search-open .v2-site-header__search-close {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.26s ease 0.18s, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1) 0.18s, background-color 0.18s ease, border-color 0.18s ease;
}

.v2-site-header__search-close:hover {
    background: #FFFFFF;
    border-color: rgba(230, 111, 24, 0.28);
    transform: translateY(-1px);
}

.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__search-close,
.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__search-count {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.86);
}

.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__search-close:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.34);
}

.v2-site-header__nav a,
.v2-site-header__nav-trigger {
    font-size: 13px;
    font-weight: 500;
    color: rgba(34, 49, 58, 0.78);
    transition: color 0.18s ease;
}

.v2-site-header__nav a:hover,
.v2-site-header__nav-trigger:hover {
    color: var(--v2-text);
}

.v2-site-header__nav-trigger.is-client-connected,
.v2-site-header__nav a.is-client-connected {
    color: #2F8056;
}

.v2-site-header__nav-trigger.is-client-connected:hover,
.v2-site-header__nav a.is-client-connected:hover {
    color: #246A47;
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav a,
.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav-trigger {
    color: rgba(255, 255, 255, 0.86);
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav-trigger.is-client-connected,
.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav a.is-client-connected {
    color: #63D38E;
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav a:hover,
.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav-trigger:hover {
    color: #FFFFFF;
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav-trigger.is-client-connected:hover,
.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav a.is-client-connected:hover {
    color: #8BE4AA;
}

.v2-site-header__icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.v2-site-header__icon[data-tooltip] {
    position: relative;
}

.v2-site-header__icon[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 10px);
    right: 50%;
    z-index: 4;
    min-width: max-content;
    max-width: 220px;
    padding: 8px 11px;
    border: 1px solid rgba(43, 58, 69, 0.10);
    border-radius: 999px;
    background: rgba(22, 27, 31, 0.94);
    box-shadow: 0 14px 28px rgba(22, 27, 31, 0.18);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    text-transform: none;
    transform: translate(50%, -4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.v2-site-header__icon[data-tooltip]:hover::after,
.v2-site-header__icon[data-tooltip]:focus-visible::after {
    opacity: 1;
    transform: translate(50%, 0);
}

.v2-site-header__icon:hover,
.v2-site-header__nav-trigger--mobile:hover {
    background: #FFFFFF;
    border-color: rgba(230, 111, 24, 0.28);
    transform: translateY(-1px);
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__icon,
.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav-trigger--mobile {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__icon:hover,
.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__nav-trigger--mobile:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.34);
}

.v2-site-header__icon--close {
    opacity: 0;
    transform: scale(0.86);
    pointer-events: none;
    background: #F47A00;
    border-color: rgba(230, 111, 24, 0.28);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.v2-site-header__icon--close span {
    font-size: 26px;
    line-height: 1;
    color: #FFFFFF;
    position: relative;
    top: -1px;
}

.v2-site-header__icon--close:hover {
    background: #E66200;
    border-color: rgba(198, 84, 0, 0.38);
}

.v2-site-header__search {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.v2-site-header__search::before,
.v2-site-header__search::after {
    content: "";
    position: absolute;
}

.v2-site-header__search::before {
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid var(--v2-text);
    border-radius: 999px;
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__search::before {
    border-color: #FFFFFF;
}

.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__search::before {
    border-color: #FFFFFF;
}

.v2-site-header__search::after {
    right: 0;
    bottom: 0;
    width: 6px;
    height: 2px;
    border-radius: 999px;
    background: var(--v2-text);
    transform: rotate(45deg);
    transform-origin: center;
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__search::after {
    background: #FFFFFF;
}

.v2-site-header--home.is-search-open:not(.has-preview-open) .v2-site-header__search::after {
    background: #FFFFFF;
}

.v2-site-header__cart {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    color: var(--v2-text);
}

.v2-site-header__cart::before,
.v2-site-header__cart::after {
    content: "";
    position: absolute;
}

.v2-site-header__cart::before {
    left: 4px;
    top: 5px;
    width: 12px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 2px 2px 4px 4px;
    transform: skewX(-8deg);
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__cart {
    color: #FFFFFF;
}

.v2-site-header__cart::after {
    left: 6px;
    bottom: 1px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 9px 0 0 currentColor;
}

.v2-site-header__cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--v2-accent);
    color: #FFFFFF;
    font-size: 10px;
    line-height: 17px;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(230, 111, 24, 0.28);
}

.v2-site-header__menu-lines {
    position: relative;
    width: 16px;
    height: 12px;
    display: inline-block;
}

.v2-site-header__menu-lines::before,
.v2-site-header__menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--v2-text);
}

.v2-site-header__menu-lines::before {
    top: 2px;
    box-shadow: 0 6px 0 var(--v2-text);
}

.v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__menu-lines::before {
    background: #FFFFFF;
    box-shadow: 0 6px 0 #FFFFFF;
}

.v2-site-header__menu-lines::after {
    display: none;
}

.v2-showcase {
    min-height: 100vh;
    padding: 116px 56px 68px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 28px;
}

.v2-showcase__intro {
    max-width: 760px;
    display: grid;
    gap: 16px;
    text-align: center;
}

.v2-showcase__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(230, 111, 24, 0.88);
}

.v2-showcase__intro h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--v2-text);
}

.v2-showcase__lead {
    margin: 0 auto;
    max-width: 660px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(34, 49, 58, 0.72);
}

.v2-showcase__stage {
    width: min(100%, 1220px);
    display: grid;
    gap: 28px;
    justify-items: center;
}

.v2-showcase__deck {
    position: relative;
    width: min(100%, 1120px);
    height: clamp(420px, calc(100vh - 260px), 700px);
    display: grid;
    place-items: center;
}

.v2-showcase-card {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(100%, 820px);
    height: min(100%, 560px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, #2A3035 0%, #15191D 100%);
    box-shadow: 0 42px 90px rgba(18, 22, 25, 0.34);
    display: grid;
    grid-template-rows: minmax(300px, 56%) auto;
    transform-origin: center center;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.48s ease, filter 0.48s ease, box-shadow 0.48s ease;
}

.v2-showcase-card__art {
    position: relative;
    background: linear-gradient(180deg, #DCE1E5 0%, #9AA3AA 100%);
    overflow: hidden;
}

.v2-showcase-card__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 26, 39, 0.06) 0%, rgba(20, 26, 39, 0.14) 100%);
}

.v2-showcase-card__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v2-showcase-card__body {
    padding: 28px 34px 30px;
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.v2-showcase-card__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 177, 104, 0.78);
}

.v2-showcase-card h2,
.v2-showcase-card p {
    margin: 0;
}

.v2-showcase-card h2 {
    max-width: 680px;
    font-size: clamp(30px, 3vw, 50px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.v2-showcase-card p {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(229, 235, 246, 0.76);
}

.v2-showcase-card__cta {
    margin-top: 10px;
    min-width: 208px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 15px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E9EDF0 100%);
    color: #D85F0F;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.v2-showcase-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(230, 111, 24, 0.18);
}

.v2-showcase-card.is-active {
    z-index: 5;
    opacity: 1;
    filter: none;
    transform: translateX(0) translateZ(0) scale(1);
}

.v2-showcase-card.is-prev,
.v2-showcase-card.is-next {
    z-index: 3;
    opacity: 1;
    filter: saturate(0.72) brightness(0.72);
}

.v2-showcase-card.is-prev {
    transform: translateX(-210px) scale(0.82) rotate(-6deg);
}

.v2-showcase-card.is-next {
    transform: translateX(210px) scale(0.82) rotate(6deg);
}

.v2-showcase-card.is-prev2,
.v2-showcase-card.is-next2 {
    z-index: 2;
    opacity: 0.78;
    filter: saturate(0.58) brightness(0.48);
}

.v2-showcase-card.is-prev2 {
    transform: translateX(-330px) scale(0.72) rotate(-10deg);
}

.v2-showcase-card.is-next2 {
    transform: translateX(330px) scale(0.72) rotate(10deg);
}

.v2-showcase-card.is-hidden {
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.68);
}

.v2-showcase__controls {
    display: grid;
    justify-items: center;
    gap: 18px;
}

.v2-showcase__dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.v2-showcase__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
    transition: width 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.v2-showcase__dot.is-active {
    width: 22px;
    background: rgba(255, 255, 255, 0.94);
}

.v2-showcase__nav {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.v2-showcase__arrow,
.v2-showcase__next {
    min-height: 54px;
    border: 0;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.v2-showcase__arrow {
    width: 54px;
    border-radius: 16px;
    background: #202529;
    color: #FFFFFF;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.v2-showcase__next {
    min-width: 164px;
    padding: 0 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, #F18A2F 0%, #E66F18 100%);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.v2-showcase__arrow:hover,
.v2-showcase__next:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(230, 111, 24, 0.26);
}

.v2-home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #11161A;
    isolation: isolate;
}

.v2-home-hero__slides,
.v2-home-hero__slide,
.v2-home-hero__snapshot,
.v2-home-hero__video,
.v2-home-hero__shade {
    position: absolute;
    inset: 0;
}

.v2-home-hero__slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.012);
    transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.58s ease, transform 2.8s ease;
}

.v2-home-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.v2-home-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-home-hero__snapshot {
    display: none;
    background-image: var(--v2-home-snapshot);
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.v2-home-hero__shade {
    background:
        radial-gradient(circle at 18% 24%, rgba(230, 111, 24, 0.24), transparent 25%),
        radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.20), transparent 24%),
        linear-gradient(90deg, rgba(11, 14, 17, 0.70) 0%, rgba(11, 14, 17, 0.32) 46%, rgba(11, 14, 17, 0.16) 100%),
        linear-gradient(180deg, rgba(11, 14, 17, 0.52) 0%, rgba(11, 14, 17, 0.05) 42%, rgba(11, 14, 17, 0.56) 100%);
}

.v2-home-hero__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: min(1320px, calc(100% - 52px));
    margin: 0 auto;
    padding: 142px 0 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.v2-home-hero__kicker {
    margin: 0 0 18px;
    max-width: min(760px, 100%);
    min-height: 1.35em;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.35;
    font-weight: 400;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.v2-home-hero h1 {
    max-width: min(740px, 100%);
    min-height: 1.8em;
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(38px, 6.5vw, 92px);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.075em;
    text-transform: uppercase;
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.v2-home-hero__cta {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--v2-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.20);
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.v2-home-hero__action {
    min-height: 80px;
    padding-top: 32px;
    display: flex;
    align-items: flex-start;
}

.v2-home-hero__slide:not(.is-active) .v2-home-hero__action {
    opacity: 0;
}

.v2-home-hero__slide.is-active .v2-home-hero__action {
    opacity: 1;
    transition: opacity 0.42s ease 0.18s;
}

.v2-home-hero__cta:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 111, 24, 0.78);
    background: var(--v2-accent);
    color: #FFFFFF;
}

.v2-home-hero__controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.v2-home-hero__dots {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.v2-home-hero__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    cursor: pointer;
    transition: width 0.24s ease, background-color 0.24s ease;
}

.v2-home-hero__dot.is-active {
    width: 42px;
    background: #FFFFFF;
}

.v2-mobile-home {
    display: none;
}

.v2-preview {
    position: relative;
    padding: 0;
    display: grid;
    gap: 16px;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease;
}

.v2-preview::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 6;
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
    border-radius: 999px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    background: conic-gradient(from 0deg, rgba(230, 111, 24, 0), rgba(230, 111, 24, 0.92), rgba(230, 111, 24, 0)), radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 48%, transparent 50%), rgba(255, 255, 255, 0.86);
    box-shadow: 0 22px 52px rgba(34, 49, 58, 0.16);
    opacity: 0;
    transform: scale(0.86);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-preview::before {
    content: "Cargando productos";
    position: fixed;
    top: calc(50% + 46px);
    left: 50%;
    z-index: 6;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 44px rgba(34, 49, 58, 0.12);
    color: rgba(34, 49, 58, 0.76);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-preview.is-highlighted {
    transform: translateY(-4px);
}

.v2-preview.is-loading .v2-preview__grid {
    min-height: 180px;
}

.v2-preview.is-loading::after {
    opacity: 1;
    transform: scale(1);
    animation: v2-soft-loader 0.95s linear infinite;
}

.v2-preview.is-loading::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.v2-preview::before,
.v2-preview::after {
    content: none;
}

.v2-preview-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 32;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-preview-loader__ring {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 2px solid rgba(34, 49, 58, 0.14);
    border-top-color: rgba(230, 111, 24, 0.92);
    border-right-color: rgba(230, 111, 24, 0.34);
    filter: drop-shadow(0 10px 18px rgba(34, 49, 58, 0.12));
}

.v2-preview.is-loading .v2-preview-loader {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.v2-preview.is-loading .v2-preview-loader__ring {
    animation: v2-spin 0.82s linear infinite;
}

.v2-preview__head {
    max-width: 1180px;
    display: grid;
    gap: 14px;
    padding: 0;
}

.v2-preview__intro {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.v2-preview__intro-copy {
    display: grid;
    gap: 8px;
}

.v2-preview__cover {
    width: 132px;
    height: 132px;
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #E9EDF0 100%);
    box-shadow: 0 18px 34px rgba(34, 49, 58, 0.10);
}

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

.v2-preview[data-panel-mode="category"] .v2-preview__cover {
    background: transparent;
    box-shadow: none;
}

.v2-preview[data-panel-mode="category"] .v2-preview__cover img {
    object-fit: contain;
}

.v2-content-panel.is-navigation-grid .v2-preview__intro {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
}

.v2-content-panel.is-navigation-grid .v2-preview__cover {
    display: none;
}

.v2-content-panel.is-navigation-grid .v2-preview__intro-copy {
    gap: 8px;
}

.v2-preview__eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-preview__head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--v2-text);
}

.v2-type-shuffle .v2-type-shuffle__word {
    white-space: nowrap;
}

.v2-type-shuffle .v2-type-shuffle__char {
    display: inline-block;
    transition: color 0.16s ease;
}

.v2-type-shuffle.is-shuffling {
    font-variant-ligatures: none;
}

.v2-preview__description {
    margin: 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(34, 49, 58, 0.76);
}

.v2-preview__filters-shell {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    gap: 10px;
}

.v2-preview__filters-shell.has-filter-overflow {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
}

.v2-preview__filters {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
}

.v2-preview__count {
    justify-self: start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(34, 49, 58, 0.68);
}

.v2-preview__inline-title {
    display: none;
    align-self: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(34, 49, 58, 0.82);
}

.v2-preview__inline-title strong {
    color: var(--v2-text);
}

.v2-preview__filter {
    display: grid;
    gap: 8px;
    min-width: 210px;
    flex: 0 1 220px;
}

.v2-preview__filter span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(34, 49, 58, 0.78);
}

.v2-preview__filter select {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--v2-text);
    font-size: 13px;
    font-weight: 500;
    outline: none;
}

.v2-preview__filter-reset {
    align-self: end;
    height: 46px;
    min-width: 118px;
    padding: 0 16px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgba(34, 49, 58, 0.78);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.v2-preview__filter-reset:hover {
    background: #FFFFFF;
    border-color: rgba(230, 111, 24, 0.28);
    color: var(--v2-text);
    transform: translateY(-1px);
}

.v2-preview__filter-nav {
    align-self: end;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--v2-text);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(34, 49, 58, 0.08);
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.v2-preview__filter-nav:hover:not(:disabled),
.v2-preview__filter-nav:focus-visible:not(:disabled) {
    transform: translateY(-1px);
    background: #FFFFFF;
    border-color: rgba(230, 111, 24, 0.28);
    outline: none;
}

.v2-preview__filter-nav:disabled {
    opacity: 0.28;
    cursor: default;
    box-shadow: none;
}

.v2-preview[data-panel-mode="search"] .v2-preview__intro {
    display: none;
}

.v2-preview[data-panel-mode="search"] .v2-preview__head,
.v2-preview[data-panel-mode="category"] .v2-preview__head {
    gap: 0;
    width: 100%;
    max-width: none;
}

.v2-preview[data-panel-mode="category"] .v2-preview__head {
    gap: 14px;
}

.v2-preview[data-panel-mode="search"] .v2-preview__filters,
.v2-preview[data-panel-mode="category"] .v2-preview__filters {
    width: 100%;
    min-width: 0;
    align-items: end;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.v2-preview[data-panel-mode="search"] .v2-preview__count,
.v2-preview[data-panel-mode="search"] .v2-preview__inline-title {
    display: none;
}

.v2-preview[data-panel-mode="search"] .v2-preview__filters::-webkit-scrollbar,
.v2-preview[data-panel-mode="category"] .v2-preview__filters::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.v2-preview__filter--vehicle {
    min-width: 320px;
    flex-basis: 320px;
}

.v2-preview__filter--category,
.v2-preview__filter--distribution {
    min-width: 260px;
    flex-basis: 260px;
}

.v2-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 18px;
    align-items: stretch;
    contain: layout paint;
    transition: opacity 0.14s ease;
}

.v2-preview__grid.has-category-tiles {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 34px 28px;
    align-items: start;
}

.v2-preview__grid.has-category-tiles.has-distribution-tiles {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 28px 22px;
    justify-content: stretch;
}

.v2-preview__grid.has-category-tiles.has-distribution-category-tiles {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 30px 22px;
    justify-content: stretch;
}

.v2-preview.is-loading .v2-preview__grid {
    opacity: 0.58;
}

.v2-preview-card {
    min-height: 0;
    padding: 16px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 24px rgba(34, 49, 58, 0.05);
    display: grid;
    align-content: start;
    gap: 13px;
    content-visibility: auto;
    contain-intrinsic-size: 360px 420px;
}

.v2-preview-card.is-clickable {
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.v2-preview-card.is-clickable:hover, .v2-preview-card.is-clickable:focus-visible, .v2-preview-card.is-detail-loading {
    border-color: rgba(230, 111, 24, 0.22);
    box-shadow: 0 22px 40px rgba(34, 49, 58, 0.10);
    outline: none;
}

.v2-category-tile {
    min-height: 0;
    display: grid;
    gap: 10px;
    align-content: start;
    color: var(--v2-text);
    content-visibility: auto;
    contain-intrinsic-size: 320px 300px;
}

.v2-category-tile.is-clickable {
    cursor: pointer;
}

.v2-category-tile.is-disabled {
    opacity: 0.52;
    cursor: default;
}

.v2-category-tile__media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(43, 58, 69, 0.08), rgba(230, 111, 24, 0.08));
    box-shadow: 0 18px 36px rgba(34, 49, 58, 0.09);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease;
}

.v2-category-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), filter 0.34s ease;
}

.v2-category-tile--distribution .v2-category-tile__media {
    aspect-ratio: 1 / 0.54;
    border: 1px solid rgba(43, 58, 69, 0.10);
    background:
        radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.42), transparent 34%),
        linear-gradient(145deg, #EEF1F3 0%, #C8CED3 46%, #AAB2B8 100%);
    box-shadow: 0 16px 30px rgba(34, 49, 58, 0.10);
}

.v2-preview__grid.has-distribution-category-tiles .v2-category-tile__media {
    aspect-ratio: 1 / 0.72;
    border: 1px solid rgba(43, 58, 69, 0.10);
    background: #FFFFFF;
    box-shadow: 0 14px 28px rgba(34, 49, 58, 0.07);
}

.v2-preview__grid.has-distribution-category-tiles .v2-category-tile__media img {
    object-fit: contain;
    padding: 12%;
}

.v2-category-tile--distribution .v2-category-tile__media img {
    object-fit: contain;
    padding: 6%;
    transform: scale(1.10);
    filter: drop-shadow(0 3px 7px rgba(18, 22, 25, 0.26));
}

.v2-preview__grid.has-distribution-tiles .v2-category-tile {
    contain-intrinsic-size: 172px 210px;
    gap: 6px;
}

.v2-preview__grid.has-distribution-category-tiles .v2-category-tile {
    contain-intrinsic-size: 190px 230px;
    gap: 6px;
}

.v2-preview__grid.has-distribution-tiles .v2-category-tile__label {
    display: none;
}

.v2-preview__grid.has-distribution-category-tiles .v2-category-tile__label {
    display: none;
}

.v2-preview__grid.has-distribution-tiles .v2-category-tile__title {
    font-size: 14px;
    line-height: 1.12;
    margin-top: 2px;
}

.v2-preview__grid.has-distribution-category-tiles .v2-category-tile__title {
    font-size: 14px;
    line-height: 1.12;
    margin-top: 2px;
}

.v2-preview__grid.has-distribution-tiles .v2-category-tile__count {
    font-size: 12px;
}

.v2-preview__grid.has-distribution-category-tiles .v2-category-tile__count {
    font-size: 12px;
}

.v2-category-tile.is-clickable:hover .v2-category-tile__media,
.v2-category-tile.is-clickable:focus-visible .v2-category-tile__media {
    transform: translateY(-3px);
    box-shadow: 0 26px 46px rgba(34, 49, 58, 0.14);
}

.v2-category-tile.is-clickable:hover .v2-category-tile__media img,
.v2-category-tile.is-clickable:focus-visible .v2-category-tile__media img {
    transform: scale(1.055);
    filter: saturate(1.04);
}

.v2-category-tile--distribution.is-clickable:hover .v2-category-tile__media img,
.v2-category-tile--distribution.is-clickable:focus-visible .v2-category-tile__media img {
    transform: scale(1.15);
    filter: saturate(1.04) drop-shadow(0 3px 7px rgba(18, 22, 25, 0.26));
}

.v2-category-tile.is-clickable:focus-visible {
    outline: 2px solid rgba(230, 111, 24, 0.42);
    outline-offset: 5px;
    border-radius: 12px;
}

.v2-category-tile__label {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-category-tile__title,
.v2-category-tile__count {
    margin: 0;
}

.v2-category-tile__title {
    font-size: 17px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.v2-category-tile__count {
    font-size: 13px;
    line-height: 1.25;
    color: rgba(34, 49, 58, 0.54);
}

.v2-preview-card.is-placeholder {
    grid-column: span 2;
    min-height: 220px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(234, 238, 240, 0.96) 100%);
    box-shadow: 0 12px 26px rgba(34, 49, 58, 0.04);
}

.v2-preview-card.is-loading-more {
    opacity: 0.7;
    min-height: 120px;
}

.v2-preview-card__media {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DCDCDC;
}

.v2-preview-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 14px;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-preview-card.is-clickable:hover .v2-preview-card__media img, .v2-preview-card.is-clickable:focus-visible .v2-preview-card__media img {
    transform: scale(1.045);
}

.v2-preview-card__label {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #15803D;
}

.v2-preview-card__label[data-stock-state="pending"] {
    color: #C9580D;
}

.v2-preview-card__label[data-stock-state="unavailable"] {
    color: #B91C1C;
}

.v2-preview-card h3,
.v2-preview-card p {
    margin: 0;
}

.v2-preview-card h3 {
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--v2-text);
}

.v2-preview-card p {
    min-height: 36px;
    font-size: 13px;
    line-height: 1.38;
    color: rgba(34, 49, 58, 0.72);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v2-preview-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--v2-accent);
}

.v2-preview-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-top: auto;
    font-size: 12px;
    color: rgba(34, 49, 58, 0.72);
}

.v2-preview-card__price {
    font-weight: 700;
    color: var(--v2-text);
}

.v2-preview-card__client-price {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    max-width: 100%;
    margin-top: -2px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(230, 111, 24, 0.10);
    color: #C75600;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.1;
}

.v2-preview-card__client-price strong {
    font-weight: 900;
    white-space: nowrap;
}

.v2-preview-card__client-price.is-note {
    background: rgba(34, 49, 58, 0.07);
    color: rgba(34, 49, 58, 0.68);
}

.v2-preview-card__multiplo {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--v2-muted);
    text-align: right;
    white-space: nowrap;
}

.v2-preview-card__multiplo[data-multiplo-type="obligatorio"] {
    color: var(--v2-accent);
}

.v2-cart-add {
    display: grid;
    grid-template-columns: minmax(58px, 74px) minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.v2-cart-add input {
    width: 100%;
    height: 36px;
    border: 1px solid rgba(43, 58, 69, 0.14);
    border-radius: 10px;
    background: #FFFFFF;
    color: var(--v2-text);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.v2-cart-add__button {
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--v2-accent) 0%, #F19B3E 100%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(230, 111, 24, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.v2-cart-add__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(230, 111, 24, 0.28);
}

.v2-cart-add__button:disabled {
    opacity: 0.62;
    cursor: wait;
}

.v2-cart-add__note {
    grid-column: 1 / -1;
    margin-top: -2px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(34, 49, 58, 0.56);
}

.v2-cart-add--detail {
    max-width: 360px;
    grid-template-columns: 92px minmax(0, 1fr);
}

.v2-download-page,
.v2-download-body {
    min-height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v2-download-page::-webkit-scrollbar,
.v2-download-body::-webkit-scrollbar,
.v2-download-stage::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.v2-site-header__nav a.is-active {
    color: var(--v2-text);
    font-weight: 700;
}

.v2-download-stage {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(230, 111, 24, 0.10), transparent 30%),
        radial-gradient(circle at 82% 4%, rgba(169, 176, 182, 0.26), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F4F5F5 52%, #E7EAEC 100%);
}

.v2-downloads {
    width: calc(100% - 52px);
    margin: 0 auto;
    padding: 116px 0 68px;
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-downloads__hero {
    display: grid;
    gap: 14px;
    width: 100%;
    margin-bottom: 18px;
}

.v2-downloads__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    width: 100%;
}

.v2-downloads__intro-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.v2-downloads__eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-downloads__hero h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--v2-text);
}

.v2-downloads__hero p:not(.v2-downloads__eyebrow) {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(34, 49, 58, 0.76);
}

.v2-downloads__count {
    display: block;
    justify-self: start;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(34, 49, 58, 0.68);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    box-shadow: none;
}

.v2-downloads__count .v2-type-shuffle__word + .v2-type-shuffle__word {
    margin-left: 0.28em;
}

.v2-downloads__filters {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin: 0 0 26px;
}

.v2-downloads__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: rgba(34, 49, 58, 0.78);
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.v2-downloads__reset:hover {
    border-color: rgba(230, 111, 24, 0.28);
    color: var(--v2-text);
    transform: translateY(-1px);
}

.v2-downloads__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.v2-download-card {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 34px rgba(34, 49, 58, 0.06);
    display: grid;
    gap: 14px;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
    content-visibility: auto;
    contain-intrinsic-size: 260px 520px;
}

.v2-download-card:hover {
    transform: translateY(-3px);
    border-color: rgba(230, 111, 24, 0.22);
    box-shadow: 0 24px 46px rgba(34, 49, 58, 0.10);
}

.v2-download-card__cover {
    aspect-ratio: 566 / 800;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, #FFFFFF 0%, #ECEFF1 100%);
    border: 1px solid rgba(43, 58, 69, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-download-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-download-card:hover .v2-download-card__cover img {
    transform: scale(1.035);
}

.v2-download-card__body {
    display: grid;
    gap: 8px;
}

.v2-download-card__brand {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-download-card h2 {
    min-height: 42px;
    margin: 0;
    font-size: 14px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--v2-text);
}

.v2-download-card__action {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 12px;
    background: var(--v2-text);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.v2-download-card__action span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.v2-download-card__action:hover {
    background: var(--v2-accent);
    transform: translateY(-1px);
}

.v2-download-card__action.is-disabled {
    background: rgba(34, 49, 58, 0.10);
    color: rgba(34, 49, 58, 0.50);
}

.v2-downloads__empty {
    padding: 42px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 34px rgba(34, 49, 58, 0.05);
}

.v2-downloads__empty h2 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.v2-downloads__empty p {
    margin: 0;
    color: rgba(34, 49, 58, 0.72);
}

.v2-client-portal-body {
    background:
        radial-gradient(circle at 12% 16%, rgba(230, 111, 24, 0.12), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(43, 58, 69, 0.10), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F4F1ED 54%, #E8ECEE 100%);
}

.v2-client-portal-stage {
    min-height: 100vh;
}

.v2-client-portal {
    width: min(1480px, calc(100% - 48px));
    margin: 0 auto;
    padding: 118px 0 58px;
}

.v2-client-portal__hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.v2-client-portal__hero h1 {
    margin: 0;
    color: var(--v2-text);
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.v2-client-portal__button,
.v2-client-portal__mini-button {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #F18A2F 0%, #E66F18 100%);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(230, 111, 24, 0.22);
    white-space: nowrap;
}

.v2-client-portal__button {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.v2-client-portal__mini-button {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
}

.v2-client-portal__button.is-disabled {
    background: rgba(34, 49, 58, 0.12);
    color: rgba(34, 49, 58, 0.54);
    box-shadow: none;
    cursor: default;
}

.v2-client-portal__message {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(47, 128, 86, 0.10);
    color: #2F8056;
    font-size: 13px;
    font-weight: 800;
}

.v2-client-portal__message.is-error {
    background: rgba(199, 69, 69, 0.12);
    color: #B03C3C;
}

.v2-client-portal__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.v2-client-portal__stats article,
.v2-client-portal__empty {
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 42px rgba(34, 49, 58, 0.07);
}

.v2-client-portal__stats article {
    padding: 18px;
    display: grid;
    gap: 8px;
}

.v2-client-portal__stats span,
.v2-client-portal__empty span {
    color: var(--v2-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v2-client-portal__stats strong {
    color: var(--v2-text);
    font-size: 19px;
    line-height: 1.1;
}

.v2-client-portal__filters {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.v2-client-portal__table-wrap {
    overflow: auto;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 46px rgba(34, 49, 58, 0.08);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v2-client-portal__table-wrap::-webkit-scrollbar {
    display: none;
}

.v2-client-portal__table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    color: var(--v2-text);
}

.v2-client-portal__table th {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(43, 58, 69, 0.08);
    color: rgba(34, 49, 58, 0.52);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-align: left;
    text-transform: uppercase;
}

.v2-client-portal__table td {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(43, 58, 69, 0.06);
    color: rgba(34, 49, 58, 0.72);
    font-size: 13px;
    font-weight: 600;
    vertical-align: middle;
}

.v2-client-portal__table tr:last-child td {
    border-bottom: 0;
}

.v2-client-portal__table td strong {
    display: block;
    color: var(--v2-text);
    font-size: 14px;
}

.v2-client-portal__table td small {
    display: block;
    margin-top: 3px;
    color: rgba(34, 49, 58, 0.48);
    font-size: 12px;
}

.v2-client-portal__empty {
    padding: 34px;
    display: grid;
    gap: 12px;
}

.v2-client-portal__empty h2 {
    margin: 0;
    color: var(--v2-text);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.v2-client-portal__empty p {
    max-width: 620px;
    margin: 0;
    color: rgba(34, 49, 58, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 860px) {
    .v2-client-portal {
        width: min(100% - 28px, 1480px);
        padding-top: 104px;
    }

    .v2-client-portal__hero {
        align-items: start;
        flex-direction: column;
    }

    .v2-client-portal__stats {
        grid-template-columns: 1fr;
    }

    .v2-client-portal__filters {
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .v2-client-portal__filters::-webkit-scrollbar {
        display: none;
    }
}

.is-contact-modal-open,
.is-client-modal-open {
    overflow: hidden;
}

.v2-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 28px;
    pointer-events: none;
}

.v2-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(230, 111, 24, 0.16), transparent 28%),
        rgba(12, 14, 16, 0.42);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.v2-contact-modal__panel {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: min(720px, calc(100vh - 56px));
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 247, 0.98) 50%, rgba(231, 234, 236, 0.98) 100%);
    box-shadow: 0 24px 62px rgba(12, 14, 16, 0.22);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    opacity: 0;
    transform: translateY(24px) scale(0.965);
    transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-contact-modal.is-visible {
    pointer-events: auto;
}

.v2-contact-modal.is-visible .v2-contact-modal__backdrop {
    opacity: 1;
}

.v2-contact-modal.is-visible .v2-contact-modal__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.v2-contact-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--v2-accent);
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(230, 111, 24, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.v2-contact-modal__close:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(230, 111, 24, 0.34);
}

.v2-contact-modal__content {
    min-width: 0;
    padding: 58px 56px 44px;
    display: grid;
    align-content: center;
    gap: 20px;
}

.v2-contact-modal__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-contact-modal__content h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: var(--v2-text);
}

.v2-contact-modal__lead {
    max-width: 470px;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(34, 49, 58, 0.68);
}

.v2-contact-modal__grid {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.v2-contact-modal__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 15px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: inherit;
    text-decoration: none;
}

.v2-contact-modal__item--link {
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.v2-contact-modal__item--link:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 111, 24, 0.22);
    box-shadow: 0 18px 34px rgba(34, 49, 58, 0.10);
}

.v2-contact-modal__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--v2-accent) 0%, #F19B3E 100%);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.v2-contact-modal__item h3 {
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-text);
}

.v2-contact-modal__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.42;
    color: rgba(34, 49, 58, 0.72);
}

.v2-contact-modal__item p + p {
    margin-top: 4px;
}

.v2-contact-modal__hint {
    color: var(--v2-accent) !important;
    font-size: 12px !important;
    font-weight: 800;
}

.v2-contact-modal__item a {
    color: var(--v2-accent);
    font-weight: 700;
}

.v2-client-modal {
    position: fixed;
    inset: 0;
    z-index: 72;
    display: grid;
    place-items: center;
    padding: 28px;
    pointer-events: none;
}

.v2-client-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 14%, rgba(230, 111, 24, 0.18), transparent 30%),
        rgba(12, 14, 16, 0.44);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.v2-client-modal__panel {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: min(720px, calc(100vh - 56px));
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 247, 0.98) 52%, rgba(231, 234, 236, 0.98) 100%);
    box-shadow: 0 24px 62px rgba(12, 14, 16, 0.22);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    opacity: 0;
    transform: translateY(24px) scale(0.965);
    transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-client-modal.is-visible {
    pointer-events: auto;
}

.v2-client-modal.is-visible .v2-client-modal__backdrop {
    opacity: 1;
}

.v2-client-modal.is-visible .v2-client-modal__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.v2-client-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--v2-accent);
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(230, 111, 24, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.v2-client-modal__close:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(230, 111, 24, 0.34);
}

.v2-client-modal__hero {
    min-height: 560px;
    padding: 58px 46px;
    background:
        radial-gradient(circle at 28% 20%, rgba(230, 111, 24, 0.22), transparent 34%),
        linear-gradient(145deg, #1F2529 0%, #333A40 50%, #A9B0B6 100%);
    color: #FFFFFF;
    display: grid;
    align-content: end;
    gap: 14px;
}

.v2-client-modal__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.v2-client-modal__hero h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.v2-client-modal__hero p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.55;
}

.v2-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 76;
    background: rgba(34, 49, 58, 0.20);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.v2-cart-backdrop.is-visible {
    opacity: 1;
}

.v2-cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 77;
    width: min(430px, calc(100vw - 22px));
    height: 100vh;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 247, 0.98) 100%);
    box-shadow: -28px 0 58px rgba(34, 49, 58, 0.18);
    transform: translateX(106%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
}

.v2-cart-panel.is-visible {
    transform: translateX(0);
}

.v2-cart-panel__head {
    padding: 28px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(43, 58, 69, 0.08);
}

.v2-cart-panel__head p {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-cart-panel__head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--v2-text);
}

.v2-cart-panel__close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--v2-accent);
    color: #FFFFFF;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(230, 111, 24, 0.26);
}

.v2-cart-panel__body {
    min-height: 0;
    overflow-y: auto;
    padding: 20px 22px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v2-cart-panel__body::-webkit-scrollbar {
    display: none;
}

.v2-cart-panel__empty {
    min-height: 220px;
    border: 1px dashed rgba(43, 58, 69, 0.18);
    border-radius: 22px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    text-align: center;
    color: rgba(34, 49, 58, 0.62);
}

.v2-cart-panel__empty strong {
    color: var(--v2-text);
}

.v2-cart-panel__items {
    display: grid;
    gap: 12px;
}

.v2-cart-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.v2-cart-item img {
    width: 64px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    background: #FFFFFF;
}

.v2-cart-item__body {
    min-width: 0;
}

.v2-cart-item__body h3,
.v2-cart-item__body p {
    margin: 0;
}

.v2-cart-item__body h3 {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--v2-text);
}

.v2-cart-item__body p {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(34, 49, 58, 0.62);
}

.v2-cart-item__body span {
    display: inline-block;
    margin-top: 5px;
    font-size: 11px;
    font-weight: 800;
    color: var(--v2-accent);
}

.v2-cart-item__status {
    display: block !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v2-cart-item__status[data-stock-state="in-stock"] {
    color: #15803D;
}

.v2-cart-item__status[data-stock-state="pending"] {
    color: #C9580D;
}

.v2-cart-item__status[data-stock-state="unavailable"] {
    color: #B91C1C;
}

.v2-cart-item__note {
    display: block;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    color: #C1121F;
}

.v2-cart-item__price {
    display: block !important;
    margin-top: 7px !important;
    color: rgba(34, 49, 58, 0.62) !important;
}

.v2-cart-item__aside {
    display: grid;
    justify-items: end;
    gap: 6px;
}

.v2-cart-item__quantity {
    display: grid;
    gap: 4px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(34, 49, 58, 0.48);
}

.v2-cart-item__quantity input {
    width: 74px;
    height: 34px;
    border: 1px solid rgba(43, 58, 69, 0.14);
    border-radius: 10px;
    background: #FFFFFF;
    color: var(--v2-text);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.v2-cart-item__aside strong {
    font-size: 13px;
    color: var(--v2-text);
}

.v2-cart-item__remove {
    border: 0;
    background: transparent;
    color: rgba(34, 49, 58, 0.56);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.v2-cart-panel__footer {
    padding: 20px 28px 26px;
    border-top: 1px solid rgba(43, 58, 69, 0.08);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    background: rgba(255, 255, 255, 0.84);
}

.v2-cart-panel__footer span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(34, 49, 58, 0.58);
}

.v2-cart-panel__footer strong {
    font-size: 18px;
    color: var(--v2-text);
}

.v2-cart-panel__confirm {
    grid-column: 1 / -1;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #F18A2F 0%, #E66F18 100%);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(230, 111, 24, 0.24);
}

.v2-cart-panel__confirm:disabled {
    opacity: 0.42;
    cursor: not-allowed;
    box-shadow: none;
}

.v2-cart-confirm {
    position: fixed;
    inset: 0;
    z-index: 92;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.v2-cart-confirm.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.v2-cart-confirm__veil {
    position: absolute;
    inset: 0;
    background: rgba(20, 33, 51, 0.42);
    backdrop-filter: blur(10px);
}

.v2-cart-confirm__dialog {
    position: relative;
    width: min(460px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.70);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 247, 0.98) 100%);
    box-shadow: 0 34px 80px rgba(20, 33, 51, 0.28);
    padding: 34px;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-cart-confirm.is-visible .v2-cart-confirm__dialog {
    transform: translateY(0) scale(1);
}

.v2-cart-confirm__dialog p {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-cart-confirm__dialog h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: var(--v2-text);
}

.v2-cart-confirm__dialog span {
    display: block;
    margin-top: 14px;
    color: rgba(34, 49, 58, 0.66);
    font-size: 14px;
    line-height: 1.5;
}

.v2-cart-confirm__actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    margin-top: 24px;
}

.v2-cart-confirm__actions button {
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.v2-cart-confirm__cancel {
    background: rgba(43, 58, 69, 0.08);
    color: rgba(34, 49, 58, 0.72);
}

.v2-cart-confirm__send {
    background: linear-gradient(180deg, #F18A2F 0%, #E66F18 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 34px rgba(230, 111, 24, 0.22);
}

.v2-cart-confirm__send:disabled {
    opacity: 0.72;
    cursor: wait;
}

.v2-client-modal__content {
    min-width: 0;
    padding: 58px 56px 44px;
    display: grid;
    align-content: center;
    gap: 20px;
}

.v2-client-modal__form {
    display: grid;
    gap: 14px;
}

.v2-client-modal__login-panel {
    display: grid;
    gap: 20px;
}

.v2-client-modal__login-panel[hidden] {
    display: none;
}

.v2-client-modal__form label {
    display: grid;
    gap: 8px;
}

.v2-client-modal__form span,
.v2-client-modal__account span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-client-modal__form input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(43, 58, 69, 0.10);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--v2-text);
    font-size: 15px;
    font-weight: 600;
    padding: 0 15px;
    outline: none;
}

.v2-client-modal__form input:focus {
    border-color: rgba(230, 111, 24, 0.34);
    box-shadow: 0 0 0 4px rgba(230, 111, 24, 0.10);
}

.v2-client-modal__form button {
    min-height: 50px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #F18A2F 0%, #E66F18 100%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(230, 111, 24, 0.24);
}

.v2-client-modal__form button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.v2-client-modal__message {
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(47, 128, 86, 0.10);
    color: #2F8056;
    font-size: 13px;
    font-weight: 700;
}

.v2-client-modal__message.is-error {
    background: rgba(199, 69, 69, 0.12);
    color: #B03C3C;
}

.v2-client-modal__account {
    padding: 18px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    display: grid;
    gap: 6px;
}

.v2-client-modal__account strong {
    color: var(--v2-text);
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.v2-client-modal__account small,
.v2-client-modal__tile small,
.v2-client-modal__footer span {
    color: rgba(34, 49, 58, 0.62);
    font-size: 13px;
    line-height: 1.45;
}

.v2-client-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.v2-client-modal__tile {
    min-height: 132px;
    padding: 16px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    display: grid;
    align-content: start;
    gap: 8px;
    color: var(--v2-text);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.v2-client-modal__tile:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 111, 24, 0.24);
    box-shadow: 0 16px 32px rgba(34, 49, 58, 0.08);
}

.v2-client-modal__tile span {
    color: var(--v2-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.v2-client-modal__tile strong {
    font-size: 16px;
}

.v2-client-modal__footer {
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.v2-client-modal__footer a,
.v2-client-modal__link,
.v2-client-modal__ghost {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--v2-accent);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.v2-client-modal__link {
    width: 100%;
}

.v2-client-modal__link:hover,
.v2-client-modal__footer a:hover,
.v2-client-modal__ghost:hover {
    color: #C95D13;
}

.v2-client-modal__reset {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.v2-client-modal__reset[hidden] {
    display: none;
}

.v2-client-modal__reset.is-open {
    opacity: 1;
    transform: translateY(0);
}

.v2-client-modal__reset p {
    margin: 0;
    color: rgba(34, 49, 58, 0.64);
    font-size: 13px;
    line-height: 1.45;
}

.v2-password-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 20%, rgba(230, 111, 24, 0.13), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(43, 58, 69, 0.12), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F4F1ED 52%, #E9ECEE 100%);
}

.v2-password-stage {
    min-height: 100vh;
    background: transparent;
}

.v2-password-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 24px;
}

.v2-password-header__inner {
    width: min(980px, 100%);
    height: 58px;
    margin: 0 auto;
    padding: 0 18px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 14px 34px rgba(34, 49, 58, 0.08);
}

.v2-password-header__brand {
    display: inline-flex;
    align-items: center;
}

.v2-password-header__brand img {
    width: 72px;
    height: auto;
    display: block;
}

.v2-password-header__label {
    color: rgba(34, 49, 58, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.v2-password-landing {
    min-height: 100vh;
    padding: 118px 24px 48px;
    display: grid;
    place-items: center;
}

.v2-password-card {
    width: min(520px, 100%);
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(43, 58, 69, 0.10);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(34, 49, 58, 0.14);
}

.v2-password-card__content h1 {
    margin: 0;
    color: var(--v2-text);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.v2-password-card__content {
    padding: 42px;
    display: grid;
    align-content: center;
    gap: 18px;
}

.v2-password-card__close-note {
    margin: 0;
    color: rgba(34, 49, 58, 0.62);
    font-size: 13px;
    line-height: 1.45;
}

.v2-password-card__account {
    padding: 18px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(245, 239, 232, 0.64);
    display: grid;
    gap: 6px;
}

.v2-password-card__account span {
    color: var(--v2-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.v2-password-card__account strong {
    color: var(--v2-text);
    font-size: 20px;
    line-height: 1.15;
}

.v2-password-card__account small {
    color: rgba(34, 49, 58, 0.62);
    font-size: 13px;
}

.v2-password-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.v2-password-card__button,
.v2-password-card__ghost {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.v2-password-card__button {
    border: 0;
    background: linear-gradient(180deg, #F18A2F 0%, #E66F18 100%);
    color: #FFFFFF;
    box-shadow: 0 16px 34px rgba(230, 111, 24, 0.22);
}

.v2-password-card__ghost {
    border: 1px solid rgba(43, 58, 69, 0.10);
    background: rgba(255, 255, 255, 0.72);
    color: rgba(34, 49, 58, 0.72);
    display: inline-flex;
    align-items: center;
}

@media (max-width: 780px) {
    .v2-password-header {
        top: 12px;
        padding: 0 14px;
    }

    .v2-password-header__inner {
        height: 54px;
    }

    .v2-password-header__brand img {
        width: 64px;
    }

    .v2-password-header__label {
        font-size: 12px;
    }

    .v2-password-landing {
        padding: 94px 16px 28px;
        place-items: start center;
    }

    .v2-password-card {
        border-radius: 24px;
    }

    .v2-password-card__content {
        padding: 30px;
    }
}

@media (min-width: 1680px) {
    .v2-preview__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .v2-preview__grid.has-category-tiles {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }

    .v2-preview__grid.has-category-tiles.has-distribution-tiles {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .v2-preview__grid.has-category-tiles.has-distribution-category-tiles {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .v2-downloads__grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
}

.v2-product-detail {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
    padding: 102px 36px 44px;
    background: radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.96), transparent 34%), linear-gradient(135deg, #FFFFFF 0%, #F1F3F4 52%, #E5E9EB 100%);
    transform: translateX(100%);
    transition: transform 0.54s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v2-product-detail.is-visible {
    transform: translateX(0);
    will-change: transform;
}

.v2-product-detail::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.v2-product-detail__content::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.v2-product-detail__shell {
    display: grid;
    grid-template-columns: minmax(320px, 40%) minmax(0, 60%);
    gap: 28px;
    height: 100%;
    min-height: 0;
    align-items: stretch;
}

.v2-product-detail__content {
    min-width: 0;
    min-height: 0;
    overflow-y: auto;
    padding-right: 10px;
    display: grid;
    align-content: start;
    gap: 22px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v2-product-detail__gallery,
.v2-product-detail__summary,
.v2-product-detail__block {
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(34, 49, 58, 0.06);
}

.v2-product-detail__gallery {
    padding: 22px;
    display: grid;
    gap: 16px;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: stretch;
    min-height: 0;
}

.v2-product-detail__media {
    min-height: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: inset 0 0 0 1px rgba(43, 58, 69, 0.04);
}

.v2-product-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    display: block;
}

.v2-product-detail__thumb-carousel {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.v2-product-detail__thumbs {
    min-width: 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.v2-product-detail__thumbs::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.v2-product-detail__thumb {
    flex: 0 0 92px;
    padding: 0;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: #FFF;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.v2-product-detail__thumb-nav {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--v2-text);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(34, 49, 58, 0.08);
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.v2-product-detail__thumb-nav:hover:not(:disabled), .v2-product-detail__thumb-nav:focus-visible:not(:disabled) {
    transform: translateY(-1px);
    background: #FFFFFF;
    outline: none;
}

.v2-product-detail__thumb-nav:disabled {
    opacity: 0.28;
    cursor: default;
    box-shadow: none;
}

.v2-product-detail__thumb:hover,
.v2-product-detail__thumb.is-active {
    transform: translateY(-2px);
    border-color: rgba(230, 111, 24, 0.28);
    box-shadow: 0 14px 26px rgba(34, 49, 58, 0.08);
}

.v2-product-detail__thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 8px;
    display: block;
}

.v2-product-detail__summary {
    padding: 28px;
    display: grid;
    gap: 16px;
}

.v2-product-detail__eyebrow,
.v2-product-detail__block-kicker {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-product-detail__summary h2,
.v2-product-detail__block-head h3 {
    margin: 0;
    color: var(--v2-text);
    letter-spacing: -0.04em;
}

.v2-product-detail__summary h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 0.98;
}

.v2-product-detail__reference {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(34, 49, 58, 0.58);
}

.v2-product-detail__short {
    margin: 0;
    font-size: 16px;
    line-height: 1.68;
    color: rgba(34, 49, 58, 0.78);
}

.v2-product-detail__status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.v2-product-detail__status,
.v2-product-detail__multiplo {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.v2-product-detail__status {
    background: rgba(230, 111, 24, 0.10);
    color: var(--v2-accent);
}

.v2-product-detail__status[data-stock-state="pending"] {
    background: rgba(224, 132, 40, 0.12);
    color: #B86A18;
}

.v2-product-detail__status[data-stock-state="unavailable"] {
    background: rgba(199, 69, 69, 0.12);
    color: #B03C3C;
}

.v2-product-detail__multiplo {
    background: rgba(43, 58, 69, 0.06);
    color: rgba(34, 49, 58, 0.82);
}

.v2-product-detail__prices {
    display: grid;
    gap: 10px;
}

.v2-product-detail__price {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(43, 58, 69, 0.04);
    color: rgba(34, 49, 58, 0.72);
}

.v2-product-detail__price span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v2-product-detail__price strong {
    font-size: 17px;
    color: var(--v2-text);
}

.v2-product-detail__price.is-accent {
    background: rgba(230, 111, 24, 0.10);
}

.v2-product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.v2-product-detail__action {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    background: #FFFFFF;
    color: var(--v2-text);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.v2-product-detail__action--primary {
    background: linear-gradient(180deg, #F18A2F 0%, #E66F18 100%);
    border-color: transparent;
    color: #FFF;
}

.v2-product-detail__blocks {
    display: grid;
    gap: 22px;
}

.v2-product-detail__block {
    padding: 24px 26px;
    display: grid;
    gap: 18px;
}

.v2-product-detail__block-head {
    display: grid;
    gap: 8px;
}

.v2-product-detail__video {
    border-radius: 22px;
    overflow: hidden;
    background: #10161C;
}

.v2-product-detail__video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

.v2-product-detail__richtext {
    color: rgba(34, 49, 58, 0.82);
    font-size: 15px;
    line-height: 1.75;
}

.v2-product-detail__richtext > :first-child {
    margin-top: 0;
}

.v2-product-detail__richtext > :last-child {
    margin-bottom: 0;
}

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

.v2-product-detail__attachment {
    padding: 16px;
    border: 1px solid rgba(43, 58, 69, 0.08);
    border-radius: 18px;
    background: rgba(43, 58, 69, 0.03);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    color: var(--v2-text);
}

.v2-product-detail__attachment-ext {
    min-width: 54px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(230, 111, 24, 0.10);
    color: var(--v2-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
}

.v2-product-detail__attachment-copy {
    display: grid;
    gap: 4px;
}

.v2-product-detail__attachment-copy strong,
.v2-product-detail__attachment-copy small {
    display: block;
}

.v2-product-detail__attachment-copy small {
    color: rgba(34, 49, 58, 0.56);
}

@keyframes v2-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes v2-soft-loader {
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes v2-mobile-splash {
    0%, 70% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.018);
        visibility: hidden;
    }
}

@keyframes v2-mobile-logo-load {
    0% {
        opacity: 0;
        transform: scale(0.92);
        filter: brightness(0) invert(1) drop-shadow(0 18px 38px rgba(0, 0, 0, 0.18));
    }

    34% {
        opacity: 1;
        transform: scale(1.02);
        filter: brightness(0) invert(1) drop-shadow(0 20px 42px rgba(230, 111, 24, 0.20));
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 18px 38px rgba(0, 0, 0, 0.22));
    }
}

@keyframes v2-mobile-splash-ring {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes v2-mobile-home-in {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-preview.is-loading::after,
    .v2-preview.is-loading .v2-preview-loader__ring {
        animation: none;
    }
}

body.v2-menu-open .v2-stage-canvas {
    transform: translateX(calc(var(--v2-stage-shift, 0px) * -1));
    will-change: transform;
}

body.v2-menu-open .v2-downloads {
    transform: translateX(calc(var(--v2-stage-shift, 0px) * -1));
    will-change: transform;
}

.v2-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(28, 36, 43, 0.10);
}

.v2-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.34s ease;
}

.v2-menu.is-open {
    pointer-events: auto;
    opacity: 1;
}

.v2-menu-shell {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--v2-panel-width);
    max-width: 100vw;
    overflow: hidden;
    transform: translateX(100%);
    transition: width 0.34s cubic-bezier(0.22, 1, 0.36, 1), transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-menu.is-open .v2-menu-shell {
    transform: translateX(0);
    will-change: transform, width;
}

.v2-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--v2-panel-width);
    max-width: min(var(--v2-panel-width), 100vw);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F3F4 100%);
    border-left: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow);
    display: flex;
    flex-direction: column;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: right 0.34s cubic-bezier(0.22, 1, 0.36, 1), transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.46s;
}

.v2-panel.is-visible {
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
    will-change: transform, right;
}

.v2-panel.is-active {
    transform: translateX(0);
}

.v2-panel.is-visible:not(.is-active):not(.is-closing) {
    cursor: pointer;
}

.v2-panel.is-visible:not(.is-active):not(.is-closing) .v2-panel-head,
.v2-panel.is-visible:not(.is-active):not(.is-closing) .v2-panel-body {
    pointer-events: none;
}

.v2-panel.is-closing {
    visibility: visible;
    pointer-events: none;
    transform: translateX(100%);
}

.v2-panel.is-root {
    box-shadow: 0 18px 40px rgba(34, 49, 58, 0.08);
}

.v2-panel-head {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 28px 24px 18px;
    display: grid;
    gap: 8px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F2F4F5 100%);
    border-bottom: 1px solid var(--v2-border);
}

.v2-panel-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.v2-panel-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--v2-accent);
}

.v2-panel-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(43, 58, 69, 0.10);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--v2-muted);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.v2-panel-close:hover {
    background: #FFFFFF;
    color: var(--v2-accent);
    border-color: rgba(230, 111, 24, 0.28);
}

.v2-panel-head h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--v2-text);
}

.v2-panel-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v2-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
}

.v2-panel-back span[aria-hidden="true"] {
    font-size: 20px;
    line-height: 1;
}

.v2-panel-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none;
    padding: 8px 0 36px;
}

.v2-panel-body::-webkit-scrollbar {
    display: none;
}

.v2-row-link,
.v2-row-button {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    text-align: left;
    color: var(--v2-text);
    border-bottom: 1px solid rgba(43, 58, 69, 0.06);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.v2-row-link {
    grid-template-columns: 44px minmax(0, 1fr);
}

.v2-row-link:hover,
.v2-row-button:hover {
    background: #FFFFFF;
}

.v2-row-link.is-disabled,
.v2-row-button.is-disabled {
    cursor: default;
    opacity: 0.48;
    filter: grayscale(0.25);
}

.v2-row-link.is-disabled:hover,
.v2-row-button.is-disabled:hover {
    background: transparent;
}

.v2-row-link.is-selected,
.v2-row-button.is-selected {
    background: linear-gradient(180deg, rgba(230, 111, 24, 0.14) 0%, rgba(230, 111, 24, 0.07) 100%);
    box-shadow: inset 0 0 0 1px rgba(230, 111, 24, 0.18);
}

.v2-row-link.is-selected .v2-row-text,
.v2-row-button.is-selected .v2-row-text {
    color: #C9580D;
    font-weight: 600;
}

.v2-row-thumb {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v2-panel-strong);
    box-shadow: inset 0 0 0 1px rgba(43, 58, 69, 0.07);
}

.v2-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v2-row-button.is-brand .v2-row-thumb img,
.v2-row-link.is-overview .v2-row-thumb img {
    object-fit: contain;
    padding: 6px;
}

.v2-row-text {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.v2-row-text-main {
    font-size: 15px;
    line-height: 1.28;
    color: var(--v2-text);
}

.v2-row-meta {
    font-size: 10px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(98, 107, 114, 0.62);
}

.v2-row-link.is-disabled .v2-row-meta,
.v2-row-button.is-disabled .v2-row-meta {
    color: #B91C1C;
}

.v2-row-arrow {
    width: 8px;
    height: 8px;
    justify-self: end;
    border-top: 2px solid rgba(230, 111, 24, 0.82);
    border-right: 2px solid rgba(230, 111, 24, 0.82);
    transform: rotate(45deg);
}

.v2-row-link.is-overview,
.v2-row-button.is-overview {
    background: linear-gradient(180deg, rgba(230, 111, 24, 0.12) 0%, rgba(169, 176, 182, 0.12) 100%);
}

.v2-row-link.is-overview:hover,
.v2-row-button.is-overview:hover {
    background: linear-gradient(180deg, rgba(230, 111, 24, 0.18) 0%, rgba(169, 176, 182, 0.16) 100%);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .v2-site-header {
        padding: 12px 14px 0;
    }

    .v2-site-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
        width: 100%;
        padding: 0 12px;
        min-height: 48px;
    }

    .v2-site-header__brand-logo {
        height: 19px;
    }

    .v2-site-header__nav {
        display: flex;
        justify-content: center;
        gap: 16px;
        min-width: 0;
        overflow: visible;
    }

    .v2-site-header__nav-link--home,
    .v2-site-header__nav-link--distributions {
        display: none;
    }

    .v2-site-header__nav-link--client {
        max-width: 118px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .v2-site-header__nav a,
    .v2-site-header__nav-trigger {
        font-size: 11px;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .v2-site-header__actions {
        gap: 7px;
        min-width: 0;
    }

    .v2-site-header__nav-trigger--mobile {
        display: none;
    }

    .v2-site-header__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

}

@media (max-width: 920px) {
    :root {
        --v2-panel-width: min(100vw, 360px);
        --v2-peek: 36px;
    }
    
    .v2-site-header {
        padding: 10px 10px 0;
    }

    .v2-site-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        padding: 0 10px;
        min-height: 46px;
        border-radius: 16px;
        overflow: hidden;
    }

    .v2-site-header__brand-logo {
        height: 18px;
    }
    
    .v2-site-header__nav {
        display: flex;
        justify-content: center;
        gap: 14px;
        min-width: 0;
        overflow: hidden;
    }

    .v2-site-header__nav-link--home,
    .v2-site-header__nav-link--distributions {
        display: none;
    }

    .v2-site-header__nav-link--client {
        max-width: 108px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .v2-site-header__nav a,
    .v2-site-header__nav-trigger {
        font-size: 11px;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }
    
    .v2-site-header__actions {
        gap: 7px;
    }
    
    .v2-site-header__nav-trigger--mobile {
        display: none;
    }

    .v2-site-header__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .v2-site-header__icon--close {
        display: none;
    }

    .v2-site-header.has-product-detail-open .v2-site-header__icon--close {
        display: inline-flex;
    }

    .v2-site-header__search-mode {
        grid-template-columns: 22px minmax(0, 1fr) auto;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .v2-site-header__search-input {
        min-width: 0;
        max-width: 100%;
        height: 38px;
        font-size: 16px;
    }

    .v2-site-header__search-count,
    .v2-site-header__search-preview-close {
        display: none;
    }

    .v2-site-header__search-close {
        min-width: 74px;
        height: 36px;
        padding: 0 11px;
        font-size: 12px;
    }

    .v2-site-header--home:not(.is-scrolled):not(.is-search-open):not(.has-preview-open) .v2-site-header__inner {
        background: rgba(14, 17, 20, 0.42);
        border-color: rgba(255, 255, 255, 0.22);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    }

    .v2-site-header__actions {
        min-width: 0;
    }
    
    .v2-showcase {
        padding: 98px 22px 32px;
        min-height: auto;
    }
    
    .v2-showcase__deck {
        height: clamp(380px, calc(100vh - 220px), 520px);
    }
    
    .v2-showcase-card {
        width: min(100%, 640px);
        height: min(100%, 470px);
    }
    
    .v2-showcase-card.is-prev {
        transform: translateX(-110px) scale(0.86) rotate(-5deg);
    }
    
    .v2-showcase-card.is-next {
        transform: translateX(110px) scale(0.86) rotate(5deg);
    }
    
    .v2-showcase-card.is-prev2,
    .v2-showcase-card.is-next2 {
        opacity: 0;
    }

    .v2-home-hero__content {
        width: min(100% - 36px, 920px);
        padding: 118px 0 104px;
    }

    .v2-home-hero h1 {
        font-size: clamp(34px, 8.8vw, 64px);
        min-height: 2.7em;
        max-width: 620px;
    }

    .v2-home-hero__controls {
        bottom: 24px;
    }
    
    .v2-preview {
        padding: 0;
    }
    
    .v2-preview__head {
        padding: 0;
    }
    
    .v2-preview__intro {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 16px;
    }
    
    .v2-preview__filters {
        padding: 0;
    }

    .v2-preview__filters-shell {
        gap: 8px;
    }

    .v2-preview__filters-shell.has-filter-overflow {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
    }

    .v2-preview__filter-nav {
        width: 40px;
        height: 40px;
    }
    
    .v2-preview[data-panel-mode="search"] .v2-preview__filters,
    .v2-preview[data-panel-mode="category"] .v2-preview__filters {
        flex-wrap: nowrap;
        align-items: end;
    }
    
    .v2-preview[data-panel-mode="search"] .v2-preview__inline-title {
        flex: 0 0 240px;
        min-width: 240px;
        width: auto;
    }
    
    .v2-preview__filter {
        min-width: 210px;
        flex: 0 0 210px;
    }
    
    .v2-preview__filter--vehicle {
        min-width: 280px;
        flex-basis: 280px;
    }
    
    .v2-preview__filter--category,
    .v2-preview__filter--distribution {
        min-width: 240px;
        flex-basis: 240px;
    }
    
    .v2-preview__grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 16px;
    }

    .v2-preview__grid.has-category-tiles {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 28px 20px;
    }

    .v2-preview__grid.has-category-tiles.has-distribution-tiles {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 24px 18px;
    }

    .v2-preview__grid.has-category-tiles.has-distribution-category-tiles {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 24px 18px;
    }
    
    .v2-preview-card.is-placeholder {
        grid-column: span 1;
    }

    .v2-downloads {
        width: calc(100% - 28px);
        padding: 104px 0 44px;
    }

    .v2-downloads__intro {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 0;
    }

    .v2-downloads__hero p {
        font-size: 15px;
    }

    .v2-downloads__grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 14px;
    }

    .v2-contact-modal {
        padding: 18px;
    }

    .v2-contact-modal__panel {
        max-height: calc(100vh - 36px);
        grid-template-columns: 1fr;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .v2-client-modal {
        padding: 0;
        place-items: stretch;
        background: linear-gradient(145deg, #FFFFFF 0%, #F5F6F6 52%, #E7EBED 100%);
    }

    .v2-client-modal__backdrop {
        display: none;
    }

    .v2-client-modal__panel {
        width: 100%;
        height: 100%;
        max-height: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        grid-template-columns: 1fr;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .v2-contact-modal__panel::-webkit-scrollbar {
        display: none;
    }

    .v2-client-modal__panel::-webkit-scrollbar {
        display: none;
    }

    .v2-client-modal__hero {
        min-height: auto;
        padding: 12px 54px 12px 18px;
        background:
            linear-gradient(145deg, rgba(31, 37, 41, 0.96) 0%, rgba(52, 59, 64, 0.96) 100%);
    }

    .v2-client-modal__close {
        position: fixed;
        top: 14px;
        right: 12px;
        z-index: 8;
        width: 34px;
        height: 34px;
        border-radius: 11px;
        font-size: 23px;
        box-shadow: 0 10px 24px rgba(230, 111, 24, 0.30);
    }

    .v2-contact-modal__content {
        padding: 34px 28px 28px;
    }

    .v2-client-modal__content {
        padding: 34px 28px 28px;
    }
    
    .v2-product-detail {
        overflow-y: auto;
        padding: 90px 18px 34px;
    }
    
    .v2-product-detail__shell {
        grid-template-columns: 1fr;
        height: auto;
        align-items: start;
    }
    
    .v2-product-detail__content {
        overflow: visible;
        padding-right: 0;
    }
    
    .v2-product-detail__media {
        aspect-ratio: 4 / 3;
        max-height: 420px;
    }
    
    .v2-product-detail__summary {
        padding: 22px;
    }
    
    .v2-product-detail__block {
        padding: 20px;
    }
    
    .v2-panel-head {
        padding: 24px 18px 16px;
    }
    
    .v2-content-panel {
        top: 0;
        padding: 90px 18px 34px;
    }
    
    .v2-row-link,
    .v2-row-button {
        padding: 13px 18px;
    }
}

@media (max-width: 640px) {
    .v2-showcase__intro h1 {
        font-size: 34px;
    }
    
    .v2-showcase__deck {
        height: clamp(340px, calc(100vh - 190px), 460px);
    }
    
    .v2-showcase-card {
        width: 100%;
        height: min(100%, 430px);
        border-radius: 24px;
    }
    
    .v2-showcase-card__body {
        padding: 22px 20px 24px;
    }
    
    .v2-showcase__nav {
        width: 100%;
        justify-content: center;
    }

    .v2-home-hero {
        min-height: 100svh;
        background:
            radial-gradient(circle at 22% 18%, rgba(230, 111, 24, 0.18), transparent 28%),
            radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.74), transparent 28%),
            linear-gradient(150deg, #FFFFFF 0%, #F5F6F6 48%, #E7EBED 100%);
    }

    .v2-home-hero__slides,
    .v2-home-hero__controls {
        display: none;
    }

    .v2-home-hero__video {
        display: none;
    }

    .v2-home-hero__snapshot {
        display: block;
    }

    .v2-mobile-home {
        position: relative;
        z-index: 3;
        display: grid;
        min-height: 100svh;
        padding: 18px 16px;
        overflow: hidden;
    }

    .v2-mobile-home__splash {
        position: fixed;
        inset: 0;
        z-index: 5;
        display: grid;
        place-items: center;
        background: #11161A;
        pointer-events: none;
        animation: v2-mobile-splash 1.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .v2-mobile-home__splash::before {
        content: "";
        position: absolute;
        width: 178px;
        height: 178px;
        border-radius: 999px;
        background: conic-gradient(from 0deg, transparent 0deg, transparent 95deg, rgba(230, 111, 24, 0.92) 150deg, rgba(255, 255, 255, 0.86) 198deg, transparent 270deg, transparent 360deg);
        filter: blur(0.5px);
        opacity: 0.9;
        animation: v2-mobile-splash-ring 1.05s linear infinite;
        -webkit-mask: radial-gradient(circle, transparent 0 61%, #000 62% 68%, transparent 69%);
        mask: radial-gradient(circle, transparent 0 61%, #000 62% 68%, transparent 69%);
    }

    .v2-mobile-home__splash img {
        position: relative;
        z-index: 1;
        width: 124px;
        max-width: 52vw;
        animation: v2-mobile-logo-load 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .v2-mobile-home__panel {
        align-self: stretch;
        display: grid;
        grid-template-rows: auto 1fr;
        gap: 14px;
        opacity: 0;
        transform: translateY(12px);
        animation: v2-mobile-home-in 0.44s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
    }

    .v2-mobile-home__topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 42px;
    }

    .v2-mobile-home__topbar img {
        width: 104px;
        height: auto;
        display: block;
    }

    .v2-mobile-home__top-actions {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .v2-mobile-home__icon {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(43, 58, 69, 0.08);
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 12px 26px rgba(34, 49, 58, 0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--v2-text);
    }

    .v2-mobile-home__icon .v2-site-header__menu-lines::before {
        background: var(--v2-text);
        box-shadow: 0 6px 0 var(--v2-text);
    }

    .v2-mobile-home__icon .v2-site-header__search::before {
        border-color: var(--v2-text);
    }

    .v2-mobile-home__icon .v2-site-header__search::after {
        background: var(--v2-text);
    }

    .v2-mobile-home__brand {
        display: grid;
        gap: 8px;
        justify-items: start;
        align-content: end;
    }

    .v2-mobile-home__brand img {
        width: 118px;
        height: auto;
    }

    .v2-mobile-home__brand span {
        color: rgba(34, 49, 58, 0.58);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .v2-mobile-home__actions {
        display: grid;
        grid-template-columns: 1fr;
        align-self: end;
        gap: 10px;
    }

    .v2-mobile-home__card {
        min-height: 72px;
        border: 1px solid rgba(43, 58, 69, 0.08);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.74);
        box-shadow: 0 14px 34px rgba(34, 49, 58, 0.07);
        color: var(--v2-text);
        display: grid;
        align-content: center;
        gap: 5px;
        padding: 16px;
        text-align: left;
        text-decoration: none;
        font: inherit;
    }

    .v2-mobile-home__card--search {
        min-height: 58px;
        background: rgba(255, 255, 255, 0.90);
        box-shadow: 0 18px 42px rgba(34, 49, 58, 0.10);
    }

    .v2-mobile-home__card--primary {
        background:
            radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.36), transparent 28%),
            linear-gradient(135deg, #F58A1F 0%, #E66F18 100%);
        color: #FFFFFF;
        box-shadow: 0 18px 42px rgba(230, 111, 24, 0.22);
    }

    .v2-mobile-home__card.is-client-connected strong {
        color: #2F8056;
        opacity: 1;
    }

    .v2-mobile-home__card span {
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .v2-mobile-home__card strong {
        color: inherit;
        font-size: 12px;
        font-weight: 600;
        opacity: 0.68;
    }

    .v2-home-hero__content {
        width: min(100% - 28px, 620px);
        min-height: 100svh;
        padding: 104px 0 100px;
    }

    .v2-home-hero__kicker {
        font-size: 15px;
    }

    .v2-home-hero h1 {
        font-size: clamp(30px, 11vw, 50px);
        min-height: 2.7em;
        letter-spacing: -0.065em;
    }

    .v2-home-hero__cta {
        min-height: 44px;
        padding: 0 18px;
        font-size: 12px;
    }

    .v2-home-hero__action {
        min-height: 70px;
        padding-top: 26px;
    }

    .v2-home-hero__controls {
        gap: 10px;
        padding: 8px;
    }

    .v2-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .v2-preview__grid.has-category-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 14px;
    }

    .v2-preview__grid.has-category-tiles.has-distribution-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 12px;
    }

    .v2-preview__grid.has-category-tiles.has-distribution-category-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 12px;
    }
    
    .v2-preview-card {
        padding: 12px;
        border-radius: 18px;
        gap: 10px;
        contain-intrinsic-size: 220px 320px;
        transition: none;
    }

    .v2-preview-card.is-clickable {
        transition: none;
    }

    .v2-preview-card.is-clickable:hover,
    .v2-preview-card.is-clickable:focus-visible,
    .v2-preview-card.is-detail-loading {
        transform: none;
    }

    .v2-preview-card__media {
        aspect-ratio: 1 / 1;
    }

    .v2-preview-card__media img {
        padding: 8px;
        transition: none;
    }

    .v2-preview-card.is-clickable:hover .v2-preview-card__media img,
    .v2-preview-card.is-clickable:focus-visible .v2-preview-card__media img {
        transform: none;
    }

    .v2-preview-card__label {
        font-size: 8px;
    }
    
    .v2-preview-card h3 {
        font-size: 12px;
        line-height: 1.2;
    }

    .v2-preview-card p {
        min-height: 0;
        display: -webkit-box;
        overflow: hidden;
        font-size: 11px;
        line-height: 1.28;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .v2-preview-card__meta {
        gap: 6px;
        flex-direction: column;
    }

    .v2-preview-card__multiplo {
        margin-left: 0;
        font-size: 10px;
    }

    .v2-downloads__filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 2px;
    }

    .v2-downloads__filters::-webkit-scrollbar {
        display: none;
    }

    .v2-downloads__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .v2-download-card {
        padding: 12px;
    }

    .v2-download-card h2 {
        min-height: 0;
        font-size: 13px;
    }

    .v2-contact-modal__content h2 {
        font-size: 32px;
    }

    .v2-contact-modal,
    .v2-client-modal {
        padding: 0;
        place-items: stretch;
        background: linear-gradient(145deg, #FFFFFF 0%, #F5F6F6 52%, #E7EBED 100%);
    }

    .v2-contact-modal__backdrop,
    .v2-client-modal__backdrop {
        display: none;
    }

    .v2-contact-modal__panel,
    .v2-client-modal__panel {
        width: 100%;
        height: 100%;
        max-height: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        overflow-y: auto;
        grid-template-columns: 1fr;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .v2-contact-modal__panel::-webkit-scrollbar,
    .v2-client-modal__panel::-webkit-scrollbar {
        display: none;
    }

    .v2-contact-modal__close,
    .v2-client-modal__close {
        position: fixed;
        top: 14px;
        right: 12px;
        width: 34px;
        height: 34px;
        border-radius: 11px;
        font-size: 23px;
    }

    .v2-contact-modal__content {
        min-height: auto;
        align-content: start;
        padding: 18px 58px 22px 18px;
        gap: 13px;
        order: 1;
    }

    .v2-contact-modal__content h2 {
        max-width: 100%;
        font-size: 28px;
        line-height: 1;
    }

    .v2-contact-modal__lead {
        max-width: 100%;
        font-size: 13px;
    }

    .v2-contact-modal__item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 12px 28px rgba(34, 49, 58, 0.06);
    }

    .v2-contact-modal__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .v2-client-modal__hero {
        min-height: auto;
        padding: 12px 54px 12px 18px;
        background:
            linear-gradient(145deg, rgba(31, 37, 41, 0.96) 0%, rgba(52, 59, 64, 0.96) 100%);
    }

    .v2-client-modal__close {
        z-index: 8;
        box-shadow: 0 10px 24px rgba(230, 111, 24, 0.30);
    }

    .v2-client-modal__hero h2 {
        max-width: 100%;
        font-size: 28px;
        line-height: 1;
    }

    .v2-client-modal__hero p {
        max-width: 100%;
        font-size: 13px;
    }

    .v2-client-modal__content {
        align-content: start;
        padding: 16px 18px 24px;
        gap: 16px;
    }

    .v2-client-modal__form input {
        height: 52px;
        font-size: 16px;
    }

    .v2-client-modal__form button {
        min-height: 52px;
    }

    .v2-client-modal__hero h2 {
        font-size: 28px;
    }

    .v2-client-modal__grid {
        grid-template-columns: 1fr;
    }

    .v2-client-modal__footer {
        align-items: flex-start;
        flex-direction: column;
    }
    
    .v2-product-detail__attachments {
        grid-template-columns: 1fr;
    }
    
    .v2-product-detail__media {
        aspect-ratio: 1 / 1;
        max-height: 360px;
    }
}

@media (max-width: 520px) {
    :root {
        --v2-panel-width: 100vw;
        --v2-peek: 0px;
    }
    
    .v2-menu-shell {
        width: 100vw !important;
    }
    
    .v2-panel {
        width: 100vw;
        max-width: 100vw;
    }
    
    .v2-content-panel {
        top: 0;
        padding: 84px 14px 28px;
    }
    
    .v2-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .v2-preview__grid.has-category-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-downloads__grid {
        grid-template-columns: 1fr;
    }

    .v2-contact-modal__close {
        top: 12px;
        right: 12px;
    }

    .v2-contact-modal__content {
        padding: 18px 58px 22px 18px;
    }

    .v2-contact-modal__item {
        grid-template-columns: 38px minmax(0, 1fr);
    }
    
    .v2-product-detail {
        padding: 84px 14px 28px;
    }
}

@media (max-width: 720px) {
    .ifc-legal-consent {
        padding: 10px;
    }

    .ifc-legal-consent__card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
        border-radius: 20px;
    }

    .ifc-legal-consent__actions,
    .ifc-legal-preferences__actions {
        justify-content: stretch;
    }

    .ifc-legal-consent button,
    .ifc-legal-preferences button {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0 12px;
    }

    .ifc-legal-preferences {
        padding: 12px;
    }

    .ifc-legal-preferences__dialog {
        padding: 22px 16px 16px;
        border-radius: 22px;
    }

    .ifc-legal-preferences h2,
    .ifc-legal-page__hero h1 {
        font-size: 36px;
    }

    .ifc-legal-preferences__options article,
    .ifc-legal-preferences__options label {
        grid-template-columns: 1fr;
    }

    .ifc-legal-page__hero {
        padding: 54px 0 28px;
    }
}
