:root {
    --oev-lime: #D2E056;
    --oev-black: #111111;
    --bg-body: #f4f4f5;
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-muted: #6e6e73;
    --border: #eaeaea;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--bg-body); color: var(--text-dark); -webkit-font-smoothing: antialiased; }
body.menu-open,
body.lightbox-open { overflow: hidden; }
.container { width: min(1300px, 100%); margin: 0 auto; padding: 0 20px; }
.debug-panel {
    margin: 16px auto 0;
    width: min(1300px, 100%);
    padding: 18px 20px;
    background: #111111;
    color: #f5f5f5;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.debug-panel h2 {
    font-size: 18px;
    margin-bottom: 8px;
}
.debug-panel pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 12px;
    line-height: 1.5;
    color: #d7f5b1;
}

.top-nav-shell { padding: 20px 0 16px; }
.top-nav {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: #111111;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}
.top-nav .logo { justify-self: start; }
.logo { font-weight: 800; font-size: 24px; display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; letter-spacing: -1px; }
.logo-icon { background: var(--oev-lime); color: var(--oev-black); width: 36px; height: 36px; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; font-size: 18px; }
.nav-links { display: flex; gap: 32px; list-style: none; justify-self: center; }
.nav-links a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--oev-lime); }
.nav-links a.active { color: var(--oev-lime); font-weight: 700; }
.nav-icons {
    display: flex;
    gap: 10px;
    color: #fff;
    align-items: center;
    justify-self: end;
}
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    padding: 0 12px;
}
.lang-switcher i { font-size: 14px; color: rgba(255,255,255,0.92); }
.lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 0 18px 0 0;
    cursor: pointer;
}
.lang-switcher select option { color: #111; background: #fff; }
.lang-switcher::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: rgba(255,255,255,0.92);
    pointer-events: none;
}
.nav-icon-btn {
    color: inherit;
    text-decoration: none;
    width: 36px;
    height: 36px;
    position: relative;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.nav-icon-btn i { font-size: 14px; }
.nav-icon-btn:hover,
.nav-icon-btn.has-items {
    background: var(--oev-lime);
    color: var(--oev-black);
    border-color: transparent;
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.85);
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}
.cart-count.is-empty { display: none; }
.product-floating-actions {
    position: fixed;
    left: 50%;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 32px);
    min-height: 56px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(18,22,28,0.34);
    border: 1px solid rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1100;
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
    transform: translateX(-50%);
}
.sticky-cart {
    position: relative;
    width: auto;
    height: 44px;
    min-width: 44px;
    padding: 0 14px;
    gap: 8px;
    border-radius: 999px;
    border: 0;
    justify-content: center;
    color: #fff;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}
.sticky-cart:hover,
.sticky-cart:focus-visible {
    background: rgba(255,255,255,0.12);
    color: var(--oev-lime);
    outline: none;
}
.sticky-cart:focus-visible {
    box-shadow: 0 0 0 3px rgba(210,224,86,0.28);
}
.sticky-cart-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1;
    white-space: nowrap;
}
.sticky-cart .cart-count {
    top: -9px;
    right: -9px;
    min-width: 23px;
    height: 23px;
    border-width: 3px;
    border-color: rgba(255,255,255,0.62);
    font-size: 12px;
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    justify-self: end;
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-inner { height: 100%; display: flex; flex-direction: column; padding: 20px 20px 28px; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
}
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: auto 0; }
.mobile-menu-links a { color: #f3f3f3; text-decoration: none; font-size: clamp(1.5rem, 7vw, 2.2rem); font-weight: 800; line-height: 1.15; }
.mobile-menu-links a:hover { color: var(--oev-lime); }
.mobile-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    color: #fff;
    margin-bottom: 14px;
}
.mobile-lang-switcher i { font-size: 14px; }
.mobile-lang-switcher select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding-right: 14px;
}
.mobile-lang-switcher select option { color: #111; background: #fff; }
.mobile-menu-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.mobile-menu-controls .mobile-lang-switcher {
    margin-bottom: 0;
    min-height: 42px;
    padding: 0 14px;
}
.mobile-menu-controls .nav-icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.16);
    color: #fff;
    flex-shrink: 0;
}
.mobile-menu-controls .nav-icon-btn.has-label {
    width: auto;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    gap: 8px;
}
.mobile-menu-controls .nav-icon-btn.has-label .nav-icon-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.mobile-menu-foot {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    line-height: 1.45;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-top: 14px;
    margin-top: 16px;
}
.mobile-menu-foot a { color: #fff; text-decoration: none; }

main { padding-bottom: 72px; }
.back-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #20242c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}
.back-link i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #606775;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45;
    margin-bottom: 18px;
    position: relative;
    z-index: 30;
}
.breadcrumb a,
.breadcrumb-overflow summary {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 160ms ease;
}
.breadcrumb a::after,
.breadcrumb-overflow summary::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 180ms ease;
}
.breadcrumb a:hover,
.breadcrumb a:focus-visible,
.breadcrumb-overflow summary:hover,
.breadcrumb-overflow summary:focus-visible {
    color: #20242c;
}
.breadcrumb a:hover::after,
.breadcrumb a:focus-visible::after,
.breadcrumb-overflow summary:hover::after,
.breadcrumb-overflow summary:focus-visible::after {
    transform: scaleX(1);
}
.breadcrumb-current {
    color: #20242c;
}
.breadcrumb-separator {
    color: #a1a7b1;
    flex: 0 0 auto;
    user-select: none;
}
.breadcrumb-overflow {
    display: none;
    position: relative;
}
.breadcrumb-overflow summary {
    cursor: pointer;
    display: inline-flex;
    list-style: none;
    color: #606775;
}
.breadcrumb-overflow summary::-webkit-details-marker {
    display: none;
}
.breadcrumb-overflow-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 35;
    min-width: 220px;
    max-width: min(300px, calc(100vw - 40px));
    padding: 12px 14px;
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17,17,17,0.14);
    transform: translateX(-50%);
}
.breadcrumb-overflow-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(17,17,17,0.08);
    border-top: 1px solid rgba(17,17,17,0.08);
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}
.breadcrumb-overflow-menu a,
.breadcrumb-overflow-menu span {
    display: inline;
    color: #20242c;
    font-size: 13px;
    line-height: 1.35;
}
.hero-card,
.not-found-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 34px;
    box-shadow: 0 20px 60px rgba(17,17,17,0.06);
    overflow: hidden;
}
.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    grid-template-areas:
        "gallery summary"
        "gallery meta";
    gap: 28px;
    align-items: start;
    padding: 28px;
}
.gallery-panel {
    grid-area: gallery;
}
.gallery-stage {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    background: #f4f5f7;
    overflow: hidden;
    border: 1px solid rgba(17,17,17,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    position: relative;
}
.gallery-stage.has-image::before,
.product-img:not(.is-placeholder)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, #eceef1 0%, #f8f8f9 46%, #e4e7ea 100%);
    background-size: 220% 100%;
    animation: productImageLoading 1.15s ease-in-out infinite;
    opacity: 1;
    transition: opacity 180ms ease;
}
.gallery-stage.has-image.is-loaded::before,
.product-img.is-loaded::before {
    opacity: 0;
    pointer-events: none;
}
.gallery-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f4f5f7;
    position: relative;
    z-index: 2;
}
.gallery-stage.has-image > img,
.product-img img:not(.product-placeholder-logo) {
    opacity: 0;
    transition: opacity 180ms ease;
}
.gallery-stage.has-image.is-loaded > img,
.product-img.is-loaded img:not(.product-placeholder-logo) {
    opacity: 1;
}
@keyframes productImageLoading {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}
.gallery-stage-action {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    border: 0;
    border-radius: 999px;
    background: rgba(17,17,17,0.78);
    color: #fff;
    min-height: 40px;
    padding: 0 14px;
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
}
.gallery-placeholder,
.product-img.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efeff1;
}
.gallery-placeholder {
    width: 100%;
    height: 100%;
    padding: 32px;
}
.gallery-placeholder img,
.product-img .product-placeholder-logo {
    width: min(40%, 180px);
    max-height: 48px;
    opacity: 0.42;
    filter: grayscale(1) brightness(0.72) contrast(0.9);
    object-fit: contain;
}
.gallery-placeholder .product-placeholder-logo {
    width: min(38vw, 260px);
    max-width: 260px;
    height: auto;
    max-height: 74px;
    background: transparent;
    opacity: 0.62;
    filter: grayscale(1) brightness(0.55) contrast(0.92);
    flex: 0 0 auto;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}
.gallery-thumb {
    border: 1px solid rgba(17,17,17,0.1);
    border-radius: 16px;
    background: #fff;
    padding: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.gallery-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, #eceef1 0%, #f8f8f9 46%, #e4e7ea 100%);
    background-size: 220% 100%;
    animation: productImageLoading 1.15s ease-in-out infinite;
    opacity: 1;
    transition: opacity 180ms ease;
}
.gallery-thumb.is-loaded::before {
    opacity: 0;
    pointer-events: none;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 180ms ease;
}
.gallery-thumb.is-loaded img {
    opacity: 1;
}
.gallery-thumb.is-active {
    border-color: var(--oev-lime);
    box-shadow: 0 0 0 2px rgba(210,224,86,0.35);
}
.summary-panel {
    grid-area: summary;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    position: relative;
    z-index: 20;
}
.summary-top {
    background: #fff;
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(17,17,17,0.05);
    min-width: 0;
    overflow: visible;
    position: relative;
    z-index: 10;
}
.summary-content {
    padding: 28px 28px 24px;
}
.summary-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.summary-badge,
.stock-pill,
.sku-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.summary-badge {
    background: rgba(210,224,86,0.22);
    color: #374108;
}
.stock-pill {
    background: var(--oev-lime);
    color: var(--oev-black);
    box-shadow: 0 8px 18px rgba(17,17,17,0.14);
}
.stock-pill.out-of-stock {
    background: var(--oev-black);
    color: #fff;
}
.summary-top h1 {
    max-width: 100%;
    font-size: clamp(2rem, 2.9vw, 2.4rem);
    letter-spacing: 0;
    line-height: 1.08;
    margin-bottom: 16px;
    hyphens: auto;
    overflow-wrap: anywhere;
    text-wrap: balance;
    word-break: normal;
}
.sku-pill {
    background: #eef1f5;
    color: #1a1d23;
    gap: 8px;
    margin-bottom: 18px;
}
.sku-copy-btn {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #2e333d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
}
.sku-copy-btn:hover,
.sku-copy-btn:focus-visible {
    background: var(--oev-lime);
    color: var(--oev-black);
    outline: none;
}
.sku-copy-btn.is-copied {
    background: var(--oev-lime);
    color: var(--oev-black);
}
.summary-description {
    color: #5f6672;
    font-size: 16px;
    line-height: 1.68;
    margin-bottom: 22px;
}
.summary-meta-line {
    margin-bottom: 8px;
}
.summary-meta-line strong {
    color: #1a1d23;
    font-weight: 700;
}
.summary-jump-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 6px 0 18px;
}
.summary-jump-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid rgba(17,17,17,0.11);
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    color: #1d232c;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(17,17,17,0.045);
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.summary-jump-label {
    text-decoration: none;
}
.summary-jump-link:hover,
.summary-jump-link:focus-visible {
    background: #fff;
    border-color: rgba(210,224,86,0.92);
    box-shadow: 0 10px 24px rgba(17,17,17,0.07);
    color: #111;
    outline: none;
    transform: translateY(-1px);
}
.summary-jump-link i {
    font-size: 12px;
    text-decoration: none;
}
.purchase-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: linear-gradient(180deg, #111111 0%, #1d1d1f 100%);
    color: #fff;
    border-radius: 0 0 27px 27px;
}
.purchase-box > div {
    min-width: 0;
}
.purchase-box strong {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.7px;
    opacity: 0.72;
    margin-bottom: 6px;
}
.purchase-box .price {
    font-size: clamp(1.45rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0;
}
.purchase-box .price-line:first-child {
    white-space: nowrap;
}
.add-main-btn {
    border: 0;
    border-radius: 999px;
    background: var(--oev-lime);
    color: #111;
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.add-main-btn:hover { background: #bccf4a; }
.inquiry-main-btn {
    justify-content: center;
}
.add-main-btn:disabled,
.add-main-btn.is-disabled {
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.72);
    cursor: not-allowed;
}
.add-main-btn:disabled:hover,
.add-main-btn.is-disabled:hover {
    background: rgba(255,255,255,0.14);
}
.purchase-info-card {
    grid-area: meta;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.14);
    border-radius: 28px;
    padding: 18px 22px;
    display: grid;
    gap: 18px;
}
.purchase-info-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 14px;
}
.purchase-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--oev-lime);
    color: var(--oev-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.purchase-info-icon.is-muted {
    background: #eef1f5;
    color: #6e7480;
}
.purchase-info-icon.is-return {
    background: #f1f5d5;
    color: #1d2410;
}
.purchase-info-row p {
    color: #2e333d;
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}
.purchase-info-row strong {
    font-weight: 800;
}
.purchase-info-emphasis {
    display: inline-block;
    font-weight: 800;
    border-bottom: 3px solid var(--oev-lime);
    line-height: 1.1;
}
.purchase-info-help {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: #f0f1f4;
    color: #2e333d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    font-size: 12px;
}
.purchase-info-help[data-tooltip]::before,
.purchase-info-help[data-tooltip]::after {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
    z-index: 20;
}
.purchase-info-help[data-tooltip]::before {
    content: "";
    right: 8px;
    bottom: calc(100% + 4px);
    border: 6px solid transparent;
    border-top-color: #121821;
    transform: translateY(4px);
}
.purchase-info-help[data-tooltip]::after {
    content: attr(data-tooltip);
    right: -4px;
    bottom: calc(100% + 16px);
    width: min(300px, calc(100vw - 32px));
    padding: 10px 12px;
    border-radius: 8px;
    background: #121821;
    color: #fff;
    box-shadow: 0 14px 34px rgba(18, 24, 33, 0.22);
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
    transform: translateY(4px);
}
.purchase-info-help[data-tooltip]:hover::before,
.purchase-info-help[data-tooltip]:hover::after,
.purchase-info-help[data-tooltip]:focus-visible::before,
.purchase-info-help[data-tooltip]:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.related-section {
    margin-top: 26px;
    max-width: 100%;
    min-width: 0;
}
.product-details-section {
    margin-top: 28px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 28px;
    box-shadow: 0 16px 44px rgba(17,17,17,0.05);
    scroll-margin-top: 110px;
}
.variant-options-section {
    scroll-margin-top: 110px;
}
.product-details-head {
    margin-bottom: 10px;
}
.product-details-head h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0;
}
.product-details-head p {
    max-width: 760px;
    margin-top: 6px;
    color: #747b86;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    margin: 0;
    border-top: 1px solid rgba(17,17,17,0.08);
}
.product-detail-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(17,17,17,0.08);
}
.product-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(210,224,86,0.24);
    color: #242914;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.product-detail-text {
    min-width: 0;
}
.product-detail-item dt {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}
.product-detail-item dd {
    color: #111;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    overflow-wrap: anywhere;
}
.product-detail-search-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(17,17,17,0.28);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
.product-detail-search-link:hover,
.product-detail-search-link:focus-visible {
    color: #111;
    text-decoration-color: var(--oev-lime);
}
.product-details-action {
    display: flex;
    justify-content: center;
    padding-top: 18px;
}
.product-details-vehicle-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(17,17,17,0.12);
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(17,17,17,0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.product-details-vehicle-link:hover,
.product-details-vehicle-link:focus-visible {
    transform: translateY(-1px);
    background: var(--oev-lime);
    color: var(--oev-black);
    box-shadow: 0 18px 34px rgba(17,17,17,0.18);
}
.product-details-vehicle-link i {
    font-size: 14px;
}
.product-faq-section {
    margin-top: 28px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 28px;
    box-shadow: 0 16px 44px rgba(17,17,17,0.05);
    scroll-margin-top: 110px;
}
.product-context-loader .product-faq-section,
.product-context-sections .product-faq-section {
    margin-top: 0;
}
.product-faq-head {
    margin-bottom: 14px;
}
.product-faq-head h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0;
}
.product-faq-subtitle {
    max-width: 760px;
    margin-top: 6px;
    color: #747b86;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}
.product-faq-list {
    display: grid;
    gap: 10px;
}
.product-faq-item {
    min-width: 0;
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 18px;
    background: rgba(248,249,250,0.82);
    overflow: hidden;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.product-faq-item[open] {
    background: #fff;
    border-color: rgba(17,17,17,0.12);
    box-shadow: 0 14px 32px rgba(17,17,17,0.06);
}
.product-faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 14px 16px 14px 18px;
    cursor: pointer;
    list-style: none;
}
.product-faq-item summary::-webkit-details-marker {
    display: none;
}
.product-faq-item summary:focus-visible {
    outline: 2px solid var(--oev-lime);
    outline-offset: -3px;
    border-radius: 18px;
}
.product-faq-question {
    color: #111;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}
.product-faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.08);
    color: #111;
    font-size: 13px;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.product-faq-item[open] .product-faq-toggle {
    background: var(--oev-lime);
    border-color: rgba(17,17,17,0.1);
    transform: rotate(45deg);
}
.product-faq-answer {
    padding: 0 18px 18px;
}
.product-faq-answer p {
    margin: 0;
    padding-top: 2px;
    color: #5f6671;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}
.product-assurance {
    margin-top: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,246,248,0.94) 100%);
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 28px;
    box-shadow: 0 16px 44px rgba(17,17,17,0.05);
    overflow: hidden;
}
.product-assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(320px, 0.9fr);
    align-items: stretch;
}
.assurance-item,
.assurance-contact {
    padding: 28px 24px;
    min-height: 160px;
}
.assurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border-right: 1px solid rgba(17,17,17,0.08);
}
.assurance-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.08);
    color: #111;
    font-size: 24px;
    box-shadow: 0 10px 22px rgba(17,17,17,0.06);
}
.assurance-item h3 {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.assurance-item p {
    color: #7b8491;
    font-size: 15px;
    line-height: 1.45;
}
.assurance-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(17,17,17,0.02);
}
.assurance-contact-avatar-frame {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 12px 30px rgba(17,17,17,0.12);
    background: #eceff3;
    overflow: hidden;
    display: block;
}
.assurance-contact-avatar {
    width: 122%;
    height: 122%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
    transform: translate(-9%, -7%);
}
.assurance-contact-text h3 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
}
.assurance-contact-text p {
    color: #7b8491;
    font-size: 15px;
    margin-bottom: 10px;
}
.assurance-contact-text a {
    color: #111;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.2px;
}
.assurance-contact-text a:hover {
    color: #40454f;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
    min-width: 0;
}
.section-head > div {
    min-width: 0;
}
.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -1px;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
}
.section-head p {
    color: var(--text-muted);
    overflow-wrap: anywhere;
}
.variant-options-section {
    scroll-margin-top: 120px;
}
.variant-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(210,224,86,0.22);
    color: #111;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}
.variant-options-list {
    display: grid;
    gap: 12px;
    min-width: 0;
}
.variant-option {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.08);
    box-shadow: 0 12px 30px rgba(17,17,17,0.04);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    max-width: 100%;
    min-width: 0;
}
.variant-option.is-clickable {
    cursor: pointer;
}
.variant-option.is-clickable:hover {
    border-color: rgba(17,17,17,0.18);
    box-shadow: 0 16px 36px rgba(17,17,17,0.08);
    transform: translateY(-1px);
}
.variant-option.is-clickable:focus-visible {
    outline: 3px solid rgba(210,224,86,0.72);
    outline-offset: 3px;
}
.variant-option.is-selected {
    border-color: rgba(210,224,86,0.95);
    box-shadow: 0 0 0 3px rgba(210,224,86,0.18), 0 14px 34px rgba(17,17,17,0.05);
}
.variant-option-thumb {
    width: 112px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: #f0f1f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.variant-option-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.variant-option-thumb.is-placeholder img {
    width: 56%;
    height: 56%;
    object-fit: contain;
}
.variant-option-main {
    min-width: 0;
}
.variant-option-title {
    color: #111;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}
.variant-option-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.35;
    min-width: 0;
}
.variant-option-meta span {
    min-width: 0;
    overflow-wrap: anywhere;
}
.variant-option-meta strong {
    color: #222832;
    font-weight: 800;
    overflow-wrap: anywhere;
}
.variant-option-delivery-date {
    border-bottom: 2px solid var(--oev-lime);
    line-height: 1.15;
}
.variant-option-price {
    color: #111;
    font-size: 22px;
    font-weight: 850;
    white-space: nowrap;
}
.variant-option-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.variant-option.is-clickable:hover .variant-option-action,
.variant-option.is-clickable:focus-visible .variant-option-action {
    background: var(--oev-lime);
    color: #111;
    transform: translateY(-1px);
}
.variant-option-action.is-current {
    background: #eef1f5;
    color: #4f5662;
    cursor: default;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    min-width: 0;
}
.vehicle-products-page {
    padding-top: 40px;
    padding-bottom: 70px;
}
.vehicle-products-results {
    margin-top: 28px;
}
.vehicle-category-filter {
    display: block;
    color: #6d7480;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    min-width: min(320px, 100%);
}
.vehicle-category-select-wrap {
    position: relative;
    display: block;
    color: #111;
}
.vehicle-category-select-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: #252918;
    font-size: 14px;
    pointer-events: none;
}
.vehicle-category-select-wrap::after {
    content: "\f078";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #252918;
    font-size: 12px;
    pointer-events: none;
}
.vehicle-category-select-wrap select {
    width: 100%;
    min-height: 46px;
    appearance: none;
    border: 1px solid rgba(17,17,17,0.1);
    border-radius: 999px;
    background: #fff;
    color: #20242c;
    box-shadow: 0 12px 28px rgba(17,17,17,0.05);
    padding: 0 42px 0 42px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.vehicle-category-select-wrap select:hover,
.vehicle-category-select-wrap select:focus-visible {
    border-color: rgba(210,224,86,0.95);
    box-shadow: 0 16px 34px rgba(17,17,17,0.08), 0 0 0 3px rgba(210,224,86,0.16);
}
.vehicle-category-select-wrap select:focus-visible {
    outline: none;
}
.vehicle-products-filter-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 28px;
    border-radius: 24px;
    border: 1px dashed rgba(17,17,17,0.14);
    background: rgba(255,255,255,0.74);
    color: #68707d;
    text-align: center;
}
.vehicle-products-filter-empty[hidden] {
    display: none;
}
.vehicle-products-filter-empty i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(210,224,86,0.24);
    color: #252918;
}
.vehicle-products-filter-empty h3 {
    color: #111;
    font-size: 18px;
    margin: 0;
}
.vehicle-products-filter-empty p {
    margin: 0;
}
.vehicle-products-results .related-grid .product-card[hidden] {
    display: none;
}
.vehicle-details-section {
    margin-top: 20px;
    border-radius: 26px;
}
.vehicle-details-section .product-details-head {
    margin-bottom: 8px;
}
.vehicle-details-section .product-details-head h2 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
}
.vehicle-details-section .product-details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vehicle-details-section .product-detail-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 0;
}
.vehicle-details-section .product-detail-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 14px;
}
.vehicle-details-section .product-detail-item dd {
    font-size: 16px;
}
.vehicle-products-empty {
    display: grid;
    justify-items: start;
    gap: 12px;
    margin-top: 28px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(17,17,17,0.08);
    background: #fff;
    box-shadow: 0 16px 44px rgba(17,17,17,0.05);
}
.vehicle-products-empty > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(210,224,86,0.24);
    color: #252918;
    font-size: 18px;
}
.vehicle-products-empty h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
}
.vehicle-products-empty p {
    max-width: 640px;
    color: #656d78;
    font-size: 16px;
    line-height: 1.55;
}
.product-context-loader,
.product-context-sections {
    display: grid;
    gap: 28px;
    margin-top: 28px;
}
.product-context-loader > .related-section:first-child,
.product-context-sections > .related-section:first-child {
    margin-top: 0;
}
.product-context-sections .related-section + .related-section {
    margin-top: 0;
}
.product-context-sections > .related-section:not(.variant-options-section) .section-head {
    margin-bottom: 14px;
}
.product-context-sections > .related-section:not(.variant-options-section) .section-head h2 {
    font-size: clamp(1.65rem, 2.35vw, 2.15rem);
}
.related-section.is-loading {
    pointer-events: none;
}
.skeleton-card {
    overflow: hidden;
}
.skeleton-line,
.skeleton-pill,
.skeleton-box,
.skeleton-price {
    display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, #eef0f3 0%, #f8f9fb 45%, #eef0f3 90%);
    background-size: 220% 100%;
    animation: oev-skeleton-shimmer 1.25s ease-in-out infinite;
}
.skeleton-title {
    width: min(360px, 72%);
    height: 24px;
    margin-bottom: 10px;
}
.skeleton-text {
    width: min(460px, 88%);
    height: 14px;
}
.skeleton-text.short {
    width: 46%;
}
.skeleton-pill {
    width: 96px;
    height: 34px;
}
.skeleton-box {
    border-radius: 18px;
}
.variant-option .skeleton-box {
    width: 112px;
    aspect-ratio: 4 / 3;
}
.variant-option .skeleton-price {
    width: 96px;
    height: 26px;
}
.product-card.skeleton-card {
    min-height: 404px;
}
.product-card .skeleton-box {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}
.product-card .skeleton-line {
    margin-bottom: 12px;
}
.product-context-loader.has-error .related-section.is-loading {
    display: none;
}
@keyframes oev-skeleton-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(17,17,17,0.05);
}
.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.product-card-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 5;
    border-radius: inherit;
}
.product-card-link:focus-visible {
    outline: 2px solid var(--oev-lime);
    outline-offset: -2px;
}
.badge-tag {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 3;
    background: var(--oev-lime);
    color: var(--oev-black);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(17,17,17,0.14);
}
.badge-tag.out-of-stock { background: var(--oev-black); color: #fff; }
.product-img {
    width: 100%;
    height: 220px;
    background: #f0f0f1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 2;
}
.product-info h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: calc(1.18em * 2);
    margin-bottom: 8px;
}
.part-number-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4f5662;
}
.part-number-line span {
    flex: 0 0 auto;
    white-space: nowrap;
}
.part-number-line strong {
    display: block;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    min-height: 22px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eef1f5;
    color: #1a1d23;
    font-size: 12px;
    line-height: 1.08;
    letter-spacing: 0.4px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
}
.product-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; min-height: 64px; }
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.product-footer .price {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 800;
    line-height: 1.08;
    white-space: nowrap;
}
.add-btn {
    flex: 0 0 auto;
    background: var(--text-dark);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    position: relative;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.add-btn:hover { background: var(--oev-lime); color: var(--oev-black); transform: scale(1.05); }
.add-btn:disabled,
.add-btn.is-disabled {
    background: #eef1f5;
    color: #7b838f;
    cursor: not-allowed;
}
.add-btn:disabled:hover,
.add-btn.is-disabled:hover {
    background: #eef1f5;
    color: #7b838f;
    transform: none;
}

.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%) translateY(12px) scale(0.96);
    background: rgba(17,17,17,0.94);
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 2200;
}
.cart-toast i { color: var(--oev-lime); font-size: 14px; }
.cart-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(12,12,14,0.92);
    padding: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    touch-action: pan-y;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-close,
.gallery-lightbox-nav {
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover { background: rgba(255,255,255,0.24); }
.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
}
.gallery-lightbox-stage {
    width: min(1100px, calc(100vw - 176px));
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}
.gallery-lightbox-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: calc(100vh - 126px);
    position: relative;
}
.gallery-lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 126px);
    object-fit: contain;
    border-radius: 20px;
    background: #15161a;
    transition: opacity 0.18s ease, transform 0.18s ease;
    will-change: opacity, transform;
}
.gallery-lightbox-image.is-entering-next {
    opacity: 0.78;
    transform: translateX(14px) scale(0.995);
}
.gallery-lightbox-image.is-entering-prev {
    opacity: 0.78;
    transform: translateX(-14px) scale(0.995);
}
.gallery-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 54px;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.gallery-lightbox-caption {
    width: min(620px, calc(100% - 32px));
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.not-found-card {
    padding: 36px;
    display: grid;
    gap: 18px;
}
.not-found-card h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -1.2px;
}
.not-found-card p {
    max-width: 760px;
    color: #5f6672;
    line-height: 1.7;
}

footer { padding: 60px 20px 40px; }
.footer-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.footer-logo-col p { color: var(--text-muted); font-size: 14px; margin-top: 15px; max-width: 250px; line-height: 1.5; }
.footer-links { display: flex; gap: 80px; }
.footer-col h5 { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: var(--text-dark); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--oev-lime); }
.footer-bottom { text-align: center; margin-top: 40px; color: #aaa; font-size: 13px; font-weight: 500; }

@media (max-width: 1080px) {
    .product-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "summary"
            "gallery"
            "meta";
    }
    .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vehicle-details-section .product-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-assurance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .assurance-item:nth-child(2) { border-right: 0; }
    .assurance-item:nth-child(1),
    .assurance-item:nth-child(2) { border-bottom: 1px solid rgba(17,17,17,0.08); }
    .assurance-item:nth-child(3) { border-right: 1px solid rgba(17,17,17,0.08); }
}
@media (max-width: 900px) {
    .top-nav-shell { padding: 0 0 10px; }
    .top-nav {
        width: calc(100% - 20px);
        margin: 12px auto 0;
        padding: 10px 14px;
        border-radius: 40px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
    .nav-links, .nav-icons { display: none; }
    .mobile-menu-btn { display: inline-flex; }
    .product-floating-actions {
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        min-height: 52px;
        max-width: calc(100% - 24px);
        padding: 5px;
    }
    .sticky-cart {
        height: 42px;
        min-width: 42px;
        padding: 0 12px;
    }
    .sticky-cart-label {
        font-size: 12px;
    }
    .sticky-cart .cart-count {
        top: -6px;
        right: -6px;
        min-width: 19px;
        height: 19px;
        border-width: 2px;
        border-color: rgba(255,255,255,0.58);
        font-size: 10px;
    }
    .gallery-panel {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }
    .gallery-thumbs { display: none; }
    .gallery-stage-action { display: inline-flex; }
    .product-assurance-grid { grid-template-columns: 1fr; }
    .assurance-item,
    .assurance-contact {
        border-right: 0;
        border-bottom: 1px solid rgba(17,17,17,0.08);
    }
    .assurance-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .assurance-contact-text {
        text-align: center;
    }
    .footer-card { flex-direction: column; gap: 26px; padding: 36px 22px; }
    .footer-links { flex-direction: column; gap: 28px; }
    .section-head { flex-direction: column; align-items: start; }
    .variant-count-pill { align-self: flex-start; }
    .variant-option {
        grid-template-columns: 96px minmax(0, 1fr) auto;
    }
    .variant-option-thumb {
        width: 96px;
    }
    .variant-option-action {
        grid-column: 2 / -1;
        justify-self: start;
    }
}
@media (max-width: 720px) {
    .breadcrumb {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 7px;
        font-size: 13px;
        margin-bottom: 14px;
        min-width: 0;
    }
    .breadcrumb-category-desktop {
        display: none;
    }
    .breadcrumb > .breadcrumb-link:first-child {
        flex: 0 0 auto;
    }
    .breadcrumb-overflow {
        display: block;
        flex: 0 0 auto;
    }
    .breadcrumb-current {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .breadcrumb-overflow-menu {
        left: 0;
        transform: none;
    }
    .breadcrumb-overflow-menu::before {
        left: 18px;
        transform: rotate(45deg);
    }
    .product-layout { padding: 18px; gap: 20px; }
    .summary-content { padding: 22px 22px 20px; }
    .purchase-box { padding: 20px 22px; flex-direction: column; align-items: stretch; }
    .add-main-btn { width: 100%; justify-content: center; }
    .purchase-info-card { padding: 16px; border-radius: 22px; }
    .purchase-info-row {
        grid-template-columns: 28px minmax(0, 1fr) 26px;
        gap: 12px;
        align-items: start;
    }
    .purchase-info-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-top: 1px;
    }
    .purchase-info-row p { font-size: 14px; }
    .gallery-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-details-section {
        margin-top: 20px;
        padding: 20px;
        border-radius: 24px;
    }
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .product-detail-item {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 11px;
        padding: 14px 0;
    }
    .product-detail-icon {
        width: 36px;
        height: 36px;
        border-radius: 13px;
        font-size: 14px;
    }
    .product-detail-item dd {
        font-size: 16px;
    }
    .product-details-action {
        padding-top: 16px;
    }
    .product-details-vehicle-link {
        width: 100%;
        min-height: 50px;
        padding: 0 16px;
        text-align: center;
    }
    .product-faq-section {
        margin-top: 20px;
        padding: 20px;
        border-radius: 24px;
    }
    .product-context-loader,
    .product-context-sections {
        margin-top: 20px;
        gap: 20px;
    }
    .product-faq-list {
        gap: 8px;
    }
    .product-faq-item,
    .product-faq-item summary:focus-visible {
        border-radius: 16px;
    }
    .product-faq-item summary {
        grid-template-columns: minmax(0, 1fr) 32px;
        min-height: 56px;
        padding: 13px 14px 13px 16px;
    }
    .product-faq-toggle {
        width: 32px;
        height: 32px;
        border-radius: 11px;
    }
    .product-faq-answer {
        padding: 0 16px 16px;
    }
    .vehicle-products-page {
        padding-top: 22px;
        padding-bottom: 56px;
    }
    .vehicle-products-empty {
        padding: 22px;
        border-radius: 24px;
    }
    .vehicle-category-filter {
        width: 100%;
        min-width: 0;
    }
    .vehicle-category-select-wrap select {
        min-height: 48px;
        font-size: 13px;
    }
    .vehicle-products-filter-empty {
        padding: 22px;
        border-radius: 20px;
    }
    .vehicle-details-section {
        margin-top: 16px;
    }
    .vehicle-details-section .product-details-grid {
        grid-template-columns: 1fr;
    }
    .variant-options-list {
        gap: 10px;
    }
    .variant-option {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 22px;
        align-items: start;
    }
    .variant-option-thumb {
        width: 82px;
        border-radius: 16px;
    }
    .variant-option-title {
        font-size: 15px;
    }
    .variant-option-meta {
        font-size: 12px;
    }
    .variant-option-price,
    .variant-option-action {
        grid-column: 1 / -1;
    }
    .variant-option-price {
        font-size: 20px;
        line-height: 1.1;
    }
    .variant-option-action {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }
    .related-section {
        margin-left: 0;
        margin-right: 0;
    }
    .related-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, calc(100% - 44px));
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding: 0 0 6px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .related-grid::-webkit-scrollbar {
        display: none;
    }
    .related-grid .product-card {
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    .vehicle-products-results .related-grid {
        grid-auto-flow: row;
        grid-auto-columns: initial;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow-x: visible;
        overscroll-behavior-x: auto;
        padding: 0;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: auto;
    }
    .vehicle-products-results .related-grid .product-card {
        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px;
        align-items: stretch;
        padding: 12px;
        border-radius: 20px;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }
    .vehicle-products-results .product-card:hover {
        transform: none;
    }
    .vehicle-products-results .product-img {
        width: 104px;
        height: 104px;
        margin-bottom: 0;
        border-radius: 14px;
    }
    .vehicle-products-results .product-img.is-placeholder {
        padding: 14px;
    }
    .vehicle-products-results .product-img.is-placeholder .product-placeholder-logo {
        width: 100%;
        max-width: 72px;
    }
    .vehicle-products-results .badge-tag {
        top: 10px;
        left: 10px;
        font-size: 10px;
        padding: 5px 10px;
    }
    .vehicle-products-results .product-info {
        display: flex;
        flex-direction: column;
        min-width: 0;
        min-height: 104px;
        justify-content: space-between;
    }
    .vehicle-products-results .product-info h3 {
        font-size: 16px;
        line-height: 1.18;
        min-height: calc(1.18em * 2);
        margin-bottom: 6px;
    }
    .vehicle-products-results .part-number-line {
        margin-bottom: 8px;
        font-size: 10px;
        gap: 6px;
    }
    .vehicle-products-results .part-number-line strong {
        min-height: 20px;
        padding: 4px 8px;
        font-size: 11px;
        line-height: 1.1;
    }
    .vehicle-products-results .product-footer {
        margin-top: auto;
    }
    .vehicle-products-results .price {
        font-size: 18px;
    }
    .vehicle-products-results .add-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .gallery-lightbox {
        padding: 0;
        gap: 0;
        display: none;
        align-items: stretch;
        justify-content: stretch;
        overflow: hidden;
        width: 100%;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
    }
    .gallery-lightbox.open {
        display: block;
    }
    .gallery-lightbox-stage {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        max-height: none;
        display: block;
        padding: 0;
        overflow: hidden;
    }
    .gallery-lightbox-image-wrap {
        position: absolute;
        top: 0;
        right: 0;
        bottom: calc(52px + env(safe-area-inset-bottom, 0px));
        left: 0;
        width: 100%;
        height: auto;
        max-height: none;
    }
    .gallery-lightbox-image {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        max-height: 100svh;
        max-height: 100dvh;
        border-radius: 0;
        object-fit: contain;
    }
    .gallery-lightbox-counter {
        bottom: 14px;
    }
    .gallery-lightbox-caption {
        position: absolute;
        right: 42px;
        bottom: calc(17px + env(safe-area-inset-bottom, 0px));
        left: 42px;
        width: auto;
        min-height: 18px;
        color: rgba(255,255,255,0.82);
        z-index: 2;
    }
    .gallery-lightbox-close,
    .gallery-lightbox-nav {
        width: 42px;
        height: 42px;
    }
    .gallery-lightbox-close {
        top: max(12px, env(safe-area-inset-top, 0px));
        right: max(12px, env(safe-area-inset-right, 0px));
        background: rgba(17,17,17,0.42);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        transform: translateY(-50%);
        background: rgba(17,17,17,0.42);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
    #product-gallery-lightbox-prev { left: max(10px, env(safe-area-inset-left, 0px)); }
    #product-gallery-lightbox-next { right: max(10px, env(safe-area-inset-right, 0px)); }
}
@media (max-width: 380px) {
    .vehicle-products-results .related-grid .product-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }
    .vehicle-products-results .product-img {
        width: 92px;
        height: 92px;
    }
    .vehicle-products-results .product-info {
        min-height: 92px;
    }
}
@media (max-width: 540px) {
    .gallery-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .summary-top h1 { font-size: 1.75rem; line-height: 1.12; }
}

.gallery-stage.is-empty { cursor: default; }
.support-email-link { color: inherit; text-decoration: none; }
