/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-sddlwqeshd] {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    background: transparent !important; /* Override bootstrap background to show transition layer */
}

.background-transition-layer[b-sddlwqeshd] {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100%;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    z-index: -1;
    background: radial-gradient(circle at center, #1c1c1c 0%, #0a0a0a 100%);
    transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background-image 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    will-change: background-color, background-image, background;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Follow html[data-theme] — not server SSR — so enhanced navigation keeps the user preference */
/* Do not wrap in :global() — it is left literal in the built CSS and never matches. */
html[data-theme="light"] .background-transition-layer[b-sddlwqeshd] {
    background: radial-gradient(circle at center, #f0f0f0 0%, #ffffff 100%);
}

main[b-sddlwqeshd] {
    flex: 1;
    padding-bottom: 48px;
    max-width: 100%;
}

article[b-sddlwqeshd] {
    max-width: 100%;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.sidebar[b-sddlwqeshd] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-sddlwqeshd] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-sddlwqeshd]  a, .top-row[b-sddlwqeshd]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-sddlwqeshd]  a:hover, .top-row[b-sddlwqeshd]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-sddlwqeshd]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-sddlwqeshd] {
        justify-content: space-between;
    }

        .top-row[b-sddlwqeshd]  a, .top-row[b-sddlwqeshd]  .btn-link {
            margin-left: 0;
        }
}

/*@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
*/
#blazor-error-ui[b-sddlwqeshd] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-sddlwqeshd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Page slide animations */
.page-content-wrapper[b-sddlwqeshd] {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    will-change: transform, opacity;
    /* No default transition - transitions are applied only when animation classes are active */
}

/* Hide content only during active navigation when slide-in class hasn't been applied yet */
/* This prevents flash before animation begins, but allows content to show after animations complete */
/* We use a data attribute to track navigation state since we can't use C# variables in CSS */
.page-content-wrapper[data-navigating="true"]:not(.slide-in-left):not(.slide-in-right):not(.slide-in-up):not(.fade-in)[b-sddlwqeshd] {
    opacity: 0;
    visibility: hidden;
}

/* Slide out animations - Modern 3D card push effect */
.page-content-wrapper.slide-out-left[b-sddlwqeshd] {
    transform: translate3d(-80%, 0, -30px) scale(0.98);
    opacity: 0;
    transform-origin: left center;
    transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
}

.page-content-wrapper.slide-out-right[b-sddlwqeshd] {
    transform: translate3d(80%, 0, -30px) scale(0.98);
    opacity: 0;
    transform-origin: right center;
    transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.3);
}

.page-content-wrapper.slide-out-up[b-sddlwqeshd] {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    transform-origin: top center;
    transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Slide in animations - Modern 3D card push effect */
.page-content-wrapper.slide-in-left[b-sddlwqeshd] {
    transform: translate3d(80%, 0, -30px) scale(0.98);
    opacity: 0;
    transform-origin: right center;
    animation: slideInFromRight-b-sddlwqeshd 0.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.page-content-wrapper.slide-in-right[b-sddlwqeshd] {
    transform: translate3d(-80%, 0, -30px) scale(0.98);
    opacity: 0;
    transform-origin: left center;
    animation: slideInFromLeft-b-sddlwqeshd 0.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.page-content-wrapper.slide-in-up[b-sddlwqeshd] {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
    transform-origin: bottom center;
    animation: slideInFromBottom-b-sddlwqeshd 0.2s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* Keyframe animations - Modern 3D card push effect */
@keyframes slideInFromLeft-b-sddlwqeshd {
    from {
        transform: translate3d(-80%, 0, -30px) scale(0.98);
        opacity: 0;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
    }
    to {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes slideInFromRight-b-sddlwqeshd {
    from {
        transform: translate3d(80%, 0, -30px) scale(0.98);
        opacity: 0;
        box-shadow: 20px 0 40px rgba(0, 0, 0, 0.3);
    }
    to {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes slideInFromBottom-b-sddlwqeshd {
    from {
        transform: translate3d(0, 100%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* Fade animations - Keep for home page */
.page-content-wrapper.fade-out[b-sddlwqeshd] {
    animation: fadeOut-b-sddlwqeshd 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.page-content-wrapper.fade-in[b-sddlwqeshd] {
    opacity: 0;
    animation: fadeIn-b-sddlwqeshd 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes fadeOut-b-sddlwqeshd {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Skip Navigation Links */
.skip-links[b-sddlwqeshd] {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 1000;
}

.skip-link[b-sddlwqeshd] {
    position: absolute;
    top: -40px;
    left: 0;
    background: #F58220;
    color: var(--text-primary);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s, opacity 0.3s;
    opacity: 0; /* Hide when not focused */
    pointer-events: none; /* Prevent interaction when hidden */
}

.skip-link:focus[b-sddlwqeshd] {
    top: 0;
    opacity: 1; /* Show when focused */
    pointer-events: auto;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

@keyframes fadeIn-b-sddlwqeshd {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Checkout: site nav stays (like vehicleselect); no footer */
.page.page--checkout main#main-content[b-sddlwqeshd] {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
}

/* Vehicle finder: overlay-style (site nav stays; no footer) */
.page.page--vehicleselect main#main-content[b-sddlwqeshd] {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
    min-height: 100dvh;
}

.page.page--vehicleselect .page-content-wrapper[b-sddlwqeshd] {
    min-height: auto;
    overflow: visible;
}

/* Battery page accents (uses --battery-accent from #app-page-root) */
.page.page--battery[b-sddlwqeshd] (.battery-footer .footer-div) {
    border-top: 2px solid color-mix(in srgb, var(--battery-accent, #333333) 34%, transparent);
}

.page.page--battery[b-sddlwqeshd] (.other-battery-sizes--panel) {
    border-top: 3px solid color-mix(in srgb, var(--battery-accent, #333333) 40%, transparent);
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-y99xix1h6e] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none;
    z-index: 1000;
}

/* Inner content */
.navbar-inner[b-y99xix1h6e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    position: relative; /* Ensure overlay can be positioned relative to this */
}

/* Finder/checkout: keep the same bar, hide interactive chrome, show close */
.navbar--finder .navbar-search-container[b-y99xix1h6e],
.navbar--finder .navbar-search-button[b-y99xix1h6e],
.navbar--finder .navbar-menu[b-y99xix1h6e],
.navbar--finder .menu-toggle[b-y99xix1h6e],
.navbar--finder .menu-button[b-y99xix1h6e],
.navbar--finder .overlay[b-y99xix1h6e],
.navbar--finder .sidebar[b-y99xix1h6e],
.navbar--finder .navbar-search-container-mobile[b-y99xix1h6e] {
    display: none !important;
}

.navbar-finder-close[b-y99xix1h6e] {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    color: var(--nav-text);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    /* Trailing edge of the same navbar row */
    margin-inline-start: auto;
    flex-shrink: 0;
}

.navbar-finder-close:hover[b-y99xix1h6e],
.navbar-finder-close:focus-visible[b-y99xix1h6e] {
    color: #62be28;
}

.navbar-finder-close:focus-visible[b-y99xix1h6e] {
    outline: 2px solid #62be28;
    outline-offset: 2px;
    border-radius: 4px;
}

.navbar-finder-close-icon[b-y99xix1h6e] {
    width: 30px;
    height: 3px;
    background-color: currentColor;
    border-radius: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1.5px;
    margin-left: -15px;
}

.navbar-finder-close-icon:nth-child(1)[b-y99xix1h6e] {
    transform: rotate(45deg);
}

.navbar-finder-close-icon:nth-child(2)[b-y99xix1h6e] {
    opacity: 0;
}

.navbar-finder-close-icon:nth-child(3)[b-y99xix1h6e] {
    transform: rotate(-45deg);
}

.navbar-logo[b-y99xix1h6e],
.navbar-logo .logo[b-y99xix1h6e],
.navbar-menu[b-y99xix1h6e],
.navbar-menu > *[b-y99xix1h6e],
.navbar-menu a[b-y99xix1h6e],
.menu-button[b-y99xix1h6e],
.menu-button .menu-icon[b-y99xix1h6e],
.navbar-search-button[b-y99xix1h6e],
.navbar-search-button svg[b-y99xix1h6e] {
    opacity: 1;
    filter: none;
}

/* Logo Styling */
.navbar-logo .logo[b-y99xix1h6e] {
    height: 50px;
    width: auto;
}

/* Desktop Menu */
.navbar-menu[b-y99xix1h6e] {
    display: flex; /* Ensure it shows as flex on desktop */
    gap: 20px;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: var(--nav-text);
    transition: color 0.3s ease;
}

.navbar-link[b-y99xix1h6e] {
    text-decoration: none;
    color: var(--nav-text);
    transition: color 0.3s ease;
    padding: 8px 12px; /* Better touch target */
    border-radius: 4px;
    display: inline-block;
    min-height: 44px; /* Minimum touch target */
    line-height: 28px; /* Vertical centering */
}

    .navbar-link:hover[b-y99xix1h6e] {
        color: #4A90E2;
        background-color: color-mix(in srgb, var(--nav-text) 10%, transparent);
    }

    .navbar-link:focus-visible[b-y99xix1h6e] {
        outline: 2px solid var(--nav-text);
        outline-offset: 2px;
        color: #4A90E2;
    }

/* Search Container - Desktop */
.navbar-search-container[b-y99xix1h6e] {
    display: flex;
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    position: relative;
}

.navbar-search-input[b-y99xix1h6e] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    background-color: color-mix(in srgb, var(--nav-text) 8%, transparent);
    color: var(--nav-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-search-input[b-y99xix1h6e]::placeholder {
    color: var(--text-muted);
}

.navbar-search-input:focus[b-y99xix1h6e] {
    outline: none;
    border-color: color-mix(in srgb, var(--nav-text) 45%, transparent);
    background-color: color-mix(in srgb, var(--nav-text) 14%, transparent);
    color: var(--nav-text);
}

/* Search Overlay - Desktop - removed, using JavaScript click handler instead */

/* Search Results Dropdown - Desktop */
.navbar-search-results[b-y99xix1h6e] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background-color: var(--nav-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 2000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.search-result-item[b-y99xix1h6e] {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-item:last-child[b-y99xix1h6e] {
    border-bottom: none;
}

.search-result-item:hover[b-y99xix1h6e] {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-result-item-highlighted[b-y99xix1h6e] {
    background-color: rgba(255, 255, 255, 0.2) !important;
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: -2px;
}

.search-result-footer[b-y99xix1h6e] {
    padding: 12px 16px;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-loading[b-y99xix1h6e],
.search-no-results[b-y99xix1h6e] {
    padding: 12px 16px;
    color: var(--text-muted);
    text-align: center;
}

/* Mobile/Tablet Search Button (Magnifying Glass) */
.navbar-search-button[b-y99xix1h6e] {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--nav-text);
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
}

.navbar-search-button:hover[b-y99xix1h6e] {
    opacity: 0.8;
}

.navbar-search-button:focus-visible[b-y99xix1h6e] {
    outline: 2px solid var(--nav-text);
    outline-offset: 2px;
    border-radius: 4px;
}

.navbar-search-button svg[b-y99xix1h6e] {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Mobile Search Container */
.navbar-search-container-mobile[b-y99xix1h6e] {
    display: none;
    width: 100%;
    position: relative;
    align-items: center;
    gap: 8px;
    flex: 1;
    z-index: 1999; /* Above overlay so clicks on input don't close search */
    pointer-events: auto; /* Ensure it can receive clicks */
}

.navbar-search-input-mobile[b-y99xix1h6e] {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    background-color: color-mix(in srgb, var(--nav-text) 8%, transparent);
    color: var(--nav-text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar-search-input-mobile[b-y99xix1h6e]::placeholder {
    color: var(--text-muted);
}

.navbar-search-input-mobile:focus[b-y99xix1h6e] {
    outline: none;
    border-color: color-mix(in srgb, var(--nav-text) 45%, transparent);
    background-color: color-mix(in srgb, var(--nav-text) 14%, transparent);
    color: var(--nav-text);
}

.navbar-search-close[b-y99xix1h6e] {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--nav-text);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.navbar-search-close svg[b-y99xix1h6e] {
    width: 24px;
    height: 24px;
}

/* Mobile Search Overlay - removed, using JavaScript click handler instead */

/* Mobile Search Results */
.navbar-search-results-mobile[b-y99xix1h6e] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background-color: var(--nav-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 2000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Search Expanded State */
.navbar-search-expanded[b-y99xix1h6e] {
    position: relative;
    z-index: 2000; /* Higher z-index when search is expanded to ensure overlay is clickable */
}

.navbar-search-expanded .navbar-logo[b-y99xix1h6e],
.navbar-search-expanded .navbar-menu[b-y99xix1h6e],
.navbar-search-expanded .menu-button[b-y99xix1h6e],
.navbar-search-expanded .menu-toggle[b-y99xix1h6e],
.navbar-search-expanded .navbar-search-container[b-y99xix1h6e],
.navbar-search-expanded .navbar-search-button[b-y99xix1h6e] {
    display: none !important;
}

.navbar-search-expanded .navbar-search-container-mobile[b-y99xix1h6e] {
    display: flex !important;
}

/* Desktop: Show search container, hide magnifying glass button and mobile search */
@media (min-width: 1025px) {
    .navbar-search-container[b-y99xix1h6e] {
        display: flex;
    }
    
    .navbar-search-button[b-y99xix1h6e] {
        display: none;
    }
    
    .navbar-search-container-mobile[b-y99xix1h6e] {
        display: none !important; /* Never show mobile search on desktop */
    }
}

/* Hide Desktop Search Input on Tablet and Mobile - Show Magnifying Glass */
@media (max-width: 1024px) {
    /* Hide desktop search input */
    .navbar-search-container[b-y99xix1h6e] {
        display: none;
    }

    /* Show magnifying glass button */
    .navbar-search-button[b-y99xix1h6e] {
        display: flex;
    }
}

/* Tablet specific adjustments (between 769px and 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-inner[b-y99xix1h6e] {
        justify-content: flex-start;
    }

    .navbar-logo[b-y99xix1h6e] {
        order: 1;
        flex-shrink: 0;
    }

    .navbar-search-button[b-y99xix1h6e] {
        display: flex;
        order: 2;
        margin-left: auto;
        margin-right: 4px;
    }

    .navbar-menu[b-y99xix1h6e] {
        order: 3;
        flex-shrink: 0;
        margin-left: 0;
    }

    /* Finder/checkout chrome: logo left, close right (no search/menu in this mode) */
    .navbar--finder .navbar-finder-close[b-y99xix1h6e] {
        order: 2;
        margin-inline-start: auto;
        margin-inline-end: 0;
    }
}

/* Hide Desktop Menu on Mobile */
@media (max-width: 768px) {
    .navbar-menu[b-y99xix1h6e] {
        display: none;
    }

    .navbar-search-container-mobile[b-y99xix1h6e] {
        display: flex;
    }
    
    /* On mobile, position search button next to hamburger menu on the right */
    .navbar-inner[b-y99xix1h6e] {
        justify-content: space-between;
    }
    
    /* Create a container for search button and hamburger menu on mobile */
    .navbar-search-button[b-y99xix1h6e] {
        order: 2; /* Place search button before hamburger menu */
        margin-left: auto;
        margin-right: 8px;
        display: flex; /* Ensure it's visible on mobile */
    }
    
    .menu-button[b-y99xix1h6e] {
        order: 3; /* Place hamburger menu after search button */
    }
}

/* Mobile Menu Toggle */
.menu-toggle[b-y99xix1h6e] {
    display: none;
}

.menu-button[b-y99xix1h6e] {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: center; /* Centers lines in the button */
    align-items: center;
    width: 44px; /* Minimum touch target size */
    height: 44px; /* Minimum touch target size */
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: 1100;
    background: none;
    border: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation;
}

.menu-button:focus-visible[b-y99xix1h6e] {
    outline: 2px solid var(--nav-text);
    outline-offset: 2px;
    border-radius: 4px;
}

.menu-icon[b-y99xix1h6e] {
    width: 30px;
    height: 3px;
    background-color: var(--nav-text);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
}

    /* Top Line */
    .menu-icon:nth-child(1)[b-y99xix1h6e] {
        transform-origin: center;
        top: 10px; /* Positioned near the top */
    }

.menu-toggle:checked ~ .menu-button .menu-icon:nth-child(1)[b-y99xix1h6e] {
    transform: rotate(45deg); /* Rotate to form the top half of the X */
    top: 17px; /* Move to center */
}

/* Middle Line (Hidden when active) */
.menu-icon:nth-child(2)[b-y99xix1h6e] {
    transform-origin: center;
    top: 17px; /* Center the middle line */
}

.menu-toggle:checked ~ .menu-button .menu-icon:nth-child(2)[b-y99xix1h6e] {
    opacity: 0; /* Hide the middle line */
}

/* Bottom Line */
.menu-icon:nth-child(3)[b-y99xix1h6e] {
    transform-origin: center;
    top: 24px; /* Positioned near the bottom */
}

.menu-toggle:checked ~ .menu-button .menu-icon:nth-child(3)[b-y99xix1h6e] {
    transform: rotate(-45deg); /* Rotate to form the bottom half of the X */
    top: 17px; /* Move to center */
}

/* Show Menu Button on Mobile */
@media (max-width: 768px) {
    .menu-button[b-y99xix1h6e] {
        display: flex;
    }

    .navbar-logo .logo[b-y99xix1h6e] {
        height: 40px; /* scale logo down a bit on small screens */
    }
    
    /* Ensure logo stays on the left */
    .navbar-logo[b-y99xix1h6e] {
        order: 1;
        flex-shrink: 0;
    }
    
    /* Ensure search button and hamburger are on the right, next to each other */
    .navbar-search-button[b-y99xix1h6e],
    .menu-button[b-y99xix1h6e] {
        flex-shrink: 0;
        display: flex !important;
    }
    
    /* Create a right-side container effect for search and menu */
    .navbar-search-button[b-y99xix1h6e] {
        margin-right: 8px; /* Space between magnifying glass and hamburger */
    }
    
    .menu-button[b-y99xix1h6e] {
        margin-right: 0; /* No margin on the rightmost element */
    }
}

/* Sidebar */
.sidebar[b-y99xix1h6e] {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden initially */
    width: 300px;
    height: 100vh;
    max-height: 100vh; /* Prevent overflow */
    background-color: var(--bg-canvas);
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto; /* Allow sidebar to scroll if content is too tall */
    overflow-x: hidden;
}
/*Hide Sidebar on Desktop*/
@media (min-width: 769px) {
    .sidebar[b-y99xix1h6e] {
        display: none;
    }

    .menu-button[b-y99xix1h6e] {
        display: none; /* Hide the menu button on larger screens */
    }

    .menu-toggle[b-y99xix1h6e] {
        display: none; /* Hide the checkbox toggle */
    }
}

/* Show Sidebar When Toggle is Checked */
.menu-toggle:checked ~ .sidebar[b-y99xix1h6e] {
    right: 0;
}

.overlay[b-y99xix1h6e] {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Changed from 100vw to prevent horizontal scroll */
    max-width: 100vw;
    height: 100vh;
    background-color: color-mix(in srgb, var(--nav-overlay) 50%, transparent);
    z-index: 900;
    cursor: pointer; /* Indicates that clicking closes the menu */
}

.menu-toggle:checked ~ .overlay[b-y99xix1h6e] {
    display: block; /* Show overlay when menu is open */
}

/* Sidebar Links */
.sidebar-menu[b-y99xix1h6e] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
}

.sidebar-link[b-y99xix1h6e] {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.sidebar-link--section[b-y99xix1h6e] {
    margin-top: 0;
    flex: 1;
    white-space: nowrap;
}

.sidebar-section[b-y99xix1h6e] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.sidebar-section-header[b-y99xix1h6e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.sidebar-section-title[b-y99xix1h6e] {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 4px;
}

.sidebar-expand-btn[b-y99xix1h6e] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sidebar-expand-btn:hover[b-y99xix1h6e] {
    background-color: color-mix(in srgb, var(--text-primary) 8%, transparent);
    border-color: color-mix(in srgb, var(--text-primary) 25%, transparent);
    color: var(--text-primary);
}

.sidebar-expand-btn:focus-visible[b-y99xix1h6e] {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

.sidebar-expand-icon[b-y99xix1h6e] {
    transition: transform 0.2s ease;
}

.sidebar-expand-icon--open[b-y99xix1h6e] {
    transform: rotate(180deg);
}

.sidebar-submenu[b-y99xix1h6e] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 12px;
    border-left: 2px solid var(--border-subtle);
    margin-left: 4px;
}

.sidebar-submenu--quick-links[b-y99xix1h6e] {
    margin-top: 0;
}

.sidebar-sublink[b-y99xix1h6e] {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.sidebar-sublink:hover[b-y99xix1h6e] {
    color: #4A90E2;
    text-decoration: underline;
}

.sidebar-sublink:focus[b-y99xix1h6e],
.sidebar-sublink:focus-visible[b-y99xix1h6e] {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
    color: #4A90E2;
    border-radius: 4px;
}

.sidebar-sublink--more[b-y99xix1h6e] {
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
}

/* Sidebar has a solid panel bg — use page text, not inherited hero nav color */
.sidebar[b-y99xix1h6e] (.theme-toggle) {
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.sidebar[b-y99xix1h6e] (.theme-toggle:hover) {
    background-color: color-mix(in srgb, var(--text-primary) 8%, transparent);
    border-color: color-mix(in srgb, var(--text-primary) 25%, transparent);
}

    /* Hover State */
    .sidebar-link:hover[b-y99xix1h6e] {
        color: #4A90E2; /* Blue color on hover */
        text-decoration: underline; /* Optional underline effect */
    }

    /* Active State */
    .sidebar-link:active[b-y99xix1h6e] {
        color: #ff9900; /* Orange color when clicked */
    }

    /* Focus State */
    .sidebar-link:focus[b-y99xix1h6e],
    .sidebar-link:focus-visible[b-y99xix1h6e] {
        outline: 2px solid #4A90E2;
        outline-offset: 2px;
        color: #4A90E2;
        background-color: color-mix(in srgb, var(--nav-text) 10%, transparent);
        border-radius: 4px;
    }

/* Light mode: dark logo on light page backgrounds */
html[data-theme="light"] .navbar-logo .logo[b-y99xix1h6e] {
    filter: brightness(0);
}

/* Homepage hero (over video): white logo + nav chrome */
html[data-theme="light"] #app-page-root.page--home .navbar[b-y99xix1h6e] {
    --nav-text: #ffffff;
}

html[data-theme="light"] #app-page-root.page--home .navbar .navbar-logo .logo[b-y99xix1h6e] {
    filter: none;
}
/* /Components/Pages/About.razor.rz.scp.css */
/* Modern About Page Styling */

/* Main Container */
.about-container[b-4q06h78rs8] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px 80px 20px;
    position: relative;
    top: 0;
    box-sizing: border-box;
    width: 100%;
}

/* Desktop: Enhanced spacing and padding */
@media (min-width: 1024px) {
    .about-container[b-4q06h78rs8] {
        padding: 50px 40px 100px 40px;
    }
}

/* Large desktop: Even more generous spacing */
@media (min-width: 1440px) {
    .about-container[b-4q06h78rs8] {
        padding: 60px 60px 120px 60px;
        max-width: 1400px;
    }
}

/* Section Layout - Hero Split */
.hero-split[b-4q06h78rs8] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    animation: fadeIn-b-4q06h78rs8 0.6s ease-out forwards;
    opacity: 0;
}

/* Fade-in animation */
@keyframes fadeIn-b-4q06h78rs8 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.hero-split:nth-child(1)[b-4q06h78rs8] {
    animation-delay: 0.1s;
}

.hero-split:nth-child(2)[b-4q06h78rs8] {
    animation-delay: 0.2s;
}

.hero-split:nth-child(3)[b-4q06h78rs8] {
    animation-delay: 0.3s;
}

.hero-split:nth-child(4)[b-4q06h78rs8] {
    animation-delay: 0.4s;
}

.hero-split:nth-child(5)[b-4q06h78rs8] {
    animation-delay: 0.5s;
}

.hero-split:nth-child(6)[b-4q06h78rs8] {
    animation-delay: 0.6s;
}

.hero-split:nth-child(7)[b-4q06h78rs8] {
    animation-delay: 0.7s;
}

/* Image sections - center images */
.hero-split:has(img):not(:has(h2)):not(:has(h3)):not(:has(p))[b-4q06h78rs8] {
    align-items: center;
    position: relative;
}

/* Desktop: Enhanced spacing */
@media (min-width: 1024px) {
    .hero-split[b-4q06h78rs8] {
        margin-bottom: 80px;
        padding-bottom: 60px;
    }
    
    /* Image-only sections - center and limit width */
    .hero-split:has(img):not(:has(h2)):not(:has(h3)):not(:has(p))[b-4q06h78rs8] {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Text sections - center and limit width for readability */
    .hero-split:has(h2):not(:has(img))[b-4q06h78rs8],
    .hero-split:has(h3):not(:has(img))[b-4q06h78rs8] {
        max-width: 800px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Image Styling */
.hero-split img[b-4q06h78rs8] {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    max-width: 100%;
    z-index: 1;
}

.hero-split img:hover[b-4q06h78rs8] {
    transform: translateY(-5px);
}

/* Typography - Headings */
.heading-19[b-4q06h78rs8] {
    color: var(--text-primary);
    margin-bottom: 24px;
    margin-top: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(24px, 3vw + 8px, 42px);
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: block;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
    hyphens: none;
    box-sizing: border-box;
}

/* Desktop: Larger heading sizes */
@media (min-width: 1024px) {
    .heading-19[b-4q06h78rs8] {
        font-size: clamp(32px, 2.5vw + 12px, 48px);
        margin-bottom: 32px;
    }
}

/* Text Content Styling - CRITICAL FIXES */
.margin-bottom-24px-3[b-4q06h78rs8] {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: clamp(16px, 1.2vw + 8px, 20px);
    line-height: 1.7;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    display: block;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Desktop: Better text readability */
@media (min-width: 1024px) {
    .margin-bottom-24px-3[b-4q06h78rs8] {
        line-height: 1.8;
        font-size: clamp(18px, 1vw + 10px, 22px);
    }
}

/* Ensure all paragraphs have proper width */
.hero-split p[b-4q06h78rs8] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box;
    display: block;
}

/* Link Styling */
.link-5[b-4q06h78rs8] {
    color: var(--color1616, #602bb6);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.link-5:hover[b-4q06h78rs8] {
    color: #7a3dd4;
    border-bottom-color: #7a3dd4;
}

/* Button Styling - Select Vehicle About */
.select-vehicle-about[b-4q06h78rs8] {
    background-color: var(--color1616, #602bb6);
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(96, 43, 182, 0.3);
    margin-top: 8px;
}

.select-vehicle-about:hover[b-4q06h78rs8] {
    color: var(--text-primary);
    background-color: #7a3dd4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 43, 182, 0.4);
}

.select-vehicle-about:active[b-4q06h78rs8] {
    background-color: #4d1f8f;
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(96, 43, 182, 0.3);
}

/* Contact Button Styling */
.btn[b-4q06h78rs8] {
    display: inline-block;
    position: relative;
    margin: 0;
    margin-top: 16px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    border: 3px solid var(--accent-color, #975CA5);
    border-radius: 50px;
    background: var(--accent-color, #975CA5);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(151, 92, 165, 0.3);
}

.btn[b-4q06h78rs8]:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    border-radius: 50px;
    background: white;
    width: 45px;
    height: 45px;
    transition: all 0.8s ease;
    z-index: 0;
}

.btn span[b-4q06h78rs8] {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.05em;
    z-index: 1;
}

.btn svg[b-4q06h78rs8] {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: white;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.5s ease;
    z-index: 1;
}

.btn:hover[b-4q06h78rs8] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 92, 165, 0.4);
}

.btn:hover[b-4q06h78rs8]:before {
    width: 100%;
    background: #1c1c1c;
}

.btn:hover svg[b-4q06h78rs8] {
    transform: translateX(0);
    transition: all 0.5s ease;
}

.btn:active[b-4q06h78rs8] {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(151, 92, 165, 0.3);
}

/* About contact toggle — summary text is not wrapped in .btn span */
.about-contact-details > summary.btn[b-4q06h78rs8] {
    color: #ffffff;
    list-style: none;
}

.about-contact-details > summary.btn[b-4q06h78rs8]::-webkit-details-marker {
    display: none;
}

html[data-theme="light"] .about-contact-details > summary.btn[b-4q06h78rs8] {
    color: #ffffff;
}

html[data-theme="light"] .about-contact-details > summary.btn:hover[b-4q06h78rs8] {
    color: var(--accent-color, #975CA5);
}

html[data-theme="light"] .about-contact-details > summary.btn:hover[b-4q06h78rs8]:before {
    background: #ffffff;
}

/* Contact Form Container */
.hero-form[b-4q06h78rs8] {
    margin-bottom: 24px;
    margin-top: 24px;
    width: 100%;
}

.hero-form-container[b-4q06h78rs8] {
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    width: 100%;
}

/* Legacy Section Classes (for compatibility) */
.guarantee-section[b-4q06h78rs8], .needs-section[b-4q06h78rs8] {
    padding-bottom: 80px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.hero-subscribe-left[b-4q06h78rs8], .journey-section[b-4q06h78rs8], .guarantee-section[b-4q06h78rs8], .needs-section[b-4q06h78rs8] {
    padding: 60px 15px;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .about-container[b-4q06h78rs8] {
        padding: 20px 15px 20px 15px;
    }
    
    .hero-split[b-4q06h78rs8] {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    
    .heading-19[b-4q06h78rs8] {
        margin-bottom: 20px;
        font-size: clamp(20px, 5vw, 28px);
        line-height: 1.4;
        overflow-wrap: break-word;
        word-break: normal;
        white-space: normal;
    }
    
    .margin-bottom-24px-3[b-4q06h78rs8] {
        margin-bottom: 20px;
    }
    
    .select-vehicle-about[b-4q06h78rs8] {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-container[b-4q06h78rs8] {
        padding: 40px 30px 80px 30px;
    }
    
    .hero-split[b-4q06h78rs8] {
        margin-bottom: 60px;
        padding-bottom: 50px;
    }
}
/* /Components/Pages/ApplePayButton.razor.rz.scp.css */
/* Apple Pay web button (Safari renders this as the native Apple Pay button) */
.apple-pay-button[b-nev327dfa5] {
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-type: buy;
    -apple-pay-button-style: white-outline; /* dark/system; light mode → black in theme-light-sections.css */
    width: 325px;
    height: 44px;
    /* Apple Pay native button supports limited styling; rounding helps match GPay */
    border-radius: 9999px;
    border: none;
    background: transparent;
}

.applepay-container[b-nev327dfa5] {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Full-width variant (Battery page) — same bundle as .apple-pay-button 325px default */
.applepay-wrap.applepay-stretch .applepay-container[b-nev327dfa5] {
    width: 100%;
    justify-content: flex-start;
}

.applepay-wrap.applepay-stretch .apple-pay-button[b-nev327dfa5] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
}

/* /Components/Pages/BackToTop.razor.rz.scp.css */
/* Back to Top — flex so label + arrow stay tight; width follows locale text. */
.topbutton[b-4d5bg142l8] {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: auto;
    height: 56px;
    overflow: hidden;
    border: none;
    color: var(--text-primary);
    background: none;
    position: relative;
    padding: 0 0.15rem 2em;
    cursor: pointer;
}

/* Stack text + clone for the slide animation; size from visible label. */
.topbutton > .text[b-4d5bg142l8],
.topbutton > .clone[b-4d5bg142l8] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    width: max-content;
    height: 1.6em;
    margin: 0;
    padding: 0;
}

.topbutton > .clone[b-4d5bg142l8] {
    position: absolute;
    left: 0.15rem;
    top: calc((100% - 2em - 1.6em) / 2);
    pointer-events: none;
}

.topbutton > svg[b-4d5bg142l8] {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    transform: rotate(-50deg);
    transition: 0.2s ease-out;
    pointer-events: none;
    align-self: center;
    /* Nudge up slightly to optically match the label (extra bottom padding on button) */
    margin-bottom: 0.15em;
}

.topbutton[b-4d5bg142l8]:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background: currentColor;
    transition: transform 0.25s ease-out;
}

.topbutton:hover[b-4d5bg142l8]:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.topbutton .clone > *[b-4d5bg142l8],
.topbutton .text > *[b-4d5bg142l8] {
    opacity: 1;
    font-size: 1.3rem;
    transition: 0.2s;
    margin-left: 4px;
}

.topbutton .text > *:first-child[b-4d5bg142l8],
.topbutton .clone > *:first-child[b-4d5bg142l8] {
    margin-left: 0;
}

.topbutton .clone > *[b-4d5bg142l8] {
    transform: translateY(60px);
}

.topbutton:hover .clone > *[b-4d5bg142l8] {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.topbutton:hover .text > *[b-4d5bg142l8] {
    opacity: 1;
    transform: translateY(-60px);
    transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.topbutton:hover .clone > :nth-child(1)[b-4d5bg142l8] {
    transition-delay: 0.15s;
}

.topbutton:hover .clone > :nth-child(2)[b-4d5bg142l8] {
    transition-delay: 0.2s;
}

.topbutton:hover .clone > :nth-child(3)[b-4d5bg142l8] {
    transition-delay: 0.25s;
}

.topbutton:hover .clone > :nth-child(4)[b-4d5bg142l8] {
    transition-delay: 0.3s;
}

.topbutton:hover svg[b-4d5bg142l8] {
    transform: rotate(-90deg);
}
/* /Components/Pages/Batteries.razor.rz.scp.css */
.batteries-sect[b-5q75nvtlea] {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 24px;
    position: relative;
    top: 0;
    border-radius: 20px;
    outline: 4px solid var(--border-subtle);
    width: 100%;
    min-height: auto; /* Changed from height: 100% */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3),
    inset 0px -3px 5px rgba(255, 255, 255, 0.1),
    inset 0px 3px 5px rgba(0, 0, 0, 0.5);
    background: var(--bg-surface);
    background: linear-gradient(135deg, var(--bg-surface) 25%, color-mix(in srgb, var(--bg-surface) 90%, var(--bg-canvas)) 25%, color-mix(in srgb, var(--bg-surface) 90%, var(--bg-canvas)) 50%, var(--bg-surface) 50%, var(--bg-surface) 75%, color-mix(in srgb, var(--bg-surface) 90%, var(--bg-canvas)) 75%, color-mix(in srgb, var(--bg-surface) 90%, var(--bg-canvas)));
    background-size: 40px 40px;
    animation: move-b-5q75nvtlea 4s linear infinite;
}

.batteries-sect h1[b-5q75nvtlea] {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

p[b-5q75nvtlea] {
    color: var(--text-primary);
}

a[b-5q75nvtlea] {
    color: var(--text-primary);
}

@keyframes move-b-5q75nvtlea {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}


.batteries-grid[b-5q75nvtlea] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.battery-item[b-5q75nvtlea] {
    display: flex;
    gap: 10px;
    background-color: var(--bg-surface);
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    min-width: 500px;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.battery-item:hover[b-5q75nvtlea] {
    background-color: var(--hover-color, var(--bg-surface-medium));
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
}

.battery-item:focus-visible[b-5q75nvtlea] {
    outline: 2px solid var(--hover-color, var(--text-primary));
    outline-offset: 2px;
}

.battery-item:hover .battery-title[b-5q75nvtlea] {
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.battery-item:hover .battery-desc[b-5q75nvtlea] {
    color: #ffffff;
}

.battery-image-container[b-5q75nvtlea] {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.battery-image-container img[b-5q75nvtlea] {
    transition: transform 0.3s ease;
}

.battery-item:hover .battery-image-container img[b-5q75nvtlea] {
    transform: scale(1.1);
}

.battery-title[b-5q75nvtlea] {
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.battery-item img[b-5q75nvtlea] {
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.battery-item:hover img[b-5q75nvtlea] {
    transform: scale(1.1);
}

.battery-details[b-5q75nvtlea] {
    flex: 1;
    max-width: 100%;
    margin-left: auto;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.battery-desc[b-5q75nvtlea] {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Browse-by-make + guide links — aligned with vehicleselect chips */
.batteries-browse-section[b-5q75nvtlea] {
    max-width: 800px;
    margin: 1.75rem auto 2.5rem;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    text-align: center;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 32px var(--shadow-color);
    width: calc(100% - 20px);
    box-sizing: border-box;
}

.batteries-browse-block + .batteries-browse-block[b-5q75nvtlea] {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.batteries-browse-title[b-5q75nvtlea] {
    font-size: clamp(1.1rem, 1.5vw + 0.6rem, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}

.batteries-browse-lead[b-5q75nvtlea] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 auto 1.1rem;
    max-width: 32rem;
    line-height: 1.5;
}

.batteries-browse-grid[b-5q75nvtlea] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.batteries-browse-chip[b-5q75nvtlea] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.batteries-browse-chip:hover[b-5q75nvtlea] {
    background: rgba(98, 190, 40, 0.18);
    border-color: rgba(98, 190, 40, 0.45);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(98, 190, 40, 0.2);
}

.batteries-browse-chip--all[b-5q75nvtlea] {
    background: rgba(98, 190, 40, 0.12);
    border-color: rgba(98, 190, 40, 0.35);
}

.batteries-browse-chip--all:hover[b-5q75nvtlea] {
    background: rgba(98, 190, 40, 0.28);
}

@media (max-width: 1024px) {
    .batteries-sect[b-5q75nvtlea] {
        width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .batteries-sect[b-5q75nvtlea] {
        width: calc(100% - 10px);
        padding: 15px 10px;
    }
    .batteries-grid[b-5q75nvtlea] {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    .battery-item[b-5q75nvtlea] {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 15px;
    }

    .batteries-browse-section[b-5q75nvtlea] {
        margin-top: 1.25rem;
        padding: 1rem 0.75rem;
        width: calc(100% - 10px);
    }

    .batteries-browse-chip[b-5q75nvtlea] {
        padding: 9px 14px;
        font-size: 0.82rem;
    }
}
/* /Components/Pages/Battery.razor.rz.scp.css */
.battery-bgwraps img[b-wu3bz0fz1o] {
    padding-top: 10px;
    overflow: visible;
}

/* Pull breadcrumb + hero closer together */
.battery-breadcrumb-tight[b-wu3bz0fz1o] (.site-breadcrumb-bar) {
    padding-bottom: 0;
}

.battery-breadcrumb-tight[b-wu3bz0fz1o] (.breadcrumb-nav__current) {
    color: var(--battery-accent, #ffffff);
}

.battery-breadcrumb-tight[b-wu3bz0fz1o] (.breadcrumb-nav--dark .breadcrumb-nav__item + .breadcrumb-nav__item::before) {
    color: color-mix(in srgb, var(--battery-accent, #ffffff) 65%, rgba(255, 255, 255, 0.5));
    opacity: 1;
}

.battery-breadcrumb-tight + .battery-hero-section[b-wu3bz0fz1o] {
    margin-top: 0;
}

/* Apple / Google Pay: match Buy with Prime width; on hero they stack above Prime (see .prime-wallet-stack) */
.wallet-buttons-battery[b-wu3bz0fz1o] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    text-align: left;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    overflow: hidden;
}

/* GPay injects fixed-width nodes — stretch to container */
.wallet-buttons-battery[b-wu3bz0fz1o] (.applepay-wrap) {
    flex: 0 0 44px;
    height: 44px;
    max-height: 44px;
    overflow: hidden;
}

.wallet-buttons-battery[b-wu3bz0fz1o] (.gpay-button-host) {
    width: 100% !important;
    max-width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    box-sizing: border-box;
    display: block !important;
    overflow: hidden !important;
    position: relative;
    z-index: 2;
    padding: 0 !important;
    flex-shrink: 0;
    flex: 0 0 44px;
}

.wallet-buttons-battery[b-wu3bz0fz1o] (.applepay-wrap) {
    width: 100%;
    max-width: 100%;
    display: block;
}

.wallet-buttons-battery[b-wu3bz0fz1o] (.applepay-container) {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start !important;
}

.wallet-buttons-battery[b-wu3bz0fz1o] (.apple-pay-button) {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.battery-hero-section[b-wu3bz0fz1o] {
    background: color-mix(in srgb, var(--battery-accent, #333333) 12%, var(--bg-canvas));
    border: none;
    border-radius: 25px;
    padding: 10px 15px 50px;
    position: relative;
    top: 0;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 16px);
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible; /* Prevent nested scrollbar */
    box-sizing: border-box;
    transform: translateX(0);
    opacity: 1;
    transform-origin: right center;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.battery-hero-section.slide-out[b-wu3bz0fz1o] {
    transform: translateX(100%);
    opacity: 0;
}

.battery-hero-section.slide-in[b-wu3bz0fz1o] {
    transform: translateX(100%);
    opacity: 0;
    animation: slideInFromRight-b-wu3bz0fz1o 0.4s ease-in-out forwards;
}

@keyframes slideInFromRight-b-wu3bz0fz1o {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.battery-hero-back-button-wrapper[b-wu3bz0fz1o] {
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 10;
}

html[dir="rtl"] .battery-hero-back-button-wrapper[b-wu3bz0fz1o] {
    left: auto;
    right: 10px;
}

back-button[b-wu3bz0fz1o] {
    display: flex;
    height: 2em;
    width: 100px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-primary);
}

back-button > svg[b-wu3bz0fz1o] {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 20px;
    filter: invert();
    transition: all 0.4s ease-in;
}

html[data-theme="light"] back-button > svg[b-wu3bz0fz1o] {
    filter: none;
}

back-button:hover > svg[b-wu3bz0fz1o] {
    font-size: 1.2em;
    transform: translateX(-5px);
}

/* Desktop: wider hero, use more of the viewport */
@media (min-width: 1024px) {
    .battery-hero-section[b-wu3bz0fz1o] {
        padding: 30px 40px 60px;
        width: calc(100% - 32px);
        max-width: 1800px;
    }
}

/* Large desktops */
@media (min-width: 1440px) {
    .battery-hero-section[b-wu3bz0fz1o] {
        padding: 40px 48px 80px;
        width: calc(100% - 48px);
        max-width: 1920px;
    }
}

/* Ultrawide displays */
@media (min-width: 1920px) {
    .battery-hero-section[b-wu3bz0fz1o] {
        padding: 40px 56px 80px;
        width: calc(100% - 64px);
        max-width: 2200px;
    }
}
    .battery-hero-section[b-wu3bz0fz1o]::after {
        content: "";
        display: block;
    }

.battery-hero-wrapper[b-wu3bz0fz1o] {
    display: flex;
    flex-direction: column; /* Default to two rows */
    align-items: center; /* Center content horizontally */
    min-height: 500px;
    max-width: 100%;
    overflow-x: hidden;
}

/* Desktop and larger: Side-by-side layout */
@media (min-width: 1024px) {
    .battery-hero-wrapper[b-wu3bz0fz1o] {
        flex-direction: row; 
        align-items: flex-start; /* Align items to top */
        gap: 40px; /* Increased gap for better spacing */
        min-height: 600px; /* Increased min-height for better proportions */
    }
    
    .battery-hero-image-split[b-wu3bz0fz1o] {
        flex: 1.2;
        max-width: none;
        min-width: 0;
        align-self: flex-start;
    }
}

/* Large desktops and ultrawide: scale image + text columns with the hero */
@media (min-width: 1440px) {
    .battery-hero-wrapper[b-wu3bz0fz1o] {
        gap: 56px;
        min-height: 700px;
    }

    .battery-hero-image-split[b-wu3bz0fz1o] {
        flex: 1.25;
    }
}

@media (min-width: 1920px) {
    .battery-hero-wrapper[b-wu3bz0fz1o] {
        gap: 64px;
    }

    .battery-hero-image-split[b-wu3bz0fz1o] {
        flex: 1.3;
    }
}

.battery-hero-image-split[b-wu3bz0fz1o] {
    display: flex;
    flex: 2;
    justify-content: center;
    align-items: center;
    width: 100%; 
    max-width: 600px; /* Default max-width for smaller screens */
}

    .battery-hero-image-split img[b-wu3bz0fz1o] {
        position: sticky;
        width: 100%; 
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        object-fit: contain; /* Ensure image scales properly */
        box-shadow:
            0 16px 48px rgba(0, 0, 0, 0.45),
            0 0 72px color-mix(in srgb, var(--battery-accent, #4a4a4a) 38%, transparent);
    }

    .battery-hero-image-split img.shadow-two-2[b-wu3bz0fz1o] {
        box-shadow: none;
    }
    
    .battery-hero-image-split > div[b-wu3bz0fz1o] {
        width: 100%;
        max-width: 100%;
    }

.battery-hero-split[b-wu3bz0fz1o] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to top */
    align-items: stretch;
    flex: 1;
    width: 100%;
    padding-right: 15px; /* Add padding to accommodate button scale */
    box-sizing: border-box;
    padding-top: 0; /* Remove any top padding to align with image */
}

@media (max-width: 1023px) {
    .battery-hero-wrapper[b-wu3bz0fz1o] {
        align-items: stretch;
    }

    /* Center hero image column below desktop (stacked layout) */
    .battery-hero-image-split[b-wu3bz0fz1o] {
        align-self: center;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: min(600px, 100%);
    }

    .battery-hero-image-split > div[b-wu3bz0fz1o] {
        margin-left: auto;
        margin-right: auto;
    }

    .battery-image-container[b-wu3bz0fz1o] {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .battery-hero-image-split img.shadow-two-2[b-wu3bz0fz1o] {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Desktop: text column grows with hero width */
@media (min-width: 1024px) {
    .battery-hero-split[b-wu3bz0fz1o] {
        flex: 1;
        min-width: 0;
        padding-right: 20px;
        max-width: none;
    }
}

@media (min-width: 1440px) {
    .battery-hero-split[b-wu3bz0fz1o] {
        padding-right: 30px;
    }
}

.heading-7[b-wu3bz0fz1o] {
    margin: 0;
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 40px;
}


.heading-6[b-wu3bz0fz1o], .italic-text[b-wu3bz0fz1o] {
    color: var(--text-primary);
    font-size: 20px;
}

/* Desktop: Better text styling */
@media (min-width: 1024px) {
    .italic-text[b-wu3bz0fz1o] {
        font-size: 18px;
        line-height: 1.7; /* Better line spacing for readability */
        max-width: 100%;
    }
    
    .heading-7[b-wu3bz0fz1o] {
        font-size: 2.5rem; /* Larger heading on desktop */
        line-height: 40px;
        margin-bottom: 20px;
    }
}

/* Ultrawide: Even better typography */
@media (min-width: 1440px) {
    .italic-text[b-wu3bz0fz1o] {
        font-size: 20px;
        line-height: 1.8;
    }
    
    .heading-7[b-wu3bz0fz1o] {
        font-size: 3rem;
        margin-bottom: 30px;
    }
}

/* Prevent horizontal overflow on battery page */
.battery-hero-image-split img[b-wu3bz0fz1o] {
    max-width: 100%;
    height: auto;
}

/* Ensure all content within battery page respects boundaries */
.battery-hero-split p[b-wu3bz0fz1o],
.battery-hero-split em[b-wu3bz0fz1o] {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto; /* Better text wrapping with hyphens */
}

.battery-product-meta[b-wu3bz0fz1o] {
    margin-bottom: 16px;
}

.battery-product-meta__lines[b-wu3bz0fz1o] {
    margin-bottom: 8px;
}

/* Desktop: Better paragraph spacing */
@media (min-width: 1024px) {
    .battery-hero-split p[b-wu3bz0fz1o] {
        margin-bottom: 1.5em;
    }
    
    .margin-bottom-24px-2[b-wu3bz0fz1o] {
        margin-bottom: 24px;
    }

    .battery-product-meta[b-wu3bz0fz1o] {
        margin-bottom: 20px;
    }
}

.battery-hero-loaded[b-wu3bz0fz1o] {
    display: contents;
}

.battery-page-loaded[b-wu3bz0fz1o] {
    width: 100%;
}

/* Skeleton wrapper base styles (legacy — kept for any per-image skeletons) */
.skeleton-title-wrapper[b-wu3bz0fz1o],
.skeleton-paragraph-wrapper[b-wu3bz0fz1o],
.skeleton-button-wrapper[b-wu3bz0fz1o] {
    max-width: 100%;
    overflow: hidden;
    display: block;
}

.skeleton-title-wrapper[b-wu3bz0fz1o] {
    margin-bottom: 24px;
    border-radius: 12px;
}

.skeleton-paragraph-wrapper[b-wu3bz0fz1o] {
    margin-bottom: 24px;
    border-radius: 10px;
}

.skeleton-button-wrapper[b-wu3bz0fz1o] {
    margin-top: 20px;
    border-radius: 24px;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .battery-hero-section[b-wu3bz0fz1o] {
        padding: 0;
    }
    
    .battery-hero-wrapper[b-wu3bz0fz1o] {
        padding: 0;
        min-height: auto;
    }
    
    .battery-hero-image-split[b-wu3bz0fz1o] {
        padding: 0;
    }
    
    .battery-hero-split[b-wu3bz0fz1o] {
        padding: 0 8px;
        width: 100%;
    }

    .heading-7[b-wu3bz0fz1o] {
        line-height: 40px;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Add more spacing between skeletons on mobile */
    .skeleton-title-wrapper[b-wu3bz0fz1o] {
        margin-bottom: 40px !important;
    }
    
    .skeleton-paragraph-wrapper[b-wu3bz0fz1o] {
        margin-bottom: 40px !important;
    }
    
    .skeleton-button-wrapper[b-wu3bz0fz1o] {
        margin-top: 40px !important;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .battery-hero-section[b-wu3bz0fz1o] {
        padding: 0;
    }
    
    .battery-hero-split[b-wu3bz0fz1o] {
        padding: 0 8px;
    }
    
    /* Add even more spacing between skeletons on very small screens */
    .skeleton-title-wrapper[b-wu3bz0fz1o] {
        margin-bottom: 44px !important;
    }
    
    .skeleton-paragraph-wrapper[b-wu3bz0fz1o] {
        margin-bottom: 44px !important;
    }
    
    .skeleton-button-wrapper[b-wu3bz0fz1o] {
        margin-top: 44px !important;
    }
}

/* Battery image container with share button */
.battery-image-container[b-wu3bz0fz1o] {
    position: relative;
    display: inline-block;
    width: 100%;
}

.battery-share-button[b-wu3bz0fz1o] {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.battery-share-button:hover[b-wu3bz0fz1o] {
    background-color: rgba(0, 0, 0, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.battery-share-button:active[b-wu3bz0fz1o] {
    transform: scale(0.95);
}

.battery-share-button svg[b-wu3bz0fz1o] {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* Mobile adjustments for share button */
@media (max-width: 768px) {
    .battery-share-button[b-wu3bz0fz1o] {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    
    .battery-share-button svg[b-wu3bz0fz1o] {
        width: 18px;
        height: 18px;
    }
}

/* OR Divider between Buy Now and Buy with Prime */
.or-divider[b-wu3bz0fz1o] {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 24px 0;
    box-sizing: border-box;
}

.or-divider-line[b-wu3bz0fz1o] {
    flex: 1;
    height: 1px;
    background-color: color-mix(in srgb, var(--battery-accent, #ffffff) 38%, rgba(255, 255, 255, 0.22));
}

.or-divider-text[b-wu3bz0fz1o] {
    padding: 0 16px;
    color: color-mix(in srgb, var(--battery-accent, #ffffff) 75%, rgba(255, 255, 255, 0.65));
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.or-divider.hidden[b-wu3bz0fz1o] {
    display: none !important;
}

/* Desktop: Adjust OR divider spacing */
@media (min-width: 1024px) {
    .or-divider[b-wu3bz0fz1o] {
        margin: 28px 0;
        max-width: 100%;
    }
    
    .or-divider-text[b-wu3bz0fz1o] {
        font-size: 15px;
        padding: 0 20px;
    }
}

.battery-replacement-note[b-wu3bz0fz1o] {
    width: 100%;
    margin: 16px 0 8px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
}

.battery-replacement-note p[b-wu3bz0fz1o] {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.battery-replacement-note a[b-wu3bz0fz1o] {
    color: var(--primary-color, #f58220);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Amazon Buy with Prime button container */
.buy-with-prime-container[b-wu3bz0fz1o] {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}


/* Amazon custom element: must use ::deep — scoped CSS does not match 3rd-party tags without b- attribute */
.buy-with-prime-container[b-wu3bz0fz1o] (amazon-purchase-button) {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure text below Buy with Prime button doesn't wrap incorrectly */
.battery-hero-split > *[b-wu3bz0fz1o] {
    width: 100%;
    max-width: 100%;
}

/* Prime + wallet: full width of hero text column (tablet through ultrawide). Avoids desktop fit-content shrink (~200px). */
.battery-hero-split > .prime-wallet-stack[b-wu3bz0fz1o] {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
}

.prime-wallet-stack[b-wu3bz0fz1o] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-sizing: border-box;
    min-width: 0;
    gap: 12px;
    isolation: isolate;
}

.prime-wallet-stack .sms-opt-in-slot[b-wu3bz0fz1o] {
    width: 100%;
}

.prime-wallet-stack .buy-with-prime-container[b-wu3bz0fz1o] {
    width: 100%;
    position: relative;
    z-index: 0;
    flex-shrink: 0;
    margin-top: 0;
    clear: both;
    min-height: 44px;
}

.prime-wallet-stack .wallet-buttons-battery[b-wu3bz0fz1o] {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 3;
}

/* Tablet/mobile: reinforce stack width (desktop covered by base ::deep rule above) */
@media (max-width: 1023px) {
    .prime-wallet-stack[b-wu3bz0fz1o] {
        width: 100% !important;
        max-width: 100% !important;
    }

    .prime-wallet-stack .buy-with-prime-container[b-wu3bz0fz1o] {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Desktop + ultrawide: pin payment stack to text column (matches Quantity / Buy Now width) */
@media (min-width: 1024px) {
    .battery-hero-split > .prime-wallet-stack[b-wu3bz0fz1o] {
        width: 100% !important;
        max-width: 100% !important;
        align-self: stretch !important;
    }
}

/* /Components/Pages/BatteryComparison.razor.rz.scp.css */
.comparison-container[b-qomsnhwoh2] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-primary);
}

.breadcrumb[b-qomsnhwoh2] {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb[b-qomsnhwoh2] (a.breadcrumb-link),
.breadcrumb[b-qomsnhwoh2] (a.breadcrumb-link:visited) {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-decoration-color: currentColor;
    transition: color 0.3s ease;
}

.breadcrumb[b-qomsnhwoh2] (a.breadcrumb-link:hover) {
    color: #F58220 !important;
    -webkit-text-fill-color: #F58220;
}

.breadcrumb-separator[b-qomsnhwoh2] {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current[b-qomsnhwoh2] {
    color: #F58220;
    font-weight: 600;
}

.comparison-header[b-qomsnhwoh2] {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header h1[b-qomsnhwoh2] {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.comparison-intro[b-qomsnhwoh2] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.comparison-content[b-qomsnhwoh2] {
    line-height: 1.8;
}

.comparison-section[b-qomsnhwoh2] {
    margin-bottom: 40px;
}

.comparison-section h2[b-qomsnhwoh2] {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.comparison-section p[b-qomsnhwoh2] {
    color: var(--text-primary);
    line-height: 1.7;
}

.comparison-table-wrapper[b-qomsnhwoh2] {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table[b-qomsnhwoh2] {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead[b-qomsnhwoh2] {
    background: rgba(245, 130, 32, 0.2);
}

.comparison-table th[b-qomsnhwoh2] {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-table td[b-qomsnhwoh2] {
    padding: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tr:last-child td[b-qomsnhwoh2] {
    border-bottom: none;
}

.comparison-table tr:hover[b-qomsnhwoh2] {
    background: rgba(255, 255, 255, 0.05);
}

.difference-item[b-qomsnhwoh2] {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #F58220;
}

.difference-item h3[b-qomsnhwoh2] {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.difference-item p[b-qomsnhwoh2] {
    color: var(--text-secondary);
    line-height: 1.7;
}

.difference-item a[b-qomsnhwoh2] {
    color: #F58220;
    text-decoration: underline;
}

.difference-item a:hover[b-qomsnhwoh2] {
    color: #ff9a40;
}

.comparison-list[b-qomsnhwoh2] {
    padding-left: 25px;
    color: var(--text-secondary);
}

.comparison-list li[b-qomsnhwoh2] {
    margin-bottom: 10px;
    line-height: 1.7;
}

.comparison-list a[b-qomsnhwoh2] {
    color: #F58220;
    text-decoration: underline;
}

.comparison-list a:hover[b-qomsnhwoh2] {
    color: #ff9a40;
}

.comparison-cta[b-qomsnhwoh2] {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button[b-qomsnhwoh2] {
    display: inline-block;
    padding: 15px 40px;
    background: #F58220;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover[b-qomsnhwoh2] {
    background: #ff9a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.cta-button-secondary[b-qomsnhwoh2] {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #F58220;
    text-decoration: none;
    border: 2px solid #F58220;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover[b-qomsnhwoh2] {
    background: rgba(245, 130, 32, 0.1);
    border-color: #ff9a40;
    color: #ff9a40;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-container[b-qomsnhwoh2] {
        padding: 20px 15px;
    }

    .comparison-header h1[b-qomsnhwoh2] {
        font-size: 2rem;
    }

    .comparison-intro[b-qomsnhwoh2] {
        font-size: 1rem;
    }

    .comparison-table[b-qomsnhwoh2] {
        font-size: 0.9rem;
    }

    .comparison-table th[b-qomsnhwoh2],
    .comparison-table td[b-qomsnhwoh2] {
        padding: 10px;
    }

    .comparison-cta[b-qomsnhwoh2] {
        flex-direction: column;
        align-items: center;
    }

    .cta-button[b-qomsnhwoh2],
    .cta-button-secondary[b-qomsnhwoh2] {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* /Components/Pages/BatteryCompatibility.razor.rz.scp.css */
/* Compatibility SEO landing page — visual language aligned with Battery.razor.css hero */

.compat-page[b-wxwhr2g9ai] {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.compat-page-inner[b-wxwhr2g9ai] {
    margin: 0 auto;
    max-width: 1400px;
    padding: calc(72px + env(safe-area-inset-top, 0)) 12px 48px;
    position: relative;
}

@media (min-width: 1024px) {
    .compat-page-inner[b-wxwhr2g9ai] {
        padding: calc(80px + env(safe-area-inset-top, 0)) 24px 56px;
    }
}

/* Breadcrumb */
.compat-breadcrumb[b-wxwhr2g9ai] {
    padding: 16px 8px 12px;
    margin-bottom: 8px;
}

.compat-breadcrumb-list[b-wxwhr2g9ai] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.compat-breadcrumb-item[b-wxwhr2g9ai] {
    color: var(--text-secondary);
}

.compat-breadcrumb-item a[b-wxwhr2g9ai] {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.compat-breadcrumb-item a:hover[b-wxwhr2g9ai] {
    color: var(--primary-color, #f58220);
    border-bottom-color: var(--primary-color, #f58220);
}

.compat-breadcrumb-sep[b-wxwhr2g9ai] {
    color: var(--text-muted);
    user-select: none;
}

.compat-breadcrumb-current[b-wxwhr2g9ai] {
    color: var(--text-muted);
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Hero card — matches battery-hero-section feel */
.compat-hero-section[b-wxwhr2g9ai] {
    background-color: color-mix(in srgb, var(--bg-canvas) 94%, transparent);
    border-radius: 25px;
    padding: 28px 18px 40px;
    position: relative;
    top: 0;
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 1px solid var(--border-subtle);
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .compat-hero-section[b-wxwhr2g9ai] {
        padding: 36px 40px 52px;
        max-width: 1400px;
    }
}

@media (min-width: 1440px) {
    .compat-hero-section[b-wxwhr2g9ai] {
        padding: 44px 56px 64px;
        max-width: 1600px;
    }
}

.compat-hero-wrapper[b-wxwhr2g9ai] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    min-height: 0;
}

@media (min-width: 1024px) {
    .compat-hero-wrapper[b-wxwhr2g9ai] {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
        min-height: 480px;
    }
}

.compat-hero-image-split[b-wxwhr2g9ai] {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
}

@media (min-width: 1024px) {
    .compat-hero-image-split[b-wxwhr2g9ai] {
        flex: 1.15;
        max-width: 700px;
        min-width: 280px;
    }
}

.compat-product-img[b-wxwhr2g9ai] {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.compat-hero-split[b-wxwhr2g9ai] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .compat-hero-split[b-wxwhr2g9ai] {
        max-width: 620px;
        padding-right: 12px;
    }
}

.compat-heading[b-wxwhr2g9ai] {
    margin: 0 0 16px;
    font-size: clamp(1.35rem, 4vw, 2.5rem);
    line-height: 1.25;
    font-weight: 700;
    color: var(--text-primary);
}

.compat-lead[b-wxwhr2g9ai] {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
}

@media (min-width: 1024px) {
    .compat-lead[b-wxwhr2g9ai] {
        font-size: 18px;
        line-height: 1.7;
    }
}

.compat-notes[b-wxwhr2g9ai] {
    width: 100%;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    box-sizing: border-box;
}

.compat-notes-title[b-wxwhr2g9ai] {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.compat-notes p[b-wxwhr2g9ai] {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.compat-notes p:last-child[b-wxwhr2g9ai] {
    margin-bottom: 0;
}

/* Detail cards — flexible columns for vehicle, size, voltage, price */
.compat-detail-grid[b-wxwhr2g9ai] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.compat-detail-card[b-wxwhr2g9ai] {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    box-sizing: border-box;
}

.compat-detail-label[b-wxwhr2g9ai] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.compat-detail-value[b-wxwhr2g9ai] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    overflow-wrap: break-word;
}

/* CTA — glass-style primary button aligned with site hero buttons */
.compat-cta[b-wxwhr2g9ai] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    min-height: 52px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.6px;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-primary) !important;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: rgba(245, 130, 32, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.compat-cta:hover[b-wxwhr2g9ai] {
    transform: translateY(-2px);
    background: rgba(245, 130, 32, 0.55);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--text-primary) !important;
}

.compat-cta:focus-visible[b-wxwhr2g9ai] {
    outline: 2px solid var(--primary-color, #f58220);
    outline-offset: 3px;
}

.compat-cta-sub[b-wxwhr2g9ai] {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.purchase-trust-strip[b-wxwhr2g9ai] {
    margin-top: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

html[data-theme="light"] .purchase-trust-strip[b-wxwhr2g9ai] {
    color: #111;
}

.compat-faq-section[b-wxwhr2g9ai] {
    margin-top: 32px;
    padding: 28px 20px;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
}

.compat-faq-heading[b-wxwhr2g9ai] {
    margin: 0 0 20px;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.compat-faq-item[b-wxwhr2g9ai] {
    margin-bottom: 20px;
}

.compat-faq-item:last-child[b-wxwhr2g9ai] {
    margin-bottom: 0;
}

.compat-faq-question[b-wxwhr2g9ai] {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.compat-faq-answer[b-wxwhr2g9ai] {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.compat-faq-answer a[b-wxwhr2g9ai] {
    color: var(--primary-color, #f58220);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.compat-guide-links[b-wxwhr2g9ai] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.compat-guide-links a[b-wxwhr2g9ai] {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.compat-guide-links a:hover[b-wxwhr2g9ai] {
    color: var(--primary-color, #f58220);
    border-bottom-color: var(--primary-color, #f58220);
}

/* Loading / error states */
.compat-state-card[b-wxwhr2g9ai] {
    background-color: color-mix(in srgb, var(--bg-canvas) 94%, transparent);
    border-radius: 25px;
    padding: 40px 24px;
    max-width: 720px;
    margin: 40px auto 0;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 1px solid var(--border-subtle);
}

.compat-state-card h1[b-wxwhr2g9ai] {
    margin: 0 0 12px;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.compat-state-card p[b-wxwhr2g9ai] {
    margin: 0 0 24px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.compat-state-spinner[b-wxwhr2g9ai] {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--primary-color, #f58220);
    border-radius: 50%;
    animation: compat-spin-b-wxwhr2g9ai 0.85s linear infinite;
}

@keyframes compat-spin-b-wxwhr2g9ai {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .compat-hero-section[b-wxwhr2g9ai] {
        padding: 20px 12px 32px;
        margin: 0 4px;
        max-width: calc(100% - 8px);
    }

    .compat-breadcrumb[b-wxwhr2g9ai] {
        padding-left: 4px;
        padding-right: 4px;
    }
}

@media (max-width: 480px) {
    .compat-hero-section[b-wxwhr2g9ai] {
        padding: 16px 10px 28px;
        margin: 0 2px;
        max-width: calc(100% - 4px);
        border-radius: 18px;
    }
}
/* /Components/Pages/BatterySafety.razor.rz.scp.css */
.safety-container[b-9oigvqeeee] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-primary);
}

.breadcrumb[b-9oigvqeeee] {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb[b-9oigvqeeee] (a.breadcrumb-link),
.breadcrumb[b-9oigvqeeee] (a.breadcrumb-link:visited) {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-decoration-color: currentColor;
    transition: color 0.3s ease;
}

.breadcrumb[b-9oigvqeeee] (a.breadcrumb-link:hover) {
    color: #F58220 !important;
    -webkit-text-fill-color: #F58220;
}

.breadcrumb-separator[b-9oigvqeeee] {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current[b-9oigvqeeee] {
    color: #F58220;
    font-weight: 600;
}

.safety-header[b-9oigvqeeee] {
    text-align: center;
    margin-bottom: 50px;
}

.safety-header h1[b-9oigvqeeee] {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.safety-intro[b-9oigvqeeee] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.safety-content[b-9oigvqeeee] {
    line-height: 1.8;
    color: var(--text-primary);
}

.safety-content p[b-9oigvqeeee],
.safety-content li[b-9oigvqeeee],
.safety-content h2[b-9oigvqeeee],
.safety-content h3[b-9oigvqeeee],
.safety-content h4[b-9oigvqeeee],
.safety-content strong[b-9oigvqeeee] {
    color: var(--text-primary) !important;
}

.safety-section[b-9oigvqeeee] {
    margin-bottom: 50px;
}

.safety-section h2[b-9oigvqeeee] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.warning-section[b-9oigvqeeee] {
    margin-bottom: 40px;
}

.warning-box[b-9oigvqeeee] {
    padding: 25px;
    background: rgba(220, 53, 69, 0.15);
    border-left: 4px solid #dc3545;
    border-radius: 10px;
    margin-top: 20px;
}

.warning-box h3[b-9oigvqeeee] {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.warning-box p[b-9oigvqeeee] {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.emergency-section[b-9oigvqeeee] {
    margin-bottom: 40px;
}

.emergency-box[b-9oigvqeeee] {
    padding: 25px;
    background: rgba(245, 130, 32, 0.15);
    border-left: 4px solid #F58220;
    border-radius: 10px;
    margin-top: 20px;
}

.emergency-box h3[b-9oigvqeeee] {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.emergency-box p[b-9oigvqeeee] {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.hotline-box[b-9oigvqeeee] {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.hotline-box h4[b-9oigvqeeee] {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.hotline-number[b-9oigvqeeee] {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hotline-link[b-9oigvqeeee] {
    color: #F58220;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hotline-link:hover[b-9oigvqeeee] {
    color: #ff9a40;
}

.honey-warning[b-9oigvqeeee] {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    border-radius: 5px;
}

.honey-warning p[b-9oigvqeeee] {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.safety-item[b-9oigvqeeee] {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.safety-item h3[b-9oigvqeeee] {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.safety-list[b-9oigvqeeee] {
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.safety-list li[b-9oigvqeeee] {
    margin-bottom: 10px;
    line-height: 1.7;
}

.safety-list a[b-9oigvqeeee] {
    color: #F58220;
    text-decoration: underline;
    font-weight: 500;
}

.safety-list a:hover[b-9oigvqeeee] {
    color: #ff9a40;
}

.remember-box[b-9oigvqeeee] {
    padding: 25px;
    background: rgba(245, 130, 32, 0.1);
    border-left: 4px solid #F58220;
    border-radius: 10px;
    margin-top: 20px;
}

.remember-box p[b-9oigvqeeee] {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .safety-container[b-9oigvqeeee] {
        padding: 20px 15px;
    }

    .safety-header h1[b-9oigvqeeee] {
        font-size: 2rem;
    }

    .safety-intro[b-9oigvqeeee] {
        font-size: 1rem;
    }

    .warning-box[b-9oigvqeeee],
    .emergency-box[b-9oigvqeeee],
    .safety-item[b-9oigvqeeee] {
        padding: 15px;
    }

    .hotline-link[b-9oigvqeeee] {
        font-size: 1.1rem;
    }
}

/* /Components/Pages/BatterySizeGuide.razor.rz.scp.css */
.size-guide-container[b-w406mpnvtk] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-primary);
}

.breadcrumb[b-w406mpnvtk] {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb[b-w406mpnvtk] (a.breadcrumb-link),
.breadcrumb[b-w406mpnvtk] (a.breadcrumb-link:visited) {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-decoration-color: currentColor;
    transition: color 0.3s ease;
}

.breadcrumb[b-w406mpnvtk] (a.breadcrumb-link:hover) {
    color: #F58220 !important;
    -webkit-text-fill-color: #F58220;
}

.breadcrumb-separator[b-w406mpnvtk] {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current[b-w406mpnvtk] {
    color: #F58220;
    font-weight: 600;
}

.size-guide-header[b-w406mpnvtk] {
    text-align: center;
    margin-bottom: 50px;
}

.size-guide-header h1[b-w406mpnvtk] {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.size-guide-intro[b-w406mpnvtk] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.size-guide-content[b-w406mpnvtk] {
    line-height: 1.8;
}

.size-guide-section[b-w406mpnvtk] {
    margin-bottom: 50px;
}

.understanding-section[b-w406mpnvtk] {
    color: var(--text-primary);
}

.understanding-section p[b-w406mpnvtk],
.understanding-section li[b-w406mpnvtk],
.understanding-section strong[b-w406mpnvtk] {
    color: var(--text-primary) !important;
}

.white-text[b-w406mpnvtk] {
    color: var(--text-primary) !important;
}

.size-guide-section h2[b-w406mpnvtk] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.table-wrapper[b-w406mpnvtk] {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.size-comparison-table[b-w406mpnvtk] {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.size-comparison-table thead[b-w406mpnvtk] {
    background: rgba(245, 130, 32, 0.2);
}

.size-comparison-table th[b-w406mpnvtk] {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.size-comparison-table td[b-w406mpnvtk] {
    padding: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.size-comparison-table tr:last-child td[b-w406mpnvtk] {
    border-bottom: none;
}

.size-comparison-table tr:hover[b-w406mpnvtk] {
    background: rgba(255, 255, 255, 0.05);
}

.size-comparison-table a[b-w406mpnvtk] {
    color: #F58220;
    text-decoration: underline;
    font-weight: 500;
}

.size-comparison-table a:hover[b-w406mpnvtk] {
    color: #ff9a40;
}

.guide-list[b-w406mpnvtk] {
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.guide-list li[b-w406mpnvtk] {
    margin-bottom: 10px;
}

.guide-list a[b-w406mpnvtk] {
    color: #F58220;
    text-decoration: underline;
}

.guide-list a:hover[b-w406mpnvtk] {
    color: #ff9a40;
}

.battery-info-card[b-w406mpnvtk] {
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #F58220;
}

.battery-info-card h3[b-w406mpnvtk] {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.battery-info-card p[b-w406mpnvtk] {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.card-link[b-w406mpnvtk] {
    color: #F58220;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.card-link:hover[b-w406mpnvtk] {
    color: #ff9a40;
}

.important-notes[b-w406mpnvtk] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.note-item[b-w406mpnvtk] {
    padding: 20px;
    background: rgba(245, 130, 32, 0.1);
    border-left: 4px solid #F58220;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.size-guide-cta[b-w406mpnvtk] {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button[b-w406mpnvtk] {
    display: inline-block;
    padding: 15px 40px;
    background: #F58220;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover[b-w406mpnvtk] {
    background: #ff9a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.cta-button-secondary[b-w406mpnvtk] {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #F58220;
    text-decoration: none;
    border: 2px solid #F58220;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover[b-w406mpnvtk] {
    background: rgba(245, 130, 32, 0.1);
    border-color: #ff9a40;
    color: #ff9a40;
}

.loading-message[b-w406mpnvtk] {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .size-guide-container[b-w406mpnvtk] {
        padding: 20px 15px;
    }

    .size-guide-header h1[b-w406mpnvtk] {
        font-size: 2rem;
    }

    .size-guide-intro[b-w406mpnvtk] {
        font-size: 1rem;
    }

    .size-comparison-table[b-w406mpnvtk] {
        font-size: 0.85rem;
    }

    .size-comparison-table th[b-w406mpnvtk],
    .size-comparison-table td[b-w406mpnvtk] {
        padding: 10px 8px;
    }

    .size-guide-cta[b-w406mpnvtk] {
        flex-direction: column;
        align-items: center;
    }

    .cta-button[b-w406mpnvtk],
    .cta-button-secondary[b-w406mpnvtk] {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* /Components/Pages/BuyNow.razor.rz.scp.css */
.buynow-product-meta[b-gepmdxf3xe] {
    margin-bottom: 16px;
    width: 100%;
}

.buynow-meta-line[b-gepmdxf3xe] {
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 8px;
}

.compat-checker[b-gepmdxf3xe] {
    margin: 12px 0 4px;
}

.compat-checker__toggle[b-gepmdxf3xe] {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
}

.compat-checker__toggle:hover[b-gepmdxf3xe] {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--compat-accent, #F58220);
}

.compat-checker__panel[b-gepmdxf3xe] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--compat-accent, #F58220);
    border-radius: 10px;
    padding: 14px 16px;
}

.compat-checker__panel-header[b-gepmdxf3xe] {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.compat-checker__panel-title[b-gepmdxf3xe] {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
}

.compat-checker__close[b-gepmdxf3xe] {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0 4px;
}

.compat-checker__loading[b-gepmdxf3xe],
.compat-checker__checking[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
}

.compat-checker__dropdowns[b-gepmdxf3xe] {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .compat-checker__dropdowns[b-gepmdxf3xe] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.compat-checker__field label[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.compat-checker__select[b-gepmdxf3xe] {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #222;
    font-size: 14px;
    padding: 8px 10px;
    width: 100%;
}

.compat-checker__select:disabled[b-gepmdxf3xe] {
    opacity: 0.55;
}

.compat-checker__status[b-gepmdxf3xe] {
    align-items: flex-start;
    border-radius: 8px;
    display: flex;
    font-size: 14px;
    gap: 10px;
    line-height: 1.45;
    padding: 10px 12px;
}

.compat-checker__status p[b-gepmdxf3xe] {
    margin: 0 0 6px;
}

.compat-checker__icon[b-gepmdxf3xe] {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.compat-checker__status--compatible[b-gepmdxf3xe] {
    background: var(--success-bg);
    color: var(--success-text);
}

.compat-checker__status--warning[b-gepmdxf3xe] {
    background: var(--warning-bg);
    color: var(--warning-text);
}

.compat-checker__status--warning p[b-gepmdxf3xe],
.compat-checker__status--warning strong[b-gepmdxf3xe] {
    color: var(--warning-text);
}

.compat-checker__status--incompatible[b-gepmdxf3xe] {
    background: var(--error-bg);
    color: var(--error-text);
}

.compat-checker__status--incompatible p[b-gepmdxf3xe] {
    color: var(--error-text);
}

.compat-checker__status--incompatible .compat-checker__link-row a[b-gepmdxf3xe] {
    color: #ffeb3b;
}

.compat-checker__link-row a[b-gepmdxf3xe] {
    color: #ffcb05;
    font-weight: 600;
    text-decoration: underline;
}

.compat-checker__status--warning .compat-checker__link-row a[b-gepmdxf3xe] {
    color: #ffeb3b;
}

/* Screen reader only class for accessibility */
.sr-only[b-gepmdxf3xe] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.battery-price-div[b-gepmdxf3xe] {
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.quantity-buynow-container[b-gepmdxf3xe] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    padding-right: 10px; /* Add padding to accommodate button scale */
    box-sizing: border-box;
}

.button[b-gepmdxf3xe] {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3), 0px 2px 8px rgba(0, 0, 0, 0.2);
    padding-block: 0.75rem;
    padding-inline: 24px;
    min-height: 44px; /* Minimum touch target */
    min-width: 120px; /* Minimum width */
    max-width: 100%; /* Prevent overflow */
    background-color: rgb(0 107 179);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0; /* Prevent button from shrinking */
    box-sizing: border-box; /* Include border in width calculation */
    transform-origin: center; /* Scale from center to prevent shifting */
    will-change: transform, box-shadow; /* Optimize for animations */
}

.button:hover[b-gepmdxf3xe] {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--text-primary);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4), 
                0px 4px 12px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2);
    background-color: rgb(0, 120, 200);
}

.button:focus-visible[b-gepmdxf3xe] {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.button:active[b-gepmdxf3xe] {
    transform: translateY(0px) scale(0.96);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button:hover[b-gepmdxf3xe]::before {
    animation: shine-b-gepmdxf3xe 2s ease-in-out infinite;
}

.button[b-gepmdxf3xe]::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 100%;
    background-image: linear-gradient( 120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 70% );
    top: 0;
    left: -120px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.button:hover[b-gepmdxf3xe]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple-b-gepmdxf3xe 0.6s ease-out;
    pointer-events: none;
}

@keyframes shine-b-gepmdxf3xe {
    0% {
        left: -120px;
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes ripple-b-gepmdxf3xe {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}


.product-purchase-section[b-gepmdxf3xe] {
    margin: 20px;
}

.price-display[b-gepmdxf3xe] {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.quantity-form[b-gepmdxf3xe] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.quantity-form-wrap[b-gepmdxf3xe] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.quantity-label[b-gepmdxf3xe] {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 0;
    color: var(--text-secondary);
    display: block;
}

.quantity-input-row[b-gepmdxf3xe] {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.quantity-input-wrapper[b-gepmdxf3xe] {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.quantity-input[b-gepmdxf3xe] {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    background-color: #f9f9f9;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.quantity-btn[b-gepmdxf3xe] {
    min-width: 44px; /* Minimum touch target */
    min-height: 44px; /* Minimum touch target */
    background-color: var(--bg-surface-medium);
    color: var(--text-primary);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

    .quantity-btn:hover[b-gepmdxf3xe] {
        background-color: #555;
    }

.decrement-btn[b-gepmdxf3xe] {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.increment-btn[b-gepmdxf3xe] {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.btn-quantity[b-gepmdxf3xe] {
    background-color: #555;
    color: var(--text-primary);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.buy-now-btn-container[b-gepmdxf3xe] {
    margin-top: 10px;
}

.btn-buy-now[b-gepmdxf3xe], .btn-confirm-purchase[b-gepmdxf3xe] {
    background-color: #007bff;
    color: var(--text-primary);
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.select-shipping-label[b-gepmdxf3xe] {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

    .select-shipping-label:hover[b-gepmdxf3xe] {
        color: #ffcb05;
    }

.shipping-options[b-gepmdxf3xe] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.shipping-option[b-gepmdxf3xe] {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(192, 192, 192, 0.6);
    border-radius: 20px;
    background-color: #292929;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.shipping-text[b-gepmdxf3xe] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}

.shipping-check[b-gepmdxf3xe] {
    font-size: 18px;
    font-weight: bold;
    color: #ffcb05;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover Effect */
.shipping-option:hover[b-gepmdxf3xe] {
    background-color: var(--bg-surface-medium);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.5);
}

.shipping-option.selected[b-gepmdxf3xe] {
    border-color: #ffcb05;
    background-color: #3b3b3b;
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.1);
}

    .shipping-option.selected .shipping-check[b-gepmdxf3xe] {
        opacity: 1; /* Show checkmark */
    }

/* Delivery Truck Icon */
.shipping-text i[b-gepmdxf3xe] {
    font-size: 20px;
    color: #ffcb05;
}

.subtotal-text[b-gepmdxf3xe], .total-price[b-gepmdxf3xe] {
    margin-top: 10px;
}

.payment-options[b-gepmdxf3xe] {
    margin-top: 20px;
}

.payment-subutotal[b-gepmdxf3xe] {
    color: var(--text-primary);
    text-align: left;
    border-bottom: 1px dashed #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.payment-price[b-gepmdxf3xe] {
    color: var(--text-primary);
    text-align: left;
    border-bottom: 0 solid #000;
    margin-top: 0;
    margin-bottom: 10px;
}


.input-field[b-gepmdxf3xe] {
    width: 100%;
    min-height: 44px; /* Minimum touch target */
    padding: 12px 16px; /* Better padding */
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px; /* Prevents zoom on iOS */
    -webkit-appearance: none;
    appearance: none;
}

.input-field:focus[b-gepmdxf3xe] {
    border-color: var(--secondary-color, #4A90E2);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.input-field:focus-visible[b-gepmdxf3xe] {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

.flex-row[b-gepmdxf3xe] {
    display: flex;
    gap: 10px;
}

.input-half[b-gepmdxf3xe] {
    flex: 1;
}

.phone-input-wrapper[b-gepmdxf3xe] {
    position: relative;
}

.flag-icon[b-gepmdxf3xe] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.terms-text[b-gepmdxf3xe] {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.bg-fade-in[b-gepmdxf3xe] {
    animation: fadeIn-b-gepmdxf3xe 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.pay-another-way[b-gepmdxf3xe] {
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px 0px 10px 0px; 
    color: var(--text-primary);
    transition: text-shadow 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .pay-another-way:hover[b-gepmdxf3xe] {
        text-shadow: none;
        color: var(--text-primary); 
    }

.divider-text[b-gepmdxf3xe] {
    font-weight: bold;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

    .divider-text:hover[b-gepmdxf3xe] {
        transform: scale(1.05);
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

.email-input[b-gepmdxf3xe], .input-field[b-gepmdxf3xe], .select-field[b-gepmdxf3xe] {
    width: 100%;
    min-height: 44px; /* Minimum touch target size */
    height: 45px;
    padding: 12px 16px; /* Better padding for mobile */
    border-radius: 20px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
    font-size: 16px; /* Prevents zoom on iOS */
    -webkit-appearance: none; /* Remove iOS styling */
    appearance: none;
}
    .email-input:focus[b-gepmdxf3xe], .input-field:focus[b-gepmdxf3xe], .select-field:hover[b-gepmdxf3xe] {
        border: 2px solid lightgrey;
        box-shadow: 0px 0px 20px -17px;
    }
    .email-input:focus[b-gepmdxf3xe], .input-field:focus[b-gepmdxf3xe], .select-field:active[b-gepmdxf3xe] {
        transform: scale(0.99);
    }
    .email-input:focus[b-gepmdxf3xe], .input-field:focus[b-gepmdxf3xe], .select-field:focus[b-gepmdxf3xe] {
        border: 2px solid var(--secondary-color, #4A90E2);
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    }
    .email-input:focus-visible[b-gepmdxf3xe], .input-field:focus-visible[b-gepmdxf3xe], .select-field:focus-visible[b-gepmdxf3xe] {
        outline: 2px solid var(--secondary-color, #4A90E2);
        outline-offset: 2px;
    }

.email-form-container[b-gepmdxf3xe] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

.payment-selector[b-gepmdxf3xe] {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

/* Responsive breakpoints for email-form-container */
/* Mobile (≤480px) - Make it wider, nearly full width */
@media (max-width: 480px) {
    .email-form-container[b-gepmdxf3xe] {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .payment-selector[b-gepmdxf3xe] {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        box-sizing: border-box;
    }
}

/* Small tablets and large phones (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .email-form-container[b-gepmdxf3xe] {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .payment-selector[b-gepmdxf3xe] {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .email-form-container[b-gepmdxf3xe] {
        max-width: 550px;
    }
    
    .payment-selector[b-gepmdxf3xe] {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

/* Desktop (1024px and above) */
@media (min-width: 1024px) {
    .email-form-container[b-gepmdxf3xe] {
        max-width: 600px;
    }
    
    .payment-selector[b-gepmdxf3xe] {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

.payment-form[b-gepmdxf3xe] {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--bg-surface-elevated);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

    .payment-form:hover[b-gepmdxf3xe] {
        background-color: var(--bg-surface-medium); /* Slightly lighter background for hover */
    }

/* Mobile adjustments for payment-form */
@media (max-width: 767px) {
    .payment-form[b-gepmdxf3xe] {
        padding: 12px;
        margin-top: 15px;
    }
}

.shipping-form[b-gepmdxf3xe] {
    background-color: var(--bg-surface-medium);
    border: 1px solid #e0e0e0;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
    width: 100%; /* Match email-input width */
    max-width: 100%;
}

/* Remove fieldset border */
fieldset[b-gepmdxf3xe] {
    border: none;
    padding: 0;
    margin: 0;
}

.phone-input[b-gepmdxf3xe]::before {
    position: absolute;
    left: 12px;
    top: 37px;
    color: #555;
    font-size: 16px;
}

@keyframes fadeIn-b-gepmdxf3xe {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opac-b-gepmdxf3xe {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.payment-div[b-gepmdxf3xe] {
    flex-flow: column;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
}


.confirm-purchase-center[b-gepmdxf3xe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px 0px 5px 0px;
    gap: 15px;
}

.button-conf[b-gepmdxf3xe] {
    padding: 12.5px 30px;
    border: 0;
    border-radius: 100px;
    background-color: #2ba8fb;
    color: var(--text-primary);
    font-weight: Bold;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

    .button-conf:hover[b-gepmdxf3xe] {
        background-color: #6fc5ff;
        box-shadow: 0 0 20px #6fc5ff50;
        transform: scale(1.1);
    }

    .button-conf:active[b-gepmdxf3xe] {
        background-color: #3d94cf;
        transition: all 0.25s;
        -webkit-transition: all 0.25s;
        box-shadow: none;
        transform: scale(0.98);
    }

.payment-error-message-prominent[b-gepmdxf3xe] {
    background-color: var(--error-solid-bg);
    color: var(--error-solid-text);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    border: 2px solid #c82333;
    line-height: 1.5;
    margin-top: 10px;
    animation: errorPulse-b-gepmdxf3xe 0.5s ease-in-out;
}

@keyframes errorPulse-b-gepmdxf3xe {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

    /*Slider*/

.switch-cont[b-gepmdxf3xe] {
    display: flex;
    align-items: center; 
    gap: 10px;
    margin: 10px 0; 
}

.switch-text[b-gepmdxf3xe] {
    font-size: 12px;
    color: var(--text-color, #fff);
    line-height: 1.5; /* Adjust text line height for readability */
}


.switch[b-gepmdxf3xe] {
    /* switch */
    --switch-width: 46px;
    --switch-height: 24px;
    --switch-bg: rgb(131, 131, 131);
    --switch-checked-bg: rgb(0, 218, 80);
    --switch-offset: calc((var(--switch-height) - var(--circle-diameter)) / 2);
    --switch-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
    /* circle */
    --circle-diameter: 18px;
    --circle-bg: #fff;
    --circle-shadow: 1px 1px 2px rgba(146, 146, 146, 0.45);
    --circle-checked-shadow: -1px 1px 2px rgba(163, 163, 163, 0.45);
    --circle-transition: var(--switch-transition);
    /* icon */
    --icon-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
    --icon-cross-color: var(--switch-bg);
    --icon-cross-size: 6px;
    --icon-checkmark-color: var(--switch-checked-bg);
    --icon-checkmark-size: 10px;
    /* effect line */
    --effect-width: calc(var(--circle-diameter) / 2);
    --effect-height: calc(var(--effect-width) / 2 - 1px);
    --effect-bg: var(--circle-bg);
    --effect-border-radius: 1px;
    --effect-transition: all .2s ease-in-out;
}

    .switch input[b-gepmdxf3xe] {
        display: none;
    }

.switch[b-gepmdxf3xe] {
    display: inline-block;
}

    .switch svg[b-gepmdxf3xe] {
        -webkit-transition: var(--icon-transition);
        -o-transition: var(--icon-transition);
        transition: var(--icon-transition);
        position: absolute;
        height: auto;
    }

    .switch .checkmark[b-gepmdxf3xe] {
        width: var(--icon-checkmark-size);
        color: var(--icon-checkmark-color);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .switch .cross[b-gepmdxf3xe] {
        width: var(--icon-cross-size);
        color: var(--icon-cross-color);
    }

.slider[b-gepmdxf3xe] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: var(--switch-width);
    height: var(--switch-height);
    background: var(--switch-bg);
    border-radius: 999px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: var(--switch-transition);
    -o-transition: var(--switch-transition);
    transition: var(--switch-transition);
    cursor: pointer;
    margin: 10px 0px 10px 0px;
}

.circle[b-gepmdxf3xe] {
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    background: var(--circle-bg);
    border-radius: inherit;
    -webkit-box-shadow: var(--circle-shadow);
    box-shadow: var(--circle-shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--circle-transition);
    -o-transition: var(--circle-transition);
    transition: var(--circle-transition);
    z-index: 1;
    position: absolute;
    left: var(--switch-offset);
}

.slider[b-gepmdxf3xe]::before {
    content: "";
    position: absolute;
    width: var(--effect-width);
    height: var(--effect-height);
    left: calc(var(--switch-offset) + (var(--effect-width) / 2));
    background: var(--effect-bg);
    border-radius: var(--effect-border-radius);
    -webkit-transition: var(--effect-transition);
    -o-transition: var(--effect-transition);
    transition: var(--effect-transition);
}

/* actions */

.switch input:checked + .slider[b-gepmdxf3xe] {
    background: var(--switch-checked-bg);
}

    .switch input:checked + .slider .checkmark[b-gepmdxf3xe] {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .switch input:checked + .slider .cross[b-gepmdxf3xe] {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .switch input:checked + .slider[b-gepmdxf3xe]::before {
        left: calc(100% - var(--effect-width) - (var(--effect-width) / 2) - var(--switch-offset));
    }

    .switch input:checked + .slider .circle[b-gepmdxf3xe] {
        left: calc(100% - var(--circle-diameter) - var(--switch-offset));
        -webkit-box-shadow: var(--circle-checked-shadow);
        box-shadow: var(--circle-checked-shadow);
    }

/* Shipping Policy Link */
.shipping-policy-link-container[b-gepmdxf3xe] {
    text-align: center;
    margin: 10px 0 8px 0;
}

.purchase-trust-strip[b-gepmdxf3xe] {
    margin: 8px 0 0;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.shipping-policy-summary[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.shipping-policy-link[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
}

.shipping-policy-link:hover[b-gepmdxf3xe] {
    color: #ffcb05;
}

.buynow-arrival-estimate[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.35;
    margin: 14px 0 0;
    text-align: center;
}

html[data-theme="light"] .purchase-trust-strip[b-gepmdxf3xe],
html[data-theme="light"] .shipping-policy-summary[b-gepmdxf3xe],
html[data-theme="light"] .shipping-policy-link[b-gepmdxf3xe],
html[data-theme="light"] .buynow-arrival-estimate[b-gepmdxf3xe] {
    color: #111;
}

html[data-theme="light"] .shipping-policy-link:hover[b-gepmdxf3xe] {
    color: #000;
}

/* Mobile sticky Buy Now — portaled to body; only after scrolling past inline CTA */
.buynow-sticky-bar[b-gepmdxf3xe] {
    align-items: center;
    background: rgba(12, 12, 12, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    bottom: 0;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.3);
    display: none;
    gap: 10px;
    justify-content: space-between;
    left: 0;
    opacity: 0;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    position: fixed;
    right: 0;
    transform: translateY(110%);
    transition: transform 0.22s ease, opacity 0.22s ease;
    visibility: hidden;
    z-index: 900;
}

.buynow-sticky-bar__info[b-gepmdxf3xe] {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.buynow-sticky-bar__title[b-gepmdxf3xe] {
    align-items: baseline;
    display: flex;
    gap: 5px;
    min-width: 0;
    overflow: hidden;
}

.buynow-sticky-bar__name[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.92);
    flex: 0 1 auto;
    font-size: 12px;
    font-weight: 700;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buynow-sticky-bar__sep[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.45);
    flex: 0 0 auto;
    font-size: 12px;
}

.buynow-sticky-bar__vehicle[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.75);
    flex: 1 1 auto;
    font-size: 12px;
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buynow-sticky-bar__meta[b-gepmdxf3xe] {
    align-items: baseline;
    display: flex;
    gap: 8px;
    min-width: 0;
}

.buynow-sticky-bar__qty[b-gepmdxf3xe] {
    color: rgba(255, 255, 255, 0.7);
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.buynow-sticky-bar__price[b-gepmdxf3xe] {
    color: #fff;
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.buynow-sticky-bar__cta[b-gepmdxf3xe] {
    flex: 0 0 auto;
    margin: 0;
    max-width: 40%;
    min-height: 40px;
    min-width: 6.75rem;
    padding: 0.45rem 0.9rem;
    width: auto;
}

@media (max-width: 1023px) {
    .buynow-sticky-bar[b-gepmdxf3xe] {
        display: flex;
    }

    .buynow-sticky-bar--visible[b-gepmdxf3xe] {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    :global(body.buynow-sticky-bar-active)[b-gepmdxf3xe] {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
}

/* Authorization Text */
.authorization-text[b-gepmdxf3xe] {
    font-size: 13px;
    color: var(--text-primary);
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
    padding: 0 10px;
}

.authorization-text strong[b-gepmdxf3xe] {
    color: var(--text-primary);
    font-weight: 600;
}

.authorizenet-link[b-gepmdxf3xe] {
    color: #ffcb05;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.authorizenet-link:hover[b-gepmdxf3xe] {
    color: #ffd700;
}

@media (max-width: 768px) {
    .authorization-text[b-gepmdxf3xe] {
        font-size: 12px;
        padding: 0 5px;
    }

    .shipping-policy-link[b-gepmdxf3xe] {
        font-size: 13px;
    }
}
/* /Components/Pages/Checkout.razor.rz.scp.css */
.checkout-page-shell[b-ysbr1aucmp] {
    max-width: 1400px;
    margin: 0 auto;
    /* Clear absolute overlay navbar */
    padding: calc(56px + env(safe-area-inset-top, 0)) 16px 40px;
    box-sizing: border-box;
}

.purchase-trust-strip[b-ysbr1aucmp] {
    margin: 14px 0 0;
    font-size: 0.78rem;
    line-height: 1.4;
    opacity: 0.78;
    color: var(--text-secondary, rgba(255, 255, 255, 0.82));
}

html[data-theme="light"] .purchase-trust-strip[b-ysbr1aucmp],
html[data-theme="light"] .shipping-policy-link[b-ysbr1aucmp] {
    color: #111;
}

html[data-theme="light"] .shipping-policy-link:hover[b-ysbr1aucmp] {
    color: #000;
}

.checkout-page-top[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 0;
}

.checkout-back-button-wrapper[b-ysbr1aucmp] {
    display: flex;
    justify-content: flex-start;
    margin-top: 0;
}

/* Scoped CSS beats global theme-rtl; keep checkout back on the RTL start edge */
html[dir="rtl"] .checkout-back-button-wrapper[b-ysbr1aucmp] {
    justify-content: flex-end;
}

.checkout-page-top back-button[b-ysbr1aucmp] {
    display: flex;
    height: 2em;
    width: auto;
    align-items: center;
    justify-content: flex-start;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-primary);
}

html[dir="rtl"] .checkout-page-top back-button[b-ysbr1aucmp] {
    flex-direction: row-reverse;
}

.checkout-page-top back-button > svg[b-ysbr1aucmp] {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 20px;
    filter: invert();
    transition: all 0.4s ease-in;
}

html[data-theme="light"] .checkout-page-top back-button > svg[b-ysbr1aucmp] {
    filter: none;
}

.checkout-page-top back-button:hover > svg[b-ysbr1aucmp] {
    font-size: 1.2em;
    transform: translateX(-5px);
}

html[dir="rtl"] .checkout-page-top back-button > svg[b-ysbr1aucmp] {
    transform: scaleX(-1);
}

html[dir="rtl"] .checkout-page-top back-button:hover > svg[b-ysbr1aucmp] {
    transform: scaleX(-1) translateX(5px);
}

.checkout-page-title[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 2px;
    padding: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.checkout-container[b-ysbr1aucmp] {
    max-width: 1400px;
    margin: 4px auto 40px auto;
    padding: 0;
    min-width: 0;
}

.product-summary[b-ysbr1aucmp] {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.product-summary h2[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-price[b-ysbr1aucmp] {
    color: #ffcb05;
    font-size: 1.25rem;
    font-weight: bold;
}

.checkout-content[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 1023px) {
    .checkout-left-column[b-ysbr1aucmp] {
        gap: 25px;
        min-width: 0;
        max-width: 100%;
    }
    
    .checkout-right-column[b-ysbr1aucmp] {
        gap: 25px;
    }
    
    .checkout-section[b-ysbr1aucmp] {
        margin-bottom: 25px;
    }
}

@media (min-width: 1024px) {
    .checkout-content[b-ysbr1aucmp] {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }

    .checkout-left-column[b-ysbr1aucmp] {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-width: 0;
    }

    .checkout-right-column[b-ysbr1aucmp] {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-width: 0;
    }
}

.checkout-section[b-ysbr1aucmp] {
    background: rgba(34, 34, 34, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

/* Quick Checkout button stack — stretch wallet buttons to container (GPay injects fixed-width nodes) */
.quick-checkout-buttons[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.sms-opt-in-slot[b-ysbr1aucmp] {
    width: 100%;
    margin-bottom: 2px;
}

.quick-checkout-buttons[b-ysbr1aucmp] (.applepay-wrap) {
    flex: 0 0 44px;
    width: 100%;
    max-width: 100%;
    height: 44px;
    max-height: 44px;
    overflow: hidden;
    display: block;
}

.quick-checkout-buttons[b-ysbr1aucmp] (.gpay-button-host) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    box-sizing: border-box;
    display: block !important;
    overflow: hidden !important;
    flex: 0 0 44px;
    padding: 0 !important;
}

.quick-checkout-buttons[b-ysbr1aucmp] (.applepay-container) {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start !important;
}

.quick-checkout-buttons[b-ysbr1aucmp] (.apple-pay-button) {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.quick-checkout-buttons .buy-with-prime-container[b-ysbr1aucmp] {
    display: block !important;
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    flex: 0 0 auto;
    margin: 0;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-checkout-buttons .buy-with-prime-container[b-ysbr1aucmp] (amazon-purchase-button) {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Apple Pay styling lives in ApplePayButton.razor.css (CSS isolation). */

.checkout-section:hover[b-ysbr1aucmp] {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.payment-form-section[b-ysbr1aucmp] {
    background: rgba(34, 34, 34, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-top: 0;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.payment-form-section:hover[b-ysbr1aucmp] {
    background-color: rgba(51, 51, 51, 0.95);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.payment-form-section > *[b-ysbr1aucmp] {
    width: 100%;
    box-sizing: border-box;
}

.checkout-product-image[b-ysbr1aucmp] {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
}

.product-image-section[b-ysbr1aucmp] {
    padding-top: 0;
    padding-bottom: 0;
}

.product-image-section[b-ysbr1aucmp] {
    text-align: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.gpay-section[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.order-details-content h4[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.order-details-row[b-ysbr1aucmp] {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.quantity-selector-inline[b-ysbr1aucmp] {
    display: flex;
    align-items: center;
}

.order-price[b-ysbr1aucmp] {
    color: var(--battery-color, #ffcb05);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}


.checkout-section h3[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    font-weight: 600;
}

.checkout-section h4[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.quantity-selector[b-ysbr1aucmp] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.quantity-input-wrapper[b-ysbr1aucmp] {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.quantity-input[b-ysbr1aucmp] {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    background-color: #f9f9f9;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.quantity-btn[b-ysbr1aucmp] {
    min-width: 44px;
    min-height: 44px;
    background-color: var(--bg-surface-medium);
    color: var(--text-primary);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover[b-ysbr1aucmp] {
    background-color: #555;
}

.decrement-btn[b-ysbr1aucmp] {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.increment-btn[b-ysbr1aucmp] {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.shipping-options[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.shipping-option[b-ysbr1aucmp] {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(192, 192, 192, 0.6);
    border-radius: 12px;
    background-color: #292929;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover[b-ysbr1aucmp] {
    background-color: var(--bg-surface-medium);
    border-color: rgba(255, 255, 255, 0.8);
}

.shipping-option.selected[b-ysbr1aucmp] {
    background-color: #3b3b3b;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.shipping-text[b-ysbr1aucmp] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}

.shipping-text i[b-ysbr1aucmp] {
    font-size: 20px;
    color: #ffcb05;
}

.shipping-check[b-ysbr1aucmp] {
    font-size: 18px;
    font-weight: bold;
    color: #ffcb05;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shipping-option.selected .shipping-check[b-ysbr1aucmp] {
    opacity: 1;
}

.shipping-policy-link-container[b-ysbr1aucmp] {
    text-align: center;
    margin-top: 15px;
}

.shipping-policy-link[b-ysbr1aucmp] {
    color: var(--text-muted);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
}

.shipping-policy-link:hover[b-ysbr1aucmp] {
    color: #ffcb05;
}

.order-summary[b-ysbr1aucmp] {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.order-summary-enhanced[b-ysbr1aucmp] {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
}

.summary-row[b-ysbr1aucmp] {
    display: flex;
    justify-content: space-between;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 10px;
}

.summary-row.total-row[b-ysbr1aucmp] {
    font-size: 1.5rem;
    font-weight: bold;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 15px;
}

.payment-divider[b-ysbr1aucmp] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-line[b-ysbr1aucmp] {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.divider-text[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
    padding: 0;
    letter-spacing: 0.5px;
}


/* Responsive breakpoints for email-form-container */
@media (max-width: 480px) {
    .email-form-container[b-ysbr1aucmp] {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .payment-selector[b-ysbr1aucmp] {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        box-sizing: border-box;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .email-form-container[b-ysbr1aucmp] {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .payment-selector[b-ysbr1aucmp] {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .email-form-container[b-ysbr1aucmp] {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .email-form-container[b-ysbr1aucmp] {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}

/* Mobile adjustments for payment-form */
@media (max-width: 767px) {
    .payment-form[b-ysbr1aucmp] {
        padding: 12px;
        margin-top: 15px;
    }
}

.payment-form-container[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Import styles from BuyNow.razor.css */
.sr-only[b-ysbr1aucmp] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.input-label[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.email-input[b-ysbr1aucmp],
.input-field[b-ysbr1aucmp],
.select-field[b-ysbr1aucmp] {
    width: 100%;
    min-height: 44px;
    height: 45px;
    padding: 12px 16px;
    border-radius: 20px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--input-bg);
    color: var(--input-text);
    margin-bottom: 20px;
}

.select-field:hover[b-ysbr1aucmp] {
    border: 2px solid lightgrey;
    box-shadow: 0px 0px 20px -17px;
}

.email-input:focus[b-ysbr1aucmp],
.input-field:focus[b-ysbr1aucmp],
.select-field:focus[b-ysbr1aucmp] {
    outline: none;
}

.email-input:focus[b-ysbr1aucmp],
.input-field:focus[b-ysbr1aucmp],
.select-field:active[b-ysbr1aucmp] {
    transform: scale(0.99);
}

.email-input:focus-visible[b-ysbr1aucmp],
.input-field:focus-visible[b-ysbr1aucmp],
.select-field:focus-visible[b-ysbr1aucmp] {
    outline: 2px solid var(--battery-color, #ffcb05);
    outline-offset: 2px;
}

.flex-row[b-ysbr1aucmp] {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 0;
}

.flex-row > div[b-ysbr1aucmp] {
    flex: 1;
    min-width: 0;
}

.flex-row .input-field[b-ysbr1aucmp] {
    margin-bottom: 0;
}

.half-width[b-ysbr1aucmp] {
    width: 100%;
}

.shipping-form[b-ysbr1aucmp] {
    background-color: transparent;
    border: none;
    margin-top: 20px;
    padding: 10px;
    border-radius: 0;
}

.shipping-form-input[b-ysbr1aucmp] {
    margin-bottom: 0;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.shipping-form-input .input-field:not(.flex-row .input-field)[b-ysbr1aucmp],
.shipping-form-input .select-field[b-ysbr1aucmp] {
    margin-bottom: 20px;
}

.shipping-form-input .select-field[b-ysbr1aucmp] {
    padding-top: 12px;
    padding-bottom: 12px;
}

.card-information[b-ysbr1aucmp],
.cardholder[b-ysbr1aucmp] {
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.phone-input[b-ysbr1aucmp] {
    margin-top: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.phone-input .input-label[b-ysbr1aucmp] {
    margin-bottom: 5px;
}

.phone-input .input-field[b-ysbr1aucmp] {
    margin-bottom: 0;
}

.bg-fade-in[b-ysbr1aucmp] {
    animation: fadeIn-b-ysbr1aucmp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes fadeIn-b-ysbr1aucmp {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

fieldset[b-ysbr1aucmp] {
    border: none;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.input-label[b-ysbr1aucmp] {
    margin-bottom: 10px;
}

.bg-fade-in[b-ysbr1aucmp] {
    animation: fadeIn-b-ysbr1aucmp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes fadeIn-b-ysbr1aucmp {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.switch-cont[b-ysbr1aucmp] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.switch-text[b-ysbr1aucmp] {
    font-size: 12px;
    color: var(--text-primary);
    line-height: 1.5;
}

.switch[b-ysbr1aucmp] {
    --switch-width: 46px;
    --switch-height: 24px;
    --switch-bg: rgb(131, 131, 131);
    --switch-checked-bg: rgb(0, 218, 80);
    --switch-offset: calc((var(--switch-height) - var(--circle-diameter)) / 2);
    --switch-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
    --circle-diameter: 18px;
    --circle-bg: #fff;
    --circle-shadow: 1px 1px 2px rgba(146, 146, 146, 0.45);
    --circle-checked-shadow: -1px 1px 2px rgba(163, 163, 163, 0.45);
    --circle-transition: var(--switch-transition);
    --icon-transition: all .2s cubic-bezier(0.27, 0.2, 0.25, 1.51);
    --icon-cross-color: var(--switch-bg);
    --icon-cross-size: 6px;
    --icon-checkmark-color: var(--switch-checked-bg);
    --icon-checkmark-size: 10px;
    --effect-width: calc(var(--circle-diameter) / 2);
    --effect-height: calc(var(--effect-width) / 2 - 1px);
    --effect-bg: var(--circle-bg);
    --effect-border-radius: 1px;
    --effect-transition: all .2s ease-in-out;
    display: inline-block;
}

.switch input[b-ysbr1aucmp] {
    display: none;
}

.switch svg[b-ysbr1aucmp] {
    transition: var(--icon-transition);
    position: absolute;
    height: auto;
}

.switch .checkmark[b-ysbr1aucmp] {
    width: var(--icon-checkmark-size);
    color: var(--icon-checkmark-color);
    transform: scale(0);
}

.switch .cross[b-ysbr1aucmp] {
    width: var(--icon-cross-size);
    color: var(--icon-cross-color);
}

.slider[b-ysbr1aucmp] {
    box-sizing: border-box;
    width: var(--switch-width);
    height: var(--switch-height);
    background: var(--switch-bg);
    border-radius: 999px;
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--switch-transition);
    cursor: pointer;
    margin: 10px 0;
}

.circle[b-ysbr1aucmp] {
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    background: var(--circle-bg);
    border-radius: inherit;
    box-shadow: var(--circle-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--circle-transition);
    z-index: 1;
    position: absolute;
    left: var(--switch-offset);
}

.slider[b-ysbr1aucmp]::before {
    content: "";
    position: absolute;
    width: var(--effect-width);
    height: var(--effect-height);
    left: calc(var(--switch-offset) + (var(--effect-width) / 2));
    background: var(--effect-bg);
    border-radius: var(--effect-border-radius);
    transition: var(--effect-transition);
}

.switch input:checked + .slider[b-ysbr1aucmp] {
    background: var(--switch-checked-bg);
}

.switch input:checked + .slider .checkmark[b-ysbr1aucmp] {
    transform: scale(1);
}

.switch input:checked + .slider .cross[b-ysbr1aucmp] {
    transform: scale(0);
}

.switch input:checked + .slider[b-ysbr1aucmp]::before {
    left: calc(100% - var(--effect-width) - (var(--effect-width) / 2) - var(--switch-offset));
}

.switch input:checked + .slider .circle[b-ysbr1aucmp] {
    left: calc(100% - var(--circle-diameter) - var(--switch-offset));
    box-shadow: var(--circle-checked-shadow);
}

.confirm-purchase-center[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 15px;
}

.button-conf[b-ysbr1aucmp] {
    padding: 12.5px 30px;
    border: 0;
    border-radius: 100px;
    background-color: #2ba8fb;
    color: var(--text-primary);
    font-weight: bold;
    transition: all 0.5s;
    cursor: pointer;
    font-size: 16px;
}

.button-conf:hover[b-ysbr1aucmp] {
    background-color: #6fc5ff;
    box-shadow: 0 0 20px #6fc5ff50;
    transform: scale(1.1);
}

.button-conf:active[b-ysbr1aucmp] {
    background-color: #3d94cf;
    transition: all 0.25s;
    box-shadow: none;
    transform: scale(0.98);
}

.payment-error-message-prominent[b-ysbr1aucmp] {
    background-color: var(--error-solid-bg);
    color: var(--error-solid-text);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    border: 2px solid #c82333;
    line-height: 1.5;
    animation: errorPulse-b-ysbr1aucmp 0.5s ease-in-out;
}

@keyframes errorPulse-b-ysbr1aucmp {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.authorization-text[b-ysbr1aucmp] {
    font-size: 13px;
    color: var(--text-primary);
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
    padding: 0 10px;
}

.authorization-text strong[b-ysbr1aucmp] {
    color: var(--text-primary);
    font-weight: 600;
}

.authorizenet-link[b-ysbr1aucmp] {
    color: #ffcb05;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    display: inline;
}

.authorizenet-link:hover[b-ysbr1aucmp] {
    color: #ffd700;
}

.checkout-loading[b-ysbr1aucmp],
.checkout-error[b-ysbr1aucmp] {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-primary);
}

.checkout-loading-skeleton[b-ysbr1aucmp] {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.checkout-loading-grid[b-ysbr1aucmp] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.checkout-loading-stack[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .checkout-loading-grid[b-ysbr1aucmp] {
        grid-template-columns: 1fr;
    }
}

.checkout-error h1[b-ysbr1aucmp] {
    font-size: 2rem;
    margin-bottom: 20px;
}

.back-link[b-ysbr1aucmp] {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffcb05;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-link:hover[b-ysbr1aucmp] {
    background-color: #ffd700;
}

@media (max-width: 768px) {
    .checkout-page-shell[b-ysbr1aucmp] {
        padding: calc(48px + env(safe-area-inset-top, 0)) 12px 20px;
    }

    .checkout-page-title[b-ysbr1aucmp] {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .checkout-container[b-ysbr1aucmp] {
        margin: 2px auto 20px auto;
        padding: 0;
    }

    .checkout-section[b-ysbr1aucmp] {
        padding: 15px;
        border-width: 2px !important;
        margin-bottom: 20px;
    }
    
    .checkout-left-column[b-ysbr1aucmp] {
        gap: 20px;
    }
    
    .checkout-section h3[b-ysbr1aucmp] {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .checkout-section h4[b-ysbr1aucmp] {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .button-conf[b-ysbr1aucmp],
    .quantity-btn[b-ysbr1aucmp] {
        min-height: 44px;
        min-width: 44px;
    }
    
    .input-field[b-ysbr1aucmp],
    .select-field[b-ysbr1aucmp],
    .email-input[b-ysbr1aucmp] {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Address Verification Styles */
.address-verified-icon[b-ysbr1aucmp] {
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
}

.address-verifying-icon[b-ysbr1aucmp] {
    display: inline-block;
    font-size: 1.2rem;
}

@keyframes spin-b-ysbr1aucmp {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.address-verifying-section[b-ysbr1aucmp] {
    animation: fadeIn-b-ysbr1aucmp 0.3s ease-in;
}

.address-correction-section[b-ysbr1aucmp] {
    animation: fadeIn-b-ysbr1aucmp 0.3s ease-in;
}

.address-correction-section h3[b-ysbr1aucmp] {
    font-size: 1.3rem;
}

.address-correction-section .button[b-ysbr1aucmp] {
    min-width: 180px;
}

.address-correction-section .button:hover[b-ysbr1aucmp] {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .address-correction-section > div[style*="grid-template-columns"][b-ysbr1aucmp] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .address-correction-section .button[b-ysbr1aucmp] {
        width: 100%;
        min-width: unset;
    }
}

/* /Components/Pages/CommonProblems.razor.rz.scp.css */
.problems-container[b-l1tn3cwiwr] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-primary);
}

.breadcrumb[b-l1tn3cwiwr] {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb[b-l1tn3cwiwr] (a.breadcrumb-link),
.breadcrumb[b-l1tn3cwiwr] (a.breadcrumb-link:visited) {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-decoration-color: currentColor;
    transition: color 0.3s ease;
}

.breadcrumb[b-l1tn3cwiwr] (a.breadcrumb-link:hover) {
    color: #F58220 !important;
    -webkit-text-fill-color: #F58220;
}

.breadcrumb-separator[b-l1tn3cwiwr] {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current[b-l1tn3cwiwr] {
    color: #F58220;
    font-weight: 600;
}

.problems-header[b-l1tn3cwiwr] {
    text-align: center;
    margin-bottom: 50px;
}

.problems-header h1[b-l1tn3cwiwr] {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.problems-intro[b-l1tn3cwiwr] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.problems-content[b-l1tn3cwiwr] {
    line-height: 1.8;
    color: var(--text-primary);
}

.problems-content p[b-l1tn3cwiwr],
.problems-content li[b-l1tn3cwiwr],
.problems-content h2[b-l1tn3cwiwr],
.problems-content h3[b-l1tn3cwiwr],
.problems-content strong[b-l1tn3cwiwr] {
    color: var(--text-primary) !important;
}

.problem-section[b-l1tn3cwiwr] {
    margin-bottom: 50px;
}

.problem-section h2[b-l1tn3cwiwr] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.problem-item[b-l1tn3cwiwr] {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #F58220;
    align-items: flex-start;
}

.problem-icon[b-l1tn3cwiwr] {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.problem-content[b-l1tn3cwiwr] {
    flex: 1;
}

.problem-content h2[b-l1tn3cwiwr] {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    border: none;
    padding: 0;
}

.problem-content h3[b-l1tn3cwiwr] {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.problem-content p[b-l1tn3cwiwr] {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
}

.problem-list[b-l1tn3cwiwr] {
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.problem-list li[b-l1tn3cwiwr] {
    margin-bottom: 8px;
    line-height: 1.6;
}

.problem-content a[b-l1tn3cwiwr] {
    color: #F58220;
    text-decoration: underline;
    font-weight: 500;
}

.problem-content a:hover[b-l1tn3cwiwr] {
    color: #ff9a40;
}

.tips-grid[b-l1tn3cwiwr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.tip-card[b-l1tn3cwiwr] {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-top: 3px solid #F58220;
}

.tip-card h3[b-l1tn3cwiwr] {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tip-card p[b-l1tn3cwiwr] {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.problems-cta[b-l1tn3cwiwr] {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button[b-l1tn3cwiwr] {
    display: inline-block;
    padding: 15px 40px;
    background: #F58220;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover[b-l1tn3cwiwr] {
    background: #ff9a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.cta-button-secondary[b-l1tn3cwiwr] {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #F58220;
    text-decoration: none;
    border: 2px solid #F58220;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover[b-l1tn3cwiwr] {
    background: rgba(245, 130, 32, 0.1);
    border-color: #ff9a40;
    color: #ff9a40;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .problems-container[b-l1tn3cwiwr] {
        padding: 20px 15px;
    }

    .problems-header h1[b-l1tn3cwiwr] {
        font-size: 2rem;
    }

    .problems-intro[b-l1tn3cwiwr] {
        font-size: 1rem;
    }

    .problem-item[b-l1tn3cwiwr] {
        flex-direction: column;
        gap: 15px;
    }

    .problem-icon[b-l1tn3cwiwr] {
        font-size: 2rem;
    }

    .tips-grid[b-l1tn3cwiwr] {
        grid-template-columns: 1fr;
    }

    .problems-cta[b-l1tn3cwiwr] {
        flex-direction: column;
        align-items: center;
    }

    .cta-button[b-l1tn3cwiwr],
    .cta-button-secondary[b-l1tn3cwiwr] {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* /Components/Pages/ContactUs.razor.rz.scp.css */
.contact-container[b-g1gm975k48] {
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    justify-content: center;
}

.contact-mailing-address[b-g1gm975k48] {
    color: var(--text-secondary);
    font-size: 15px;
    text-align: center;
    margin: 0 16px 24px;
    line-height: 1.5;
}

.contact-mailing-address a[b-g1gm975k48] {
    color: #ffcb05;
    text-decoration: underline;
}

/* /Components/Pages/ContactUsForm.razor.rz.scp.css */
.form[b-p4dncbsn30] {
    display: block;
    justify-self: center;
    background: var(--bg-surface-medium);
    top: 40px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin: 10px;
    margin-top: 20px;
    border: none; /* Remove border */
}

/* Remove fieldset border in contact form */
.form fieldset[b-p4dncbsn30] {
    border: none;
    padding: 0;
    margin: 0;
}

    .form:hover[b-p4dncbsn30] {
        background-color: #444; 
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
        transform: translateY(-3px);
    }

html[data-theme="light"] .form:hover[b-p4dncbsn30] {
    background-color: var(--bg-surface-elevated);
    box-shadow: 0 4px 6px var(--shadow-color);
    transform: none;
}

    .contact-heading[b-p4dncbsn30] {
        color: var(--text-primary);
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
        max-width: 700px;
        font-size: inherit;
        font-weight: inherit;
        line-height: inherit;
        margin-top: 0;
    }

.flex[b-p4dncbsn30] {
    display: flex;
    gap: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .form[b-p4dncbsn30] {
        width: calc(100% - 10px);
    }

    .flex[b-p4dncbsn30] {
        flex-direction: column;
    }
}

.flex label[b-p4dncbsn30] {
    flex: 1; 
    width: 100%;
    position: relative;
}

.form label[b-p4dncbsn30] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.input[b-p4dncbsn30], .input01[b-p4dncbsn30] {
    width: 100%;
    outline: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--input-bg);
    color: var(--input-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 18px;
}

.input:disabled[b-p4dncbsn30],
.input01:disabled[b-p4dncbsn30],
fieldset:disabled .input[b-p4dncbsn30],
fieldset:disabled .input01[b-p4dncbsn30] {
    background-color: #f5f5f5;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
}

.input01[b-p4dncbsn30] {
    resize: vertical;
    min-height: 100px;
    max-height: 500px;
}

.form label span[b-p4dncbsn30] {
    left: 14px;
    top: 14px;
    padding: 0 5px;
    color: var(--text-primary);
    font-size: 14px;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.form label .input:focus + span[b-p4dncbsn30],
.form label .input:not(:placeholder-shown) + span[b-p4dncbsn30],
.form label .input01:focus + span[b-p4dncbsn30],
.form label .input01:not(:placeholder-shown) + span[b-p4dncbsn30] {
    left: 10px;
    font-size: 12px;
    color: #62be28; /* Green when valid */
}

.form label .input:focus[b-p4dncbsn30],
.form label .input01:focus[b-p4dncbsn30] {
    border-color: #62be28; /* Green border on focus */
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); /* Subtle green glow */
}

.fancy[b-p4dncbsn30] {
    display: block;
    margin: 0 auto;
    background-color: #62be28; /* Green background */
    border-radius: 20px; /* Rounded corners */
    color: var(--text-primary); /* White text */
    cursor: pointer; /* Pointer cursor on hover */
    padding: 12px 30px; /* Padding for size */
    font-size: 16px; /* Readable font size */
    font-weight: bold; /* Bold text */
    align-self: center; /* Centers the button horizontally */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
    position: relative;
    overflow: hidden;
    margin-top: 10px; /* Spacing above the button */
}

    .fancy:hover[b-p4dncbsn30] {
        background-color: #1e456d; /* Darker blue on hover */
        transform: scale(1.05); /* Slightly enlarge */
    }

    .fancy:active[b-p4dncbsn30] {
        transform: scale(0.95);
    }

.icon-container[b-p4dncbsn30] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-primary);
    user-select: none;
}

    .icon-container svg[b-p4dncbsn30] {
        width: 50px;
        height: 50px;
    }

    .icon-container:hover .envelope[b-p4dncbsn30] {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .icon-container:hover .paper-plane[b-p4dncbsn30] {
        opacity: 1;
        animation: launch-b-p4dncbsn30 1s ease-in-out forwards;
    }

.paper-plane[b-p4dncbsn30] {
    opacity: 0;
}

@keyframes launch-b-p4dncbsn30 {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) rotate(-10deg);
    }

    100% {
        transform: translateY(-50px) rotate(20deg);
        opacity: 0;
    }
}


.alert[b-p4dncbsn30] {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4[b-p4dncbsn30] {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link[b-p4dncbsn30] {
  font-weight: bold;
}

.alert > p[b-p4dncbsn30],
.alert > ul[b-p4dncbsn30] {
  margin-bottom: 0;
}

.alert > p + p[b-p4dncbsn30] {
  margin-top: 5px;
}

.alert-dismissable[b-p4dncbsn30],
.alert-dismissible[b-p4dncbsn30] {
  padding-right: 35px;
}

.alert-dismissable .close[b-p4dncbsn30],
.alert-dismissible .close[b-p4dncbsn30] {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success[b-p4dncbsn30] {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr[b-p4dncbsn30] {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link[b-p4dncbsn30] {
  color: #2b542c;
}

.alert-info[b-p4dncbsn30] {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr[b-p4dncbsn30] {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link[b-p4dncbsn30] {
  color: #245269;
}

.alert-warning[b-p4dncbsn30] {
  background-color: #fcf8e3 !important;
  border-color: #faebcc !important;
  color: #8a6d3b !important;
}

.validation-message[b-p4dncbsn30] {
    color: var(--error-text) !important;
}

.alert-warning hr[b-p4dncbsn30] {
  border-top-color: #f7e1b5 !important;
}

.alert-warning .alert-link[b-p4dncbsn30] {
  color: #66512c !important;
}

.alert-danger[b-p4dncbsn30] {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr[b-p4dncbsn30] {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link[b-p4dncbsn30] {
  color: #843534;
}

.loader[b-p4dncbsn30] {
    position: relative;
    border-style: solid;
    box-sizing: border-box;
    border-width: 40px 60px 30px 60px;
    border-color: #3760C9 #96DDFC #96DDFC #36BBF7;
    animation: envFloating-b-p4dncbsn30 1s ease-in infinite alternate;
}

    .loader[b-p4dncbsn30]:after {
        content: "";
        position: absolute;
        right: 62px;
        top: -40px;
        height: 70px;
        width: 50px;
        background-image: linear-gradient(#fff 45px, transparent 0), linear-gradient(#fff 45px, transparent 0), linear-gradient(#fff 45px, transparent 0);
        background-repeat: no-repeat;
        background-size: 30px 4px;
        background-position: 0px 11px, 8px 35px, 0px 60px;
        animation: envDropping-b-p4dncbsn30 0.75s linear infinite;
    }

@keyframes envFloating-b-p4dncbsn30 {
    0% {
        transform: translate(-2px, -5px)
    }

    100% {
        transform: translate(0, 5px)
    }
}

@keyframes envDropping-b-p4dncbsn30 {
    0% {
        background-position: 100px 11px, 115px 35px, 105px 60px;
        opacity: 1;
    }

    50% {
        background-position: 0px 11px, 20px 35px, 5px 60px;
    }

    60% {
        background-position: -30px 11px, 0px 35px, -10px 60px;
    }

    75%, 100% {
        background-position: -30px 11px, -30px 35px, -30px 60px;
        opacity: 0;
    }
}
      
/* /Components/Pages/Documents.razor.rz.scp.css */
.documents-container[b-nfwunzudix] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-primary);
}

.breadcrumb[b-nfwunzudix] {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* NavLink <a> is unscoped — :deep + !important so colors beat default link blue */
.breadcrumb[b-nfwunzudix] (a.breadcrumb-link),
.breadcrumb[b-nfwunzudix] (a.breadcrumb-link:visited) {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-decoration-color: currentColor;
    transition: color 0.3s ease;
}

.breadcrumb[b-nfwunzudix] (a.breadcrumb-link:hover) {
    color: #F58220 !important;
    -webkit-text-fill-color: #F58220;
}

.breadcrumb[b-nfwunzudix] (a.breadcrumb-link.active) {
    color: #F58220 !important;
    -webkit-text-fill-color: #F58220;
    font-weight: 600;
}

.breadcrumb-current[b-nfwunzudix] {
    color: #F58220;
    font-weight: 600;
}

.breadcrumb-separator[b-nfwunzudix] {
    color: rgba(255, 255, 255, 0.6);
}

.documents-header[b-nfwunzudix] {
    text-align: center;
    margin-bottom: 50px;
}

.documents-header h1[b-nfwunzudix] {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.documents-intro[b-nfwunzudix] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.documents-content[b-nfwunzudix] {
    line-height: 1.8;
}

.documents-section[b-nfwunzudix] {
    margin-bottom: 50px;
}

.documents-section h2[b-nfwunzudix] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.document-grid[b-nfwunzudix] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.document-card[b-nfwunzudix] {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #F58220;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover[b-nfwunzudix] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.document-card h3[b-nfwunzudix] {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.document-card p[b-nfwunzudix] {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.document-link[b-nfwunzudix] {
    color: #F58220;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.document-link:hover[b-nfwunzudix] {
    color: #ff9a40;
}

.quick-links[b-nfwunzudix] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.quick-link[b-nfwunzudix] {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(245, 130, 32, 0.1);
    color: #F58220;
    text-decoration: none;
    border: 2px solid #F58220;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link:hover[b-nfwunzudix] {
    background: rgba(245, 130, 32, 0.2);
    border-color: #ff9a40;
    color: #ff9a40;
}

.documents-section-lead[b-nfwunzudix] {
    color: var(--text-secondary);
    margin: -10px 0 20px;
    line-height: 1.6;
}

.make-link-grid[b-nfwunzudix] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.make-link[b-nfwunzudix] {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.make-link:hover[b-nfwunzudix] {
    background: rgba(245, 130, 32, 0.15);
    border-color: #F58220;
    color: #F58220;
}

.make-link-all[b-nfwunzudix] {
    border-color: #F58220;
    color: #F58220;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .documents-container[b-nfwunzudix] {
        padding: 20px 15px;
    }

    .documents-header h1[b-nfwunzudix] {
        font-size: 2rem;
    }

    .documents-intro[b-nfwunzudix] {
        font-size: 1rem;
    }

    .document-grid[b-nfwunzudix] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-links[b-nfwunzudix] {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-link[b-nfwunzudix] {
        text-align: center;
    }
}

/* /Components/Pages/Essentials.razor.rz.scp.css */
.center[b-vnn1vi9fyk] {
    text-align: center;
    margin: 6px 0 10px;
}

    .center h1[b-vnn1vi9fyk] {
        margin: 0 0 6px;
        font-weight: 700;
        /* Smaller on mobile */
        font-size: clamp(18px, 1.2vw + 12px, 30px);
        line-height: 1.15;
    }

.sub[b-vnn1vi9fyk] {
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(13px,1vw+8px,18px);
}

.hero img[b-vnn1vi9fyk] {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Section wrapper (single, subtle gradient) */
.car-key-essentials[b-vnn1vi9fyk] {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin: 8px;
    padding: 12px 8px 16px;
    border-radius: 24px;
    margin: 8px;
    padding: 12px 8px 16px;
    background: linear-gradient(135deg, var(--bg-canvas) 0%, var(--bg-surface) 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
}

    /* Moving gradient layer using BatteryGuru hex colors */
    .car-key-essentials[b-vnn1vi9fyk]::before {
        content: "";
        position: absolute;
        inset: -20%;
        pointer-events: none;
        z-index: 0;
        background: linear-gradient(120deg, 
            #62BE28 0%, /* CR2032 Lima Green */
            #09C0DE 25%, /* CR2354 Topaz */
            #4A3F98 50%, /* CR2450 Blueberry */
            #FFCB05 75%, /* CR2025 Supernova */
            #F58220 100% /* CR2016 Cadmium Orange */
        );
        background-size: 300% 300%;
        animation: bg-pan-b-vnn1vi9fyk 160s ease-in-out infinite alternate;
        filter: saturate(110%) opacity(0.4); /* vibrant gradient with controlled opacity */
    }

    /* Soft Cadmium-Orange glow to tie accents (very faint) */
    .car-key-essentials[b-vnn1vi9fyk]::after {
        content: "";
        position: absolute;
        left: -20%;
        top: -20%;
        right: -20%;
        height: 42%;
        z-index: 0;
        background: radial-gradient(40% 60% at 18% 12%, rgba(245,130,32,0.08), transparent 70%);
        pointer-events: none;
    }

    /* Keep content above gradient layers */
    .car-key-essentials > *[b-vnn1vi9fyk] {
        position: relative;
        z-index: 1;
    }

/* Ultra-slow background pan */
@keyframes bg-pan-b-vnn1vi9fyk {
    0% {
        background-position: 0% 30%;
    }

    50% {
        background-position: 55% 70%;
    }

    100% {
        background-position: 100% 30%;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion:reduce) {
    .car-key-essentials[b-vnn1vi9fyk]::before {
        animation: none;
    }
}
/* Optional decorative wraps */
.car-key-essentials > img[b-vnn1vi9fyk] {
    padding-top: 8px;
    align-self: flex-start;
    width: 100%;
    height: 100%;
    opacity: .25;
    display: block;
}

/* Steps layout (mobile stacked) */
.steps[b-vnn1vi9fyk] {
    list-style: none;
    margin: 16px 8px 16px;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

/* Glassmorphic cards (no competing gradient) */
.card[b-vnn1vi9fyk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px;
    border-radius: 24px;
    background: color-mix(in srgb, var(--text-primary) 7%, transparent);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 8px 24px rgba(0,0,0,0.25);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .card:hover[b-vnn1vi9fyk] {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 28px rgba(0,0,0,0.3);
    }

.steps li:nth-child(1)[b-vnn1vi9fyk] {
    border: 2px solid rgba(245, 130, 32, 0.35);
}

.steps li:nth-child(2)[b-vnn1vi9fyk] {
    border: 2px solid rgba(9, 192, 222, 0.35);
}

.steps li:nth-child(3)[b-vnn1vi9fyk] {
    border: 2px solid rgba(98, 190, 40, 0.35);
}

/* Media box */
.media[b-vnn1vi9fyk] {
    width: min(360px,100%);
    aspect-ratio: 16/9;
    display: grid;
    place-items: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.08);
}

.fit[b-vnn1vi9fyk] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ttl[b-vnn1vi9fyk] {
    font-size: 18px;
    margin: 10px 0 2px;
}

.txt[b-vnn1vi9fyk] {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
}

/* Elegant car icon + animations */
.car[b-vnn1vi9fyk] {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(245,130,32,.35));
}

.glow[b-vnn1vi9fyk]::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 30px 6px rgba(245,130,32,.22);
    opacity: .85;
    transition: opacity .3s ease;
}

.card:hover .glow[b-vnn1vi9fyk]::after {
    opacity: 1;
}

@keyframes pulse-b-vnn1vi9fyk {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }

    100% {
        transform: scale(1)
    }
}

.pulse .car[b-vnn1vi9fyk] {
    animation: pulse-b-vnn1vi9fyk 2.6s ease-in-out infinite;
}

/* Tablet & Desktop: left → right */
@media (min-width:768px) {
    .steps[b-vnn1vi9fyk] {
        grid-template-columns: repeat(3,1fr);
        gap: 16px;
    }

    .card[b-vnn1vi9fyk] {
        padding: 16px;
    }
}

@media (min-width:1100px) {
    .steps[b-vnn1vi9fyk] {
        gap: 20px;
    }

    .center h1[b-vnn1vi9fyk] {
        font-size: 30px;
    }
    /* cap heading growth */
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
    .pulse .car[b-vnn1vi9fyk] {
        animation: none;
    }

    .card[b-vnn1vi9fyk], .hero img[b-vnn1vi9fyk] {
        transition: none;
    }
}
/* /Components/Pages/Family.razor.rz.scp.css */
.family-section[b-dc2askefmh] {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 940px;
    background-color: var(--bg-surface);
    border-radius: 20px 20px;
    text-align: center;
}

/* Content wrapper */
.family-content[b-dc2askefmh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 10px 10px 10px;
}

/* Text Container */
.text-container[b-dc2askefmh] {
    max-width: 940px;
    margin: 0 auto;
}

    .text-container h2[b-dc2askefmh] {
        font-size: 2rem;
        margin: 0;
    }

/* Description */
.description[b-dc2askefmh] {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Family Image */
.family-image[b-dc2askefmh] {
    width: 100%;
    max-width: 900px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .text-container[b-dc2askefmh] {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .text-container[b-dc2askefmh] {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .family-section[b-dc2askefmh] {
        width: calc(100% - 20px);
    }
}
/* /Components/Pages/FAQ.razor.rz.scp.css */
.faq-section[b-z96vndyo36] {
    padding: 40px 20px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.faq-header h2[b-z96vndyo36] {
    text-align: center;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-header p[b-z96vndyo36] {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* FAQ Item Styles */
.faq-item[b-z96vndyo36] {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
}

.faq-question[b-z96vndyo36] {
    list-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.faq-question[b-z96vndyo36]::-webkit-details-marker {
    display: none;
}

    .faq-question:hover[b-z96vndyo36] {
        color: var(--secondary-color, #4A90E2);
    }

    .faq-question:focus-visible[b-z96vndyo36] {
        outline: 2px solid var(--secondary-color, #4A90E2);
        outline-offset: 2px;
        border-radius: 4px;
        color: var(--secondary-color, #4A90E2);
    }

.faq-icon[b-z96vndyo36] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer[b-z96vndyo36] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    font-size: 16px;
    color: var(--text-secondary);
    padding-left: 30px;
}

.faq-answer p[b-z96vndyo36] {
    color: var(--text-secondary);
}

.faq-item.open .faq-answer[b-z96vndyo36],
.faq-item[open] .faq-answer[b-z96vndyo36] {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.faq-item.open .faq-icon[b-z96vndyo36],
.faq-item[open] .faq-icon[b-z96vndyo36] {
    transform: rotate(90deg); /* Rotate the icon */
}
/* /Components/Pages/FAQPage.razor.rz.scp.css */
.background[b-l0ehcyk83v] {
    min-height: auto;
    height: auto;
}

.p[b-l0ehcyk83v] {
    color: var(--text-primary);
}

.faq-section[b-l0ehcyk83v] {
    position: relative;
    top: 0;
    padding: 40px 20px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    max-width: 800px;
    margin: 8px auto 0;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.faq-container[b-l0ehcyk83v] {
}

.faq-header h1[b-l0ehcyk83v] {
    text-align: center;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
}


.faq-header p[b-l0ehcyk83v] {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* FAQ Item Styles */
.faq-item[b-l0ehcyk83v] {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
}

.faq-question[b-l0ehcyk83v] {
    list-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-primary);
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.faq-question[b-l0ehcyk83v]::-webkit-details-marker {
    display: none;
}

    .faq-question:hover[b-l0ehcyk83v] {
        color: var(--secondary-color, #4A90E2);
    }

.faq-icon[b-l0ehcyk83v] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer[b-l0ehcyk83v] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    font-size: 16px;
    color: var(--text-secondary);
    padding-left: 30px;
}
.faq-answer p[b-l0ehcyk83v] {
    color: var(--text-secondary);
}

.faq-item.open .faq-answer[b-l0ehcyk83v],
.faq-item[open] .faq-answer[b-l0ehcyk83v] {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.faq-item.open .faq-icon[b-l0ehcyk83v],
.faq-item[open] .faq-icon[b-l0ehcyk83v] {
    transform: rotate(90deg); /* Rotate the icon */
}

.faq-related-guides[b-l0ehcyk83v] {
    margin-top: 36px;
    padding-top: 28px;
    text-align: center;
}

.faq-related-guides h2[b-l0ehcyk83v] {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-related-guides p[b-l0ehcyk83v] {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.faq-guide-links[b-l0ehcyk83v] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
}

.faq-guide-links[b-l0ehcyk83v] (a) {
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.faq-guide-links[b-l0ehcyk83v] (a:hover) {
    color: var(--secondary-color, #4A90E2);
    border-color: var(--secondary-color, #4A90E2);
    background: color-mix(in srgb, var(--secondary-color, #4A90E2) 8%, var(--bg-surface-elevated));
}
/* /Components/Pages/Footer.razor.rz.scp.css */
.battery-footer[b-meifkw7ajr] {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    background-image: none;
    background-color: transparent;
}

.footer-div[b-meifkw7ajr] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: color-mix(in srgb, var(--bg-surface-elevated) 75%, transparent);
    backdrop-filter: blur(5px);
    border-radius: 25px 25px 0 0;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 2px 5px var(--shadow-color);
    color: var(--text-primary);
}

.footer-link[b-meifkw7ajr] {
    color: var(--text-primary);
}

.footer-image[b-meifkw7ajr]{
    padding-bottom: 20px
}

.footer-list[b-meifkw7ajr] {
    display: flex; /* Align links in a row */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: center; /* Center-align the items */
    gap: 15px; /* Add spacing between links */
    margin: 10px 0; /* Space around the list */
}

.footer-contact[b-meifkw7ajr] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 4px 0 10px;
    font-size: 14px;
}

.footer-contact-sep[b-meifkw7ajr] {
    color: var(--text-muted);
}

.footer-theme[b-meifkw7ajr] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin: 12px 0 4px;
}

.footer-theme[b-meifkw7ajr] (.theme-toggle) {
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.footer-theme[b-meifkw7ajr] (.theme-toggle:hover) {
    background-color: color-mix(in srgb, var(--text-primary) 8%, transparent);
    border-color: color-mix(in srgb, var(--text-primary) 25%, transparent);
}

.footer-theme[b-meifkw7ajr] (.theme-toggle__label) {
    display: inline;
}

.text-block-9[b-meifkw7ajr] {
    color: var(--text-muted);
    font-size: 12px;
}


.fa-beat[b-meifkw7ajr] {
    -webkit-animation-name: fa-beat;
    animation-name: fa-beat;
    -webkit-animation-delay: var(--fa-animation-delay, 0);
    animation-delay: var(--fa-animation-delay, 0);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
    animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.footer-link:hover svg[b-meifkw7ajr] {
    -webkit-animation-name: fa-beat;
    animation-name: fa-beat;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

/* Hide footer when printing */
@media print {
    .battery-footer[b-meifkw7ajr],
    .footer-div[b-meifkw7ajr],
    .footer-list[b-meifkw7ajr],
    .footer-theme[b-meifkw7ajr],
    .footer-image[b-meifkw7ajr],
    .footer-link[b-meifkw7ajr],
    .text-block-9[b-meifkw7ajr] {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
/* /Components/Pages/Giveaway.razor.rz.scp.css */
/* Giveaway Page Styling */

.breadcrumbs[b-0tbi5pv1fn] {
    max-width: 1200px;
    margin: 100px auto 20px auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a[b-0tbi5pv1fn] {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover[b-0tbi5pv1fn] {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-separator[b-0tbi5pv1fn] {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-current[b-0tbi5pv1fn] {
    color: #333;
    font-weight: 600;
}

.giveaway-container[b-0tbi5pv1fn] {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px 80px 20px;
    position: relative;
    top: 0;
    box-sizing: border-box;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    align-items: stretch;
    min-height: calc(100vh - 80px);
    margin-top: 40px;
}

/* Desktop: Enhanced spacing and padding */
@media (min-width: 1024px) {
    .giveaway-container[b-0tbi5pv1fn] {
        padding: 50px 40px 100px 40px;
    }
}

/* Large desktop: Even more generous spacing */
@media (min-width: 1440px) {
    .giveaway-container[b-0tbi5pv1fn] {
        padding: 60px 60px 120px 60px;
        max-width: 1400px;
    }
}

.giveaway-card[b-0tbi5pv1fn] {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    flex: 1 1 500px;
    animation: fadeIn-b-0tbi5pv1fn 0.6s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.giveaway-image[b-0tbi5pv1fn] {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

@keyframes fadeIn-b-0tbi5pv1fn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.giveaway-title[b-0tbi5pv1fn] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .giveaway-title[b-0tbi5pv1fn] {
        font-size: 2rem;
    }
}

.giveaway-description[b-0tbi5pv1fn] {
    font-size: 1.125rem;
    color: #666;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.giveaway-button[b-0tbi5pv1fn] {
    background: #d32f2f;
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.giveaway-button:hover[b-0tbi5pv1fn] {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.giveaway-button:active[b-0tbi5pv1fn] {
    transform: translateY(0);
}

/* /Components/Pages/GPayButton.razor.rz.scp.css */
/* Size the host only — Google Pay SDK renders button text/graphics inside (buttonSizeMode: fill). */

.gpay-button-host[b-wseccaf40x] {

    width: 325px;

    max-width: 325px;

    min-width: 325px;

    height: 44px;

    min-height: 44px;

    max-height: 44px;

    margin: 0 auto;

    box-sizing: border-box;

    overflow: hidden;

}



.gpay-button-host.gpay-pending[b-wseccaf40x] {

    opacity: 0;

    pointer-events: none;

}



/* Battery page / full-width payment column */

.gpay-button-host.gpay-stretch[b-wseccaf40x] {

    width: 100% !important;

    max-width: 100% !important;

    min-width: 0;

    height: 44px !important;

    min-height: 44px !important;

    max-height: 44px !important;

    margin-left: 0 !important;

    margin-right: 0 !important;

    overflow: hidden !important;

    position: relative;

    z-index: 2;

    display: block !important;

    padding: 0 !important;

}

.gpay-button-host .gpay-card-info-container-fill[b-wseccaf40x],
.gpay-button-host .gpay-card-info-container[b-wseccaf40x] {
    width: 100%;
    height: 100%;
    min-height: 44px;
    display: block;
}

/* After SPA nav the branding iframe can load under a stuck loading overlay ("-"). */
.gpay-button-host:has(iframe.gpay-card-info-iframe-show) .gpay-button-static-content-container-loading[b-wseccaf40x] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}



.payment-error-message[b-wseccaf40x] {

    margin-top: 15px;

    padding: 12px 16px;

    border-radius: var(--border-radius, 8px);

    background-color: var(--error-bg);

    color: var(--error-text);

    border: 1px solid var(--error-border);

    font-size: 14px;

    text-align: center;

    max-width: 325px;

    margin-left: auto;

    margin-right: auto;

}



.gpay-button-host.processing[b-wseccaf40x] {

    pointer-events: none;

    opacity: 0.6;

    cursor: not-allowed;

}


/* /Components/Pages/HolidayGiveawayResults2025.razor.rz.scp.css */
/* Giveaway Results Page Styling */

.breadcrumbs[b-wduxgweoo2] {
    padding: 20px 20px 15px 20px;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    z-index: 10;
    text-align: left;
}

.breadcrumbs a[b-wduxgweoo2] {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumbs a:hover[b-wduxgweoo2] {
    color: #ffed4e;
    text-decoration: underline;
}

.breadcrumb-separator[b-wduxgweoo2] {
    margin: 0 8px;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumb-current[b-wduxgweoo2] {
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.results-container[b-wduxgweoo2] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px 80px 20px;
    position: relative;
    top: 80px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    background: 
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%),
        radial-gradient(circle at 5% 5%, rgba(200, 16, 46, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 15% 5%, rgba(34, 139, 34, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 25% 5%, rgba(255, 215, 0, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 35% 5%, rgba(200, 16, 46, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 45% 5%, rgba(34, 139, 34, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 55% 5%, rgba(255, 215, 0, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 65% 5%, rgba(200, 16, 46, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 75% 5%, rgba(34, 139, 34, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 85% 5%, rgba(255, 215, 0, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 95% 5%, rgba(200, 16, 46, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 5% 95%, rgba(34, 139, 34, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 15% 95%, rgba(255, 215, 0, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 25% 95%, rgba(200, 16, 46, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 35% 95%, rgba(34, 139, 34, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 45% 95%, rgba(255, 215, 0, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 55% 95%, rgba(200, 16, 46, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 65% 95%, rgba(34, 139, 34, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 75% 95%, rgba(255, 215, 0, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 85% 95%, rgba(200, 16, 46, 0.6) 4px, transparent 4px),
        radial-gradient(circle at 95% 95%, rgba(34, 139, 34, 0.6) 4px, transparent 4px);
    background-size: 
        100% 100%,
        10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%,
        10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%;
    background-position: 
        0 0,
        0 0, 10% 0, 20% 0, 30% 0, 40% 0, 50% 0, 60% 0, 70% 0, 80% 0, 90% 0,
        0 100%, 10% 100%, 20% 100%, 30% 100%, 40% 100%, 50% 100%, 60% 100%, 70% 100%, 80% 100%, 90% 100%;
    min-height: calc(100vh - 80px);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    animation: lightsTwinkle-b-wduxgweoo2 2s ease-in-out infinite;
}

/* Christmas String Lights Border */
.results-container[b-wduxgweoo2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-image: 
        radial-gradient(circle at 3% 50%, #c8102e 8px, transparent 8px),
        radial-gradient(circle at 8% 50%, #228b22 8px, transparent 8px),
        radial-gradient(circle at 13% 50%, #ffd700 8px, transparent 8px),
        radial-gradient(circle at 18% 50%, #c8102e 8px, transparent 8px),
        radial-gradient(circle at 23% 50%, #228b22 8px, transparent 8px),
        radial-gradient(circle at 28% 50%, #ffd700 8px, transparent 8px),
        radial-gradient(circle at 33% 50%, #c8102e 8px, transparent 8px),
        radial-gradient(circle at 38% 50%, #228b22 8px, transparent 8px),
        radial-gradient(circle at 43% 50%, #ffd700 8px, transparent 8px),
        radial-gradient(circle at 48% 50%, #c8102e 8px, transparent 8px),
        radial-gradient(circle at 53% 50%, #228b22 8px, transparent 8px),
        radial-gradient(circle at 58% 50%, #ffd700 8px, transparent 8px),
        radial-gradient(circle at 63% 50%, #c8102e 8px, transparent 8px),
        radial-gradient(circle at 68% 50%, #228b22 8px, transparent 8px),
        radial-gradient(circle at 73% 50%, #ffd700 8px, transparent 8px),
        radial-gradient(circle at 78% 50%, #c8102e 8px, transparent 8px),
        radial-gradient(circle at 83% 50%, #228b22 8px, transparent 8px),
        radial-gradient(circle at 88% 50%, #ffd700 8px, transparent 8px),
        radial-gradient(circle at 93% 50%, #c8102e 8px, transparent 8px),
        radial-gradient(circle at 98% 50%, #228b22 8px, transparent 8px),
        linear-gradient(to bottom, transparent 20px, rgba(139, 69, 19, 0.3) 20px, rgba(139, 69, 19, 0.3) 22px, transparent 22px);
    background-size: 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 5% 100%, 100% 100%;
    background-position: 0 0, 5% 0, 10% 0, 15% 0, 20% 0, 25% 0, 30% 0, 35% 0, 40% 0, 45% 0, 50% 0, 55% 0, 60% 0, 65% 0, 70% 0, 75% 0, 80% 0, 85% 0, 90% 0, 95% 0, 0 0;
    border-radius: 20px 20px 0 0;
    animation: stringLights-b-wduxgweoo2 2s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.results-container[b-wduxgweoo2]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        #228b22 0px,
        #228b22 20px,
        #ffd700 20px,
        #ffd700 40px,
        #c8102e 40px,
        #c8102e 60px,
        #228b22 60px,
        #228b22 80px
    );
    border-radius: 0 0 20px 20px;
    animation: lightsFlash-b-wduxgweoo2 2s ease-in-out infinite 1s;
    z-index: 1;
    opacity: 0.7;
}

@keyframes lightsFlash-b-wduxgweoo2 {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.95;
        filter: brightness(1.1);
    }
}

@keyframes stringLights-b-wduxgweoo2 {
    0%, 100% {
        filter: brightness(1);
    }
    25% {
        filter: brightness(1.15);
    }
    50% {
        filter: brightness(1.05);
    }
    75% {
        filter: brightness(1.1);
    }
}


@keyframes lightsTwinkle-b-wduxgweoo2 {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.15);
    }
}

/* Snowflakes Animation */
.snowflakes[b-wduxgweoo2] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.snowflake[b-wduxgweoo2] {
    position: absolute;
    top: -20px;
    left: var(--left, 50%);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: snowfall-b-wduxgweoo2 var(--duration, 12s) linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
    will-change: transform, opacity;
}

@keyframes snowfall-b-wduxgweoo2 {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    20% {
        transform: translateY(20vh) translateX(calc(var(--drift, 0px) * 0.3)) rotate(calc(var(--rotation, 180deg) * 0.2));
    }
    40% {
        transform: translateY(40vh) translateX(calc(var(--drift, 0px) * 0.5)) rotate(calc(var(--rotation, 180deg) * 0.4));
    }
    60% {
        transform: translateY(60vh) translateX(calc(var(--drift, 0px) * 0.7)) rotate(calc(var(--rotation, 180deg) * 0.6));
    }
    80% {
        transform: translateY(80vh) translateX(calc(var(--drift, 0px) * 0.9)) rotate(calc(var(--rotation, 180deg) * 0.8));
        opacity: 0.6;
    }
    95% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) translateX(var(--drift, 0px)) rotate(var(--rotation, 180deg));
        opacity: 0;
    }
}

/* Ensure content appears above lights */
.results-container > *:not(.snowflakes):not(::before):not(::after)[b-wduxgweoo2] {
    position: relative;
    z-index: 10;
}

/* Desktop: Enhanced spacing and padding */
@media (min-width: 1024px) {
    .results-container[b-wduxgweoo2] {
        padding: 50px 40px 100px 40px;
    }
}

/* Large desktop: Even more generous spacing */
@media (min-width: 1440px) {
    .results-container[b-wduxgweoo2] {
        padding: 60px 60px 120px 60px;
        max-width: 1400px;
    }
}

.results-title[b-wduxgweoo2] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
    animation: fadeIn-b-wduxgweoo2 0.6s ease-out forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 10;
}

.info-button-container[b-wduxgweoo2] {
    margin: 40px auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.how-it-works-details[b-wduxgweoo2] {
    display: inline-block;
    text-align: left;
}

.how-it-works-details summary[b-wduxgweoo2] {
    list-style: none;
}

.how-it-works-details summary[b-wduxgweoo2]::-webkit-details-marker {
    display: none;
}

.how-it-works-content[b-wduxgweoo2] {
    margin-top: 16px;
    max-width: 720px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.winner-entry-details[b-wduxgweoo2] {
    margin-top: 12px;
    text-align: left;
}

.winner-entry-details summary[b-wduxgweoo2] {
    cursor: pointer;
    color: #ffd700;
    font-size: 0.9rem;
}

.info-button[b-wduxgweoo2] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 12px 24px;
    color: #ffd700;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeIn-b-wduxgweoo2 0.6s ease-out 0.4s forwards;
    opacity: 0;
    position: relative;
    z-index: 10;
}

.info-button:hover[b-wduxgweoo2] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    border-color: #ffed4e;
}

.info-icon[b-wduxgweoo2] {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

@keyframes fadeIn-b-wduxgweoo2 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .results-title[b-wduxgweoo2] {
        font-size: 2rem;
    }
}

.contestant-count[b-wduxgweoo2] {
    font-size: 1.25rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Confetti Animation */
.confetti-container[b-wduxgweoo2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.confetti[b-wduxgweoo2] {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--confetti-color, #ffd700);
    top: -10px;
    left: var(--x, 50%);
    animation: confettiFall-b-wduxgweoo2 var(--delay, 0s) linear 5s forwards;
    opacity: 0;
}

.confetti:nth-child(3n)[b-wduxgweoo2] {
    --confetti-color: #c8102e;
    width: 8px;
    height: 12px;
}

.confetti:nth-child(3n+1)[b-wduxgweoo2] {
    --confetti-color: #228b22;
    width: 12px;
    height: 8px;
}

.confetti:nth-child(3n+2)[b-wduxgweoo2] {
    --confetti-color: #ffd700;
    width: 10px;
    height: 10px;
}

@keyframes confettiFall-b-wduxgweoo2 {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* Winners Section */
.winners-section[b-wduxgweoo2] {
    margin: 20px 0;
    animation: fadeIn-b-wduxgweoo2 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.winners-title[b-wduxgweoo2] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .winners-title[b-wduxgweoo2] {
        font-size: 1.5rem;
    }
}

.winners-list[b-wduxgweoo2] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.congratulations-message[b-wduxgweoo2] {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.2) 0%, rgba(34, 139, 34, 0.2) 100%);
    border: 2px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: fadeIn-b-wduxgweoo2 0.8s ease-out 0.5s forwards;
    opacity: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.congratulations-text[b-wduxgweoo2] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.message-icon[b-wduxgweoo2] {
    font-size: 1.5rem;
    margin: 0 8px;
    display: inline-block;
    animation: iconBounce-b-wduxgweoo2 2s ease-in-out infinite;
}

.message-icon:nth-child(2)[b-wduxgweoo2] {
    animation-delay: 0.5s;
}

@keyframes iconBounce-b-wduxgweoo2 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@media (max-width: 767px) {
    .congratulations-message[b-wduxgweoo2] {
        padding: 20px;
        margin-top: 20px;
    }
    
    .congratulations-text[b-wduxgweoo2] {
        font-size: 1rem;
    }
    
    .message-icon[b-wduxgweoo2] {
        font-size: 1.25rem;
        margin: 0 5px;
    }
}

.winner-card[b-wduxgweoo2] {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn-b-wduxgweoo2 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes slideIn-b-wduxgweoo2 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.winner-card:nth-child(1)[b-wduxgweoo2] {
    animation-delay: 0.1s;
}

.winner-card:nth-child(2)[b-wduxgweoo2] {
    animation-delay: 0.2s;
}

.winner-card:nth-child(3)[b-wduxgweoo2] {
    animation-delay: 0.3s;
}

.winner-card:hover[b-wduxgweoo2] {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.winner-number[b-wduxgweoo2] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c8102e 0%, #dc143c 100%);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trophy-icon[b-wduxgweoo2] {
    font-size: 1.5rem;
    margin-right: 10px;
    display: inline-block;
    animation: trophyBounce-b-wduxgweoo2 1s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes trophyBounce-b-wduxgweoo2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.winner-name[b-wduxgweoo2] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .winner-name[b-wduxgweoo2] {
        font-size: 1rem;
    }
}

.no-winners-yet[b-wduxgweoo2] {
    color: var(--text-primary);
    font-size: 1.125rem;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px dashed #ffd700;
}

/* Name Display Above Wheel */
.name-display-above[b-wduxgweoo2] {
    margin: 15px 0;
}

.name-display-box[b-wduxgweoo2] {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 3px solid #c8102e;
    border-radius: 12px;
    padding: 15px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.name-display-label[b-wduxgweoo2] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.name-display-value[b-wduxgweoo2] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c8102e;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Player List Container */
.player-list-container[b-wduxgweoo2] {
    margin: 20px 0;
    padding: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.player-list[b-wduxgweoo2] {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .player-list[b-wduxgweoo2] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 767px) {
    .player-list[b-wduxgweoo2] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .player-list[b-wduxgweoo2] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 400px) {
    .player-list[b-wduxgweoo2] {
        grid-template-columns: 1fr;
    }
}

.player-item[b-wduxgweoo2] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.player-item:nth-child(odd)[b-wduxgweoo2] {
    background: rgba(200, 16, 46, 0.15);
}

.player-item:nth-child(even)[b-wduxgweoo2] {
    background: rgba(34, 139, 34, 0.15);
}

.player-item.highlighted[b-wduxgweoo2] {
    background: rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
    z-index: 10;
    animation: pulse-b-wduxgweoo2 0.5s ease-in-out infinite;
}

.player-item.winner[b-wduxgweoo2] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5) 0%, rgba(255, 215, 0, 0.3) 100%);
    border: 3px solid #ffd700;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
    animation: winnerReveal-b-wduxgweoo2 0.8s ease-out;
}

@keyframes pulse-b-wduxgweoo2 {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes winnerReveal-b-wduxgweoo2 {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.player-name[b-wduxgweoo2] {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    word-break: break-word;
}

.player-item.winner .player-name[b-wduxgweoo2] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.weight-badge[b-wduxgweoo2] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #ffd700;
    border-radius: 4px;
    padding: 2px 8px;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: fit-content;
}

.winner-badge[b-wduxgweoo2] {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: 2px solid #ffd700;
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    width: fit-content;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
    animation: winnerBadgePulse-b-wduxgweoo2 1.5s ease-in-out infinite;
}

@keyframes winnerBadgePulse-b-wduxgweoo2 {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.9);
        transform: scale(1.05);
    }
}

@keyframes scrollList-b-wduxgweoo2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

/* Spin Controls */
.spin-controls[b-wduxgweoo2] {
    margin: 20px 0;
}

.spin-button[b-wduxgweoo2] {
    background: linear-gradient(135deg, #c8102e 0%, #dc143c 100%);
    color: var(--text-primary);
    border: 3px solid #ffd700;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.spin-button:hover:not(:disabled)[b-wduxgweoo2] {
    background: linear-gradient(135deg, #b71c1c 0%, #c8102e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.6);
    border-color: #ffed4e;
}

.spin-button:active:not(:disabled)[b-wduxgweoo2] {
    transform: translateY(0);
}

.spin-button:disabled[b-wduxgweoo2] {
    background: #666;
    border-color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.completion-message[b-wduxgweoo2],
.completion-message-bottom[b-wduxgweoo2] {
    padding: 20px;
    background: rgba(34, 139, 34, 0.2);
    border: 2px solid #228b22;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.completion-message-bottom[b-wduxgweoo2] {
    margin: 40px auto 0 auto;
    max-width: 600px;
}

/* Modal Styles */
.modal-overlay[b-wduxgweoo2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    padding-bottom: 40px;
    animation: fadeIn-b-wduxgweoo2 0.3s ease-out;
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal-content[b-wduxgweoo2] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 3px solid #ffd700;
    border-radius: 16px 16px 0 0;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    animation: slideInModalBottom-b-wduxgweoo2 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideInModal-b-wduxgweoo2 {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInModalBottom-b-wduxgweoo2 {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-wduxgweoo2] {
    padding: 25px 30px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
}

.modal-header h2[b-wduxgweoo2] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-close[b-wduxgweoo2] {
    background: transparent;
    border: 2px solid #ffd700;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    color: #ffd700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover[b-wduxgweoo2] {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.modal-body[b-wduxgweoo2] {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    color: var(--text-primary);
}

.modal-body[b-wduxgweoo2]::-webkit-scrollbar {
    width: 10px;
}

.modal-body[b-wduxgweoo2]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.modal-body[b-wduxgweoo2]::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 5px;
}

.modal-body[b-wduxgweoo2]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.7);
}

.explanation-section[b-wduxgweoo2] {
    margin-bottom: 30px;
}

.explanation-section h3[b-wduxgweoo2] {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.explanation-section h4[b-wduxgweoo2] {
    color: #ffed4e;
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.explanation-section p[b-wduxgweoo2] {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.explanation-section ul[b-wduxgweoo2],
.explanation-section ol[b-wduxgweoo2] {
    margin: 15px 0;
    padding-left: 30px;
    line-height: 1.8;
}

.explanation-section li[b-wduxgweoo2] {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.explanation-section strong[b-wduxgweoo2] {
    color: #ffd700;
    font-weight: 600;
}

.code-section[b-wduxgweoo2] {
    margin-top: 40px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 30px;
}

.code-section h3[b-wduxgweoo2] {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.code-section h4[b-wduxgweoo2] {
    color: #ffed4e;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.code-block[b-wduxgweoo2] {
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
}

.code-block pre[b-wduxgweoo2] {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.code-block code[b-wduxgweoo2] {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e0e0;
    white-space: pre;
    overflow-x: auto;
}

.code-block code[b-wduxgweoo2]::before {
    content: '';
}

.modal-footer[b-wduxgweoo2] {
    padding: 20px 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: flex-end;
    background: rgba(255, 215, 0, 0.05);
}

.modal-close-button[b-wduxgweoo2] {
    background: linear-gradient(135deg, #c8102e 0%, #dc143c 100%);
    color: var(--text-primary);
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.modal-close-button:hover[b-wduxgweoo2] {
    background: linear-gradient(135deg, #b71c1c 0%, #c8102e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.6);
    border-color: #ffed4e;
}

@media (max-width: 767px) {
    .info-button[b-wduxgweoo2] {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .modal-content[b-wduxgweoo2] {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header[b-wduxgweoo2] {
        padding: 20px;
    }

    .modal-header h2[b-wduxgweoo2] {
        font-size: 1.5rem;
    }

    .modal-body[b-wduxgweoo2] {
        padding: 20px;
    }

    .explanation-section h3[b-wduxgweoo2],
    .code-section h3[b-wduxgweoo2] {
        font-size: 1.25rem;
    }

    .explanation-section h4[b-wduxgweoo2] {
        font-size: 1.1rem;
    }

    .code-block[b-wduxgweoo2] {
        padding: 15px;
    }

    .code-block code[b-wduxgweoo2] {
        font-size: 0.8rem;
    }

    .modal-footer[b-wduxgweoo2] {
        padding: 15px 20px;
    }
}

/* /Components/Pages/Home.razor.rz.scp.css */
.background[b-sspjvgtjw4] {
    background-image: radial-gradient(circle, #373737, #0e0e0e);
    border-radius: 0;
}

.home-guide-links[b-sspjvgtjw4] {
    padding: 48px 20px;
    background: rgba(0, 0, 0, 0.35);
}

.home-guide-links-inner[b-sspjvgtjw4] {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-primary);
}

.home-guide-links-inner h2[b-sspjvgtjw4] {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.home-guide-links-inner p[b-sspjvgtjw4] {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.home-guide-links-grid[b-sspjvgtjw4] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.home-guide-link[b-sspjvgtjw4] {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.home-guide-link:hover[b-sspjvgtjw4] {
    border-color: #F58220;
    color: #F58220;
    background: rgba(245, 130, 32, 0.1);
}

.home-guide-link-primary[b-sspjvgtjw4] {
    border-color: #F58220;
    background: rgba(245, 130, 32, 0.2);
    color: var(--text-primary);
}

.home-guide-link-primary:hover[b-sspjvgtjw4] {
    background: rgba(245, 130, 32, 0.35);
    color: var(--text-primary);
}
/* /Components/Pages/HowToReplace.razor.rz.scp.css */
.how-to-container[b-gwaudv6yoc] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-primary);
}

.breadcrumb[b-gwaudv6yoc] {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb[b-gwaudv6yoc] (a.breadcrumb-link),
.breadcrumb[b-gwaudv6yoc] (a.breadcrumb-link:visited) {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-decoration-color: currentColor;
    transition: color 0.3s ease;
}

.breadcrumb[b-gwaudv6yoc] (a.breadcrumb-link:hover) {
    color: #F58220 !important;
    -webkit-text-fill-color: #F58220;
}

.breadcrumb-separator[b-gwaudv6yoc] {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current[b-gwaudv6yoc] {
    color: #F58220;
    font-weight: 600;
}

.how-to-header[b-gwaudv6yoc] {
    text-align: center;
    margin-bottom: 50px;
}

.how-to-header h1[b-gwaudv6yoc] {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.how-to-intro[b-gwaudv6yoc] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.how-to-content[b-gwaudv6yoc] {
    line-height: 1.8;
}

.how-to-section[b-gwaudv6yoc] {
    margin-bottom: 40px;
}

.how-to-section h2[b-gwaudv6yoc] {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.how-to-list[b-gwaudv6yoc] {
    list-style: none;
    padding: 0;
}

.how-to-list li[b-gwaudv6yoc] {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.how-to-list li[b-gwaudv6yoc]:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F58220;
    font-weight: bold;
}

.how-to-list li a[b-gwaudv6yoc] {
    color: #F58220;
    text-decoration: underline;
}

.how-to-list li a:hover[b-gwaudv6yoc] {
    color: #ff9a40;
}

.how-to-step[b-gwaudv6yoc] {
    display: flex;
    margin-bottom: 40px;
    gap: 20px;
    align-items: flex-start;
}

.step-number[b-gwaudv6yoc] {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #F58220;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.step-content[b-gwaudv6yoc] {
    flex: 1;
}

.step-content h3[b-gwaudv6yoc] {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p[b-gwaudv6yoc] {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.7;
}

.step-content img[b-gwaudv6yoc] {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.how-to-cta[b-gwaudv6yoc] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    text-align: center;
    margin-top: 30px;
}

.cta-button[b-gwaudv6yoc] {
    display: inline-block;
    padding: 15px 40px;
    background: #F58220;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover[b-gwaudv6yoc] {
    background: #ff9a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.cta-button-secondary[b-gwaudv6yoc] {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #F58220;
    text-decoration: none;
    border: 2px solid #F58220;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover[b-gwaudv6yoc] {
    background: rgba(245, 130, 32, 0.1);
    border-color: #ff9a40;
    color: #ff9a40;
}

.cta-link[b-gwaudv6yoc] {
    color: #F58220;
    font-weight: 600;
    text-decoration: underline;
}

.cta-link:hover[b-gwaudv6yoc] {
    color: #ff9a40;
}

.how-to-section p[b-gwaudv6yoc] {
    color: var(--text-primary) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .how-to-container[b-gwaudv6yoc] {
        padding: 20px 15px;
    }

    .how-to-header h1[b-gwaudv6yoc] {
        font-size: 2rem;
    }

    .how-to-intro[b-gwaudv6yoc] {
        font-size: 1rem;
    }

    .how-to-step[b-gwaudv6yoc] {
        flex-direction: column;
        gap: 15px;
    }

    .step-number[b-gwaudv6yoc] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h3[b-gwaudv6yoc] {
        font-size: 1.2rem;
    }
}

/* /Components/Pages/Landing.razor.rz.scp.css */
.hero-video[b-c3ntyouqh6] {
    position: relative;
    width: 100%;
    min-height: 100vh; /* fallback */
    min-height: 100svh; /* iOS chrome UI safe */
    overflow: hidden;
    background: var(--bg-canvas);
}

/* Shared sizing */
.hero-video__media[b-c3ntyouqh6],
.hero-video__poster[b-c3ntyouqh6] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 29%;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

/* Poster above, fades out */
.hero-video__poster[b-c3ntyouqh6] {
    z-index: 2;
    opacity: 1;
}

    .hero-video__poster.is-hidden[b-c3ntyouqh6] {
        opacity: 0;
        pointer-events: none;
    }

/* Video below, fades in */
.hero-video__media[b-c3ntyouqh6] {
    z-index: 1;
    opacity: 0;
    background: transparent;
}

    .hero-video__media.is-visible[b-c3ntyouqh6] {
        opacity: 1;
    }

@keyframes posterFade-b-c3ntyouqh6 {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.hero-liquid-glass-svg[b-c3ntyouqh6] {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video__overlay[b-c3ntyouqh6] {
    position: absolute;
    inset: 0;
    /* Keep the video subject clear in the upper/center area; darken only near the dock. */
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.08) 40%,
        rgba(0, 0, 0, 0.55) 78%,
        rgba(0, 0, 0, 0.72) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Bottom dock only — does not cover the video center, so clicks reach selects. */
.hero-video__content[b-c3ntyouqh6] {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    top: auto;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 10px;
    max-width: 720px;
    width: calc(100% - 32px);
    margin: 0;
    padding: 16px 0 calc(18px + env(safe-area-inset-bottom));
    box-sizing: border-box;
    pointer-events: auto;
}

.hero-video__headline[b-c3ntyouqh6] {
    margin: 0;
    font-size: clamp(1.15rem, 3.2vw, 1.65rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.25;
}

.hero-video__subhead[b-c3ntyouqh6] {
    margin: 0;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    line-height: 1.4;
    max-width: 36rem;
}

.hero-video__all-batteries[b-c3ntyouqh6] {
    align-self: flex-start;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-video__all-batteries:hover[b-c3ntyouqh6] {
    color: #fff;
}

/* Ensure InteractiveServer island (different CSS scope) stays clickable. */
[b-c3ntyouqh6] .home-vehicle-finder,
[b-c3ntyouqh6] .home-vehicle-finder select,
[b-c3ntyouqh6] .home-vehicle-finder button {
    pointer-events: auto;
    position: relative;
    z-index: 6;
}

/* Apple liquid glass pill CTAs */
a.hero-button[b-c3ntyouqh6],
.hero-button[b-c3ntyouqh6] {
    --glass-highlight: rgba(255, 255, 255, 0.24);
    --glass-rim: rgba(255, 255, 255, 0.16);
    --glass-fill-top: rgba(255, 255, 255, 0.08);
    --glass-fill-bottom: rgba(255, 255, 255, 0.01);
    --glass-tint: rgba(245, 130, 32, 0.03);

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 30px !important;
    min-height: 50px !important;
    min-width: 0 !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.07em !important;
    text-decoration: none !important;
    line-height: 1.15 !important;
    text-transform: uppercase !important;
    border: 1px solid var(--glass-rim) !important;
    background: linear-gradient(
        180deg,
        var(--glass-fill-top) 0%,
        var(--glass-fill-bottom) 58%,
        var(--glass-tint) 100%
    ) !important;
    backdrop-filter: blur(44px) saturate(230%) brightness(1.03) contrast(1.04) !important;
    -webkit-backdrop-filter: blur(44px) saturate(230%) brightness(1.03) contrast(1.04) !important;
    color: var(--text-primary) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35) !important;
    box-shadow:
        inset 0 1px 0 var(--glass-highlight),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 10px 32px rgba(0, 0, 0, 0.26),
        0 2px 8px rgba(0, 0, 0, 0.16) !important;
    transition:
        transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.32s ease,
        border-color 0.32s ease,
        backdrop-filter 0.32s ease !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    pointer-events: auto !important;
    z-index: 0 !important;
}

@supports (backdrop-filter: url(#hero-liquid-glass)) {
    a.hero-button[b-c3ntyouqh6],
    .hero-button[b-c3ntyouqh6] {
        backdrop-filter: url(#hero-liquid-glass) blur(44px) saturate(230%) brightness(1.03) contrast(1.04) !important;
        -webkit-backdrop-filter: url(#hero-liquid-glass) blur(44px) saturate(230%) brightness(1.03) contrast(1.04) !important;
    }
}

.hero-button[b-c3ntyouqh6]::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    transform: none !important;
    border-radius: inherit !important;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.03) 36%,
        transparent 58%
    ) !important;
    pointer-events: none !important;
    z-index: 0 !important;
    opacity: 0.48 !important;
    transition: opacity 0.32s ease !important;
}

.hero-button[b-c3ntyouqh6]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.04) 42%,
        rgba(255, 255, 255, 0.1) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    opacity: 0.34;
    transition: opacity 0.32s ease;
}

a.hero-button.hero-button--ghost[b-c3ntyouqh6],
.hero-button--ghost[b-c3ntyouqh6] {
    --glass-fill-top: rgba(255, 255, 255, 0.07);
    --glass-fill-bottom: rgba(255, 255, 255, 0.01);
    --glass-tint: rgba(255, 255, 255, 0.02);
    --glass-rim: rgba(255, 255, 255, 0.14);
    background: linear-gradient(
        180deg,
        var(--glass-fill-top) 0%,
        var(--glass-fill-bottom) 62%,
        var(--glass-tint) 100%
    ) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 10px 32px rgba(0, 0, 0, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.14) !important;
    --bg: transparent !important;
    --fg: #fff !important;
}

.hero-button--ghost[b-c3ntyouqh6]::after {
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.32) 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.14) 100%
    );
}

a.hero-button:where(:hover, :focus-visible)[b-c3ntyouqh6],
.hero-button:where(:hover, :focus-visible)[b-c3ntyouqh6] {
    transform: translateY(-2px) scale(1.02) !important;
    --glass-fill-top: rgba(255, 255, 255, 0.12);
    --glass-fill-bottom: rgba(255, 255, 255, 0.03);
    --glass-tint: rgba(245, 130, 32, 0.06);
    --glass-rim: rgba(255, 255, 255, 0.22);
    border-color: var(--glass-rim) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        0 14px 40px rgba(0, 0, 0, 0.3),
        0 4px 14px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(48px) saturate(240%) brightness(1.05) contrast(1.05) !important;
    -webkit-backdrop-filter: blur(48px) saturate(240%) brightness(1.05) contrast(1.05) !important;
}

a.hero-button.hero-button--ghost:where(:hover, :focus-visible)[b-c3ntyouqh6],
.hero-button--ghost:where(:hover, :focus-visible)[b-c3ntyouqh6] {
    --glass-fill-top: rgba(255, 255, 255, 0.1);
    --glass-fill-bottom: rgba(255, 255, 255, 0.03);
    --glass-tint: rgba(255, 255, 255, 0.04);
    --glass-rim: rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08),
        0 14px 40px rgba(0, 0, 0, 0.28),
        0 4px 14px rgba(0, 0, 0, 0.16) !important;
}

a.hero-button:where(:hover, :focus-visible)[b-c3ntyouqh6]::before,
.hero-button:where(:hover, :focus-visible)[b-c3ntyouqh6]::before {
    opacity: 0.58 !important;
    inset: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

a.hero-button:where(:hover, :focus-visible)[b-c3ntyouqh6]::after,
.hero-button:where(:hover, :focus-visible)[b-c3ntyouqh6]::after {
    opacity: 0.44;
}

a.hero-button:focus-visible[b-c3ntyouqh6],
.hero-button:focus-visible[b-c3ntyouqh6] {
    outline: 2px solid rgba(255, 255, 255, 0.55) !important;
    outline-offset: 3px !important;
}

a.hero-button:active[b-c3ntyouqh6],
.hero-button:active[b-c3ntyouqh6] {
    transform: translateY(0) scale(0.98) !important;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 4px 16px rgba(0, 0, 0, 0.2) !important;
    transition-duration: 0.12s !important;
}

@media (max-width: 767px) {
    .hero-video__media[b-c3ntyouqh6],
    .hero-video__poster[b-c3ntyouqh6] {
        object-position: 50% 40%;
    }

    .hero-video__buttons[b-c3ntyouqh6] {
        flex-wrap: wrap;
        gap: 12px;
        bottom: 12px;
    }

    a.hero-button[b-c3ntyouqh6],
    .hero-button[b-c3ntyouqh6] {
        width: calc(50% - 6px) !important;
        padding: 12px 18px !important;
        font-size: 11px !important;
        min-height: 46px !important;
        border-radius: 9999px !important;
        letter-spacing: 0.05em !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video__media[b-c3ntyouqh6] {
        animation: none !important;
    }

    .hero-video__poster.is-fade-out[b-c3ntyouqh6] {
        animation: none;
        opacity: 0;
        visibility: hidden;
    }

    a.hero-button[b-c3ntyouqh6],
    .hero-button[b-c3ntyouqh6] {
        transition: none !important;
        animation: none !important;
    }
}
/* /Components/Pages/MakeModelYear.razor.rz.scp.css */
@keyframes fadeIn-b-4vskq9tubi {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screen reader only class for accessibility */
.sr-only[b-4vskq9tubi] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 768px) {

    .dropdown-input[b-4vskq9tubi] {
        max-width: 100%;
    }
}

/* Instructions (e.g. battery options step) */
.instructions[b-4vskq9tubi] {
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0 auto 1.125rem;
    line-height: 1.45;
    max-width: 38rem;
    letter-spacing: 0.015em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    font-size: clamp(1.125rem, 2.6vw, 1.5rem);
}

/* Vehicle dropdown form — higher specificity + larger type */
.dropdown-form > p.instructions[b-4vskq9tubi] {
    font-size: clamp(1.25rem, 3.2vw, 1.65rem);
    line-height: 1.5;
    margin: 0 auto 1.5rem;
    font-weight: 600;
}

/* Step 1: heading + CTA (single column, centered in overlay) */
.make-model-intro[b-4vskq9tubi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.make-model-title[b-4vskq9tubi] {
    margin: 0 0 1rem;
    width: 100%;
    max-width: min(100%, 28rem);
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

/* Select Vehicle Button */
.btn-conteiner[b-4vskq9tubi] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    --color-text: #ffffff;
    --color-background: #ff135a;
    --color-outline: #ff145b80;
    --color-shadow: #00000080;
}

.btn-content[b-4vskq9tubi] {
    display: inline-flex;
    line-height: 1;
    align-items: center;
    margin-inline: auto;
    padding: 5px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 100px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
}

    .btn-content:hover[b-4vskq9tubi], .btn-content:focus[b-4vskq9tubi] {
        transition: 0.5s;
        -webkit-animation: btn-content 1s;
        animation: btn-content-b-4vskq9tubi 1s;
        outline: 0.1em solid transparent;
        outline-offset: 0.2em;
        box-shadow: 0 0 0.4em 0 var(--color-background);
    }

    .btn-content .icon-arrow[b-4vskq9tubi] {
        transition: 0.5s;
        margin-right: 0px;
        transform: scale(0.6);
    }

    .btn-content:hover .icon-arrow[b-4vskq9tubi] {
        transition: 0.5s;
        margin-right: 25px;
    }

.icon-arrow[b-4vskq9tubi] {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
}

/* SVG */
#arrow-icon-one[b-4vskq9tubi] {
    transition: 0.4s;
    transform: translateX(-60%);
}

#arrow-icon-two[b-4vskq9tubi] {
    transition: 0.5s;
    transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three[b-4vskq9tubi] {
    animation: color_anim-b-4vskq9tubi 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one[b-4vskq9tubi] {
    transform: translateX(0%);
    animation: color_anim-b-4vskq9tubi 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two[b-4vskq9tubi] {
    transform: translateX(0%);
    animation: color_anim-b-4vskq9tubi 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim-b-4vskq9tubi {
    0% {
        fill: white;
    }

    50% {
        fill: var(--color-background);
    }

    100% {
        fill: white;
    }
}

/* Button animations */
@-webkit-keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

@keyframes btn-content-b-4vskq9tubi {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}


.dropdown-form[b-4vskq9tubi] {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    gap: 1.65rem;
    align-items: stretch;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    box-sizing: border-box;
}

.dropdown-grid[b-4vskq9tubi] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1.35rem;
    width: 100%;
    align-items: start;
}

.field[b-4vskq9tubi] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    min-width: 0;
    text-align: left;
}

.dropdown-label[b-4vskq9tubi] {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}



.dropdown-input[b-4vskq9tubi] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 48px;
    width: 100%;
    max-width: 100%;
    padding: 0 2.25rem 0 1rem;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid rgba(180, 180, 180, 0.7);
    border-radius: 20px;
    /* Opaque bg required — Windows native select popups ignore option {} and translucent gradients */
    color: #f2f2f2;
    color-scheme: dark;
    background-color: #1a1a1a;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dddddd' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E"),
        linear-gradient(135deg, rgba(74, 63, 152, 0.75), #1a1a1a);
    background-repeat: no-repeat, no-repeat;
    background-position: right 1rem center, 0 0;
    background-size: 12px, auto;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.95;
}

    .dropdown-input option[b-4vskq9tubi] {
        background-color: #1a1a1a;
        color: #f2f2f2;
    }

    .dropdown-input:focus[b-4vskq9tubi],
    .dropdown-input:focus-visible[b-4vskq9tubi] {
        border-color: #3898EC;
        box-shadow: 0 0 8px rgba(56, 152, 236, 0.9);
        outline: none;
        transform: scale(1.01);
        opacity: 1;
        color: #f2f2f2;
        background-color: #1a1a1a;
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dddddd' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E"),
            linear-gradient(135deg, rgba(74, 63, 152, 0.85), #1a1a1a);
        background-repeat: no-repeat, no-repeat;
        background-position: right 1rem center, 0 0;
        background-size: 12px, auto;
    }

    .dropdown-input:hover[b-4vskq9tubi] {
        border-color: rgba(255, 255, 255, 0.85);
        color: #f2f2f2;
        background-color: #222222;
        background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dddddd' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E"),
            linear-gradient(135deg, rgba(100, 100, 255, 0.55), #222222);
        background-repeat: no-repeat, no-repeat;
        background-position: right 1rem center, 0 0;
        background-size: 12px, auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1.01);
        opacity: 1;
    }

    .dropdown-input:disabled[b-4vskq9tubi] {
        opacity: 0.55;
        cursor: not-allowed;
    }

/* Submit Button */
.dropdown-submit[b-4vskq9tubi] {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-top: 0.35rem;
    min-height: 48px;
    width: auto;
    max-width: min(100%, 300px);
    padding: 0.65em 1.75em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #4A3F98, #5e5dcd);
    color: var(--text-primary);
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(74, 63, 152, 0.4);
    line-height: 1;
    text-align: center;
}

    .dropdown-submit:hover[b-4vskq9tubi] {
        background-color: #5e5dcd;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(74, 63, 152, 0.5);
    }

    .dropdown-submit:active[b-4vskq9tubi] {
        transform: scale(0.95);
        box-shadow: 0 3px 8px rgba(74, 63, 152, 0.3);
    }

back-button[b-4vskq9tubi] {
    display: flex;
    height: 2em;
    width: 100px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
}

    back-button > svg[b-4vskq9tubi] {
        margin-right: 5px;
        margin-left: 5px;
        font-size: 20px;
        filter: invert();
        transition: all 0.4s ease-in;
    }

    back-button:hover > svg[b-4vskq9tubi] {
        font-size: 1.2em;
        transform: translateX(-5px);
    }

/* Battery Grid (Horizontal Alignment) */
.battery-grid-horizontal[b-4vskq9tubi] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 100%;
}

.battery-option[b-4vskq9tubi] {
    text-align: center;
    cursor: pointer;
    max-width: 150px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(74, 63, 152, 0.3));
    border-radius: 15px;
    padding: 10px;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: min(150px, 45%);
}

    .battery-option img[b-4vskq9tubi] {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .battery-option:hover[b-4vskq9tubi] {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

        .battery-option:hover img[b-4vskq9tubi] {
            transform: scale(1.1);
        }

    .battery-option:active[b-4vskq9tubi] {
        transform: scale(0.95);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

.battery-name[b-4vskq9tubi] {
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
}

.battery-desc[b-4vskq9tubi] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width:1024px) and (min-width:769px) {
    .dropdown-input[b-4vskq9tubi] {
        min-height: 46px;
        font-size: 16px;
        padding: 0 1rem;
    }

    .dropdown-label[b-4vskq9tubi] {
        font-size: 0.875rem;
    }

    .instructions[b-4vskq9tubi] {
        margin-bottom: 1rem;
    }

    .btn-content[b-4vskq9tubi] {
        font-size: 20px;
        padding: 8px 20px;
    }
}

/* -------- Mobile (≤768px) -------- */
@media (max-width:768px) {
    .dropdown-form[b-4vskq9tubi] {
        gap: 1.35rem;
    }

    .dropdown-grid[b-4vskq9tubi] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .dropdown-input[b-4vskq9tubi] {
        min-height: 44px;
        font-size: 16px;
        padding: 0 1rem;
    }

    .dropdown-label[b-4vskq9tubi] {
        font-size: 0.8125rem;
    }

    .instructions[b-4vskq9tubi] {
        margin-bottom: 0.75rem;
        font-size: clamp(1.0625rem, 3.5vw, 1.35rem);
    }

    .dropdown-form > p.instructions[b-4vskq9tubi] {
        font-size: clamp(1.125rem, 4vw, 1.45rem);
        margin-bottom: 1.15rem;
    }

    .btn-content[b-4vskq9tubi] {
        font-size: 18px;
        padding: 6px 16px;
    }

    .dropdown-submit[b-4vskq9tubi] {
        margin-top: 0.5rem;
    }
}

@media (max-height:700px) {
    .dropdown-form[b-4vskq9tubi] {
        gap: 1rem;
    }

    .dropdown-input[b-4vskq9tubi] {
        min-height: 40px;
        font-size: 15px;
    }

    .dropdown-label[b-4vskq9tubi] {
        font-size: 0.8125rem;
    }

    .instructions[b-4vskq9tubi] {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
        margin-bottom: 0.65rem;
    }

    .dropdown-form > p.instructions[b-4vskq9tubi] {
        font-size: clamp(1.0625rem, 3vw, 1.25rem);
        margin-bottom: 0.85rem;
    }

    .dropdown-submit[b-4vskq9tubi] {
        min-height: 42px;
        font-size: 0.9375rem;
    }

    .btn-content[b-4vskq9tubi] {
        font-size: 17px;
        padding: 6px 16px;
    }
}
/* /Components/Pages/NewYearGiveawayResults2026.razor.rz.scp.css */
/* New Year Giveaway Results Page Styling */

.breadcrumbs[b-4h41mzjmyx] {
    padding: 20px 20px 15px 20px;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    z-index: 10;
    text-align: left;
}

.breadcrumbs a[b-4h41mzjmyx] {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumbs a:hover[b-4h41mzjmyx] {
    color: #f4e4bc;
    text-decoration: underline;
}

.breadcrumb-separator[b-4h41mzjmyx] {
    margin: 0 8px;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumb-current[b-4h41mzjmyx] {
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.results-container[b-4h41mzjmyx] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px 80px 20px;
    position: relative;
    top: 80px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    background: 
        linear-gradient(135deg, #1a0d1a 0%, #2d1b2d 50%, #3d2a3d 100%),
        radial-gradient(circle at 5% 5%, rgba(212, 175, 55, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 15% 5%, rgba(184, 134, 11, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 25% 5%, rgba(212, 175, 55, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 35% 5%, rgba(184, 134, 11, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 45% 5%, rgba(212, 175, 55, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 55% 5%, rgba(184, 134, 11, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 65% 5%, rgba(212, 175, 55, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 75% 5%, rgba(184, 134, 11, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 85% 5%, rgba(212, 175, 55, 0.4) 3px, transparent 3px),
        radial-gradient(circle at 95% 5%, rgba(184, 134, 11, 0.4) 3px, transparent 3px);
    background-size: 
        100% 100%,
        10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%, 10% 10%;
    background-position: 
        0 0,
        0 0, 10% 0, 20% 0, 30% 0, 40% 0, 50% 0, 60% 0, 70% 0, 80% 0, 90% 0;
    min-height: calc(100vh - 80px);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    animation: sparkle-b-4h41mzjmyx 3s ease-in-out infinite;
}

@keyframes sparkle-b-4h41mzjmyx {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

/* Confetti Background Animation */
.confetti-background[b-4h41mzjmyx] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.confetti-piece[b-4h41mzjmyx] {
    position: absolute;
    top: -10px;
    left: var(--left, 50%);
    width: 8px;
    height: 8px;
    background: var(--confetti-color, #d4af37);
    animation: confettiDrift-b-4h41mzjmyx var(--duration, 12s) linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0.7;
    border-radius: 50%;
}

.confetti-piece:nth-child(3n)[b-4h41mzjmyx] {
    --confetti-color: #b8860b;
    width: 6px;
    height: 10px;
    border-radius: 0;
}

.confetti-piece:nth-child(3n+1)[b-4h41mzjmyx] {
    --confetti-color: #daa520;
    width: 10px;
    height: 6px;
    border-radius: 0;
}

.confetti-piece:nth-child(3n+2)[b-4h41mzjmyx] {
    --confetti-color: #d4af37;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@keyframes confettiDrift-b-4h41mzjmyx {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) translateX(calc(var(--left, 50%) * 0.3)) rotate(360deg);
        opacity: 0;
    }
}

/* Confetti Burst Animation */
.confetti-burst-container[b-4h41mzjmyx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.confetti-burst[b-4h41mzjmyx] {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--confetti-color, #d4af37);
    top: -10px;
    left: var(--x, 50%);
    animation: confettiBurstFall-b-4h41mzjmyx var(--delay, 0s) linear 5s forwards;
    opacity: 0;
    border-radius: 50%;
}

.confetti-burst:nth-child(3n)[b-4h41mzjmyx] {
    --confetti-color: #b8860b;
    width: 8px;
    height: 12px;
    border-radius: 0;
}

.confetti-burst:nth-child(3n+1)[b-4h41mzjmyx] {
    --confetti-color: #daa520;
    width: 12px;
    height: 8px;
    border-radius: 0;
}

.confetti-burst:nth-child(3n+2)[b-4h41mzjmyx] {
    --confetti-color: #d4af37;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

@keyframes confettiBurstFall-b-4h41mzjmyx {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* Ensure content appears above confetti */
.results-container > *:not(.confetti-background):not(::before):not(::after)[b-4h41mzjmyx] {
    position: relative;
    z-index: 10;
}

/* Desktop: Enhanced spacing and padding */
@media (min-width: 1024px) {
    .results-container[b-4h41mzjmyx] {
        padding: 50px 40px 100px 40px;
    }
}

/* Large desktop: Even more generous spacing */
@media (min-width: 1440px) {
    .results-container[b-4h41mzjmyx] {
        padding: 60px 60px 120px 60px;
        max-width: 1400px;
    }
}

.results-title[b-4h41mzjmyx] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
    animation: fadeIn-b-4h41mzjmyx 0.6s ease-out forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.5);
    position: relative;
    z-index: 10;
}

.info-button-container[b-4h41mzjmyx] {
    margin: 40px auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.how-it-works-details[b-4h41mzjmyx] {
    display: inline-block;
    text-align: left;
}

.how-it-works-details summary[b-4h41mzjmyx] {
    list-style: none;
}

.how-it-works-details summary[b-4h41mzjmyx]::-webkit-details-marker {
    display: none;
}

.how-it-works-content[b-4h41mzjmyx] {
    margin-top: 16px;
    max-width: 720px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.winner-entry-details[b-4h41mzjmyx] {
    margin-top: 12px;
    text-align: left;
}

.winner-entry-details summary[b-4h41mzjmyx] {
    cursor: pointer;
    color: #ffd700;
    font-size: 0.9rem;
}

.info-button[b-4h41mzjmyx] {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 12px 24px;
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeIn-b-4h41mzjmyx 0.6s ease-out 0.4s forwards;
    opacity: 0;
    position: relative;
    z-index: 10;
}

.info-button:hover[b-4h41mzjmyx] {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    border-color: #f4e4bc;
}

.info-icon[b-4h41mzjmyx] {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

@keyframes fadeIn-b-4h41mzjmyx {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .results-title[b-4h41mzjmyx] {
        font-size: 2rem;
    }
}

.contestant-count[b-4h41mzjmyx] {
    font-size: 1.25rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Winners Section */
.winners-section[b-4h41mzjmyx] {
    margin: 20px 0;
    animation: fadeIn-b-4h41mzjmyx 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.winners-list[b-4h41mzjmyx] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.congratulations-message[b-4h41mzjmyx] {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 134, 11, 0.2) 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeIn-b-4h41mzjmyx 0.8s ease-out 0.5s forwards;
    opacity: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.congratulations-text[b-4h41mzjmyx] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.message-icon[b-4h41mzjmyx] {
    font-size: 1.5rem;
    margin: 0 8px;
    display: inline-block;
    animation: iconBounce-b-4h41mzjmyx 2s ease-in-out infinite;
}

.message-icon:nth-child(2)[b-4h41mzjmyx] {
    animation-delay: 0.5s;
}

@keyframes iconBounce-b-4h41mzjmyx {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@media (max-width: 767px) {
    .congratulations-message[b-4h41mzjmyx] {
        padding: 20px;
        margin-top: 20px;
    }
    
    .congratulations-text[b-4h41mzjmyx] {
        font-size: 1rem;
    }
    
    .message-icon[b-4h41mzjmyx] {
        font-size: 1.25rem;
        margin: 0 5px;
    }
}

.winner-card[b-4h41mzjmyx] {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid #d4af37;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn-b-4h41mzjmyx 0.5s ease-out forwards;
    opacity: 0;
    cursor: pointer;
}

@keyframes slideIn-b-4h41mzjmyx {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.winner-card:nth-child(1)[b-4h41mzjmyx] {
    animation-delay: 0.1s;
}

.winner-card:nth-child(2)[b-4h41mzjmyx] {
    animation-delay: 0.2s;
}

.winner-card:nth-child(3)[b-4h41mzjmyx] {
    animation-delay: 0.3s;
}

.winner-card:hover[b-4h41mzjmyx] {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.winner-number[b-4h41mzjmyx] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trophy-icon[b-4h41mzjmyx] {
    font-size: 1.5rem;
    margin-right: 10px;
    display: inline-block;
    animation: trophyBounce-b-4h41mzjmyx 1s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes trophyBounce-b-4h41mzjmyx {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.winner-name[b-4h41mzjmyx] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .winner-name[b-4h41mzjmyx] {
        font-size: 1rem;
    }
}

.no-winners-yet[b-4h41mzjmyx] {
    color: var(--text-primary);
    font-size: 1.125rem;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px dashed #d4af37;
}

/* Name Display Above */
.name-display-above[b-4h41mzjmyx] {
    margin: 15px 0;
}

.name-display-box[b-4h41mzjmyx] {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    border: 3px solid #b8860b;
    border-radius: 12px;
    padding: 15px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.name-display-label[b-4h41mzjmyx] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.name-display-value[b-4h41mzjmyx] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b8860b;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Entry Details Panel */
.entry-details-panel[b-4h41mzjmyx] {
    margin: 20px auto;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 134, 11, 0.15) 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeIn-b-4h41mzjmyx 0.3s ease-out;
    position: relative;
    z-index: 10;
}

.entry-details-header[b-4h41mzjmyx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.entry-details-header h3[b-4h41mzjmyx] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.close-details[b-4h41mzjmyx] {
    background: transparent;
    border: 2px solid #d4af37;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.close-details:hover[b-4h41mzjmyx] {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.entry-details-content[b-4h41mzjmyx] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row[b-4h41mzjmyx] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label[b-4h41mzjmyx] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value[b-4h41mzjmyx] {
    font-size: 1rem;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    word-break: break-word;
}

@media (min-width: 768px) {
    .detail-row[b-4h41mzjmyx] {
        flex-direction: row;
        align-items: baseline;
    }
    
    .detail-label[b-4h41mzjmyx] {
        min-width: 150px;
        text-align: right;
        margin-right: 15px;
    }
    
    .detail-value[b-4h41mzjmyx] {
        flex: 1;
    }
}

/* Player List Container */
.player-list-container[b-4h41mzjmyx] {
    margin: 20px 0;
    padding: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.player-list[b-4h41mzjmyx] {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid #d4af37;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .player-list[b-4h41mzjmyx] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 767px) {
    .player-list[b-4h41mzjmyx] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 400px) {
    .player-list[b-4h41mzjmyx] {
        grid-template-columns: 1fr;
    }
}

.player-item[b-4h41mzjmyx] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.player-item:hover[b-4h41mzjmyx] {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.player-item:nth-child(odd)[b-4h41mzjmyx] {
    background: rgba(212, 175, 55, 0.1);
}

.player-item:nth-child(even)[b-4h41mzjmyx] {
    background: rgba(184, 134, 11, 0.1);
}

.player-item.highlighted[b-4h41mzjmyx] {
    background: rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.6);
    z-index: 10;
    animation: pulse-b-4h41mzjmyx 0.5s ease-in-out infinite;
}

.player-item.winner[b-4h41mzjmyx] {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.3) 100%);
    border: 3px solid #d4af37;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
    animation: winnerReveal-b-4h41mzjmyx 0.8s ease-out;
}

@keyframes pulse-b-4h41mzjmyx {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes winnerReveal-b-4h41mzjmyx {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.player-name[b-4h41mzjmyx] {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    word-break: break-word;
}

.player-item.winner .player-name[b-4h41mzjmyx] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.weight-badge[b-4h41mzjmyx] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    border-radius: 4px;
    padding: 2px 8px;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: fit-content;
}

.winner-badge[b-4h41mzjmyx] {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    border: 2px solid #d4af37;
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    width: fit-content;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.6);
    animation: winnerBadgePulse-b-4h41mzjmyx 1.5s ease-in-out infinite;
}

@keyframes winnerBadgePulse-b-4h41mzjmyx {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.9);
        transform: scale(1.05);
    }
}

@keyframes scrollList-b-4h41mzjmyx {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

/* Spin Controls */
.spin-controls[b-4h41mzjmyx] {
    margin: 20px 0;
}

.spin-button[b-4h41mzjmyx] {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    color: var(--text-primary);
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.spin-button:hover:not(:disabled)[b-4h41mzjmyx] {
    background: linear-gradient(135deg, #daa520 0%, #f4e4bc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6);
    border-color: #f4e4bc;
}

.spin-button:active:not(:disabled)[b-4h41mzjmyx] {
    transform: translateY(0);
}

.spin-button:disabled[b-4h41mzjmyx] {
    background: #666;
    border-color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.completion-message[b-4h41mzjmyx],
.completion-message-bottom[b-4h41mzjmyx] {
    padding: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.completion-message-bottom[b-4h41mzjmyx] {
    margin: 40px auto 0 auto;
    max-width: 600px;
}

/* Modal Styles */
.modal-overlay[b-4h41mzjmyx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    /* Keep modal below the fixed navbar (site content uses a ~80px top offset). */
    padding-top: 110px;
    animation: fadeIn-b-4h41mzjmyx 0.3s ease-out;
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal-content[b-4h41mzjmyx] {
    background: linear-gradient(135deg, #1a0d1a 0%, #2d1b2d 50%, #3d2a3d 100%);
    border: 3px solid #d4af37;
    border-radius: 0 0 16px 16px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    animation: slideInModalTop-b-4h41mzjmyx 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideInModalTop-b-4h41mzjmyx {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-4h41mzjmyx] {
    padding: 25px 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
}

.modal-header h2[b-4h41mzjmyx] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-close[b-4h41mzjmyx] {
    background: transparent;
    border: 2px solid #d4af37;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover[b-4h41mzjmyx] {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.modal-body[b-4h41mzjmyx] {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    color: var(--text-primary);
}

.modal-body[b-4h41mzjmyx]::-webkit-scrollbar {
    width: 10px;
}

.modal-body[b-4h41mzjmyx]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.modal-body[b-4h41mzjmyx]::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 5px;
}

.modal-body[b-4h41mzjmyx]::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.explanation-section[b-4h41mzjmyx] {
    margin-bottom: 30px;
}

.explanation-section h3[b-4h41mzjmyx] {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.explanation-section h4[b-4h41mzjmyx] {
    color: #f4e4bc;
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.explanation-section p[b-4h41mzjmyx] {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.explanation-section ul[b-4h41mzjmyx],
.explanation-section ol[b-4h41mzjmyx] {
    margin: 15px 0;
    padding-left: 30px;
    line-height: 1.8;
}

.explanation-section li[b-4h41mzjmyx] {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.explanation-section strong[b-4h41mzjmyx] {
    color: #d4af37;
    font-weight: 600;
}

.code-section[b-4h41mzjmyx] {
    margin-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
}

.code-section h3[b-4h41mzjmyx] {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.code-section h4[b-4h41mzjmyx] {
    color: #f4e4bc;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.code-block[b-4h41mzjmyx] {
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
}

.code-block pre[b-4h41mzjmyx] {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.code-block code[b-4h41mzjmyx] {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e0e0;
    white-space: pre;
    overflow-x: auto;
}

.code-block code[b-4h41mzjmyx]::before {
    content: '';
}

.modal-footer[b-4h41mzjmyx] {
    padding: 20px 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: flex-end;
    background: rgba(212, 175, 55, 0.05);
}

.modal-close-button[b-4h41mzjmyx] {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    color: var(--text-primary);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.modal-close-button:hover[b-4h41mzjmyx] {
    background: linear-gradient(135deg, #daa520 0%, #f4e4bc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6);
    border-color: #f4e4bc;
}

@media (max-width: 767px) {
    .info-button[b-4h41mzjmyx] {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .modal-content[b-4h41mzjmyx] {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header[b-4h41mzjmyx] {
        padding: 20px;
    }

    .modal-header h2[b-4h41mzjmyx] {
        font-size: 1.5rem;
    }

    .modal-body[b-4h41mzjmyx] {
        padding: 20px;
    }

    .explanation-section h3[b-4h41mzjmyx],
    .code-section h3[b-4h41mzjmyx] {
        font-size: 1.25rem;
    }

    .explanation-section h4[b-4h41mzjmyx] {
        font-size: 1.1rem;
    }

    .code-block[b-4h41mzjmyx] {
        padding: 15px;
    }

    .code-block code[b-4h41mzjmyx] {
        font-size: 0.8rem;
    }

    .modal-footer[b-4h41mzjmyx] {
        padding: 15px 20px;
    }
}
/* /Components/Pages/OrderConfirmed.razor.rz.scp.css */
.order-container[b-kocr2gr0mw] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;
    padding-top: calc(72px + env(safe-area-inset-top, 0));
    padding-bottom: 40px;
    gap: 20px;
}

/* Success Header */
.success-header[b-kocr2gr0mw] {
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px;
}

.print-logo[b-kocr2gr0mw] {
    display: none; /* Hidden by default, shown in print */
}

.success-header h3[b-kocr2gr0mw] {
    margin: 20px 0 10px 0;
    font-size: 28px;
    color: var(--text-primary);
}

.order-number[b-kocr2gr0mw] {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 10px 0 5px 0;
}

.order-date[b-kocr2gr0mw] {
    font-size: 14px;
    color: var(--text-primary);
    margin: 5px 0;
}

/* Order Cards */
.order-card[b-kocr2gr0mw] {
    width: 100%;
    background: var(--card-contrast-bg);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px var(--shadow-color);
    border-top: 4px solid var(--battery-color, #ffcb05);
    position: relative;
    text-align: left;
    color: var(--card-contrast-text);
}

.card-title[b-kocr2gr0mw] {
    font-size: 20px;
    font-weight: 600;
    color: var(--card-contrast-text);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.item-name[b-kocr2gr0mw] {
    font-size: 16px;
    color: var(--card-contrast-text);
    margin: 0 0 8px 0;
}

.item-quantity[b-kocr2gr0mw] {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.price-breakdown[b-kocr2gr0mw] {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.price-row[b-kocr2gr0mw] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

.total-row[b-kocr2gr0mw] {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #e0e0e0;
    font-size: 18px;
    color: #333;
}

.info-section[b-kocr2gr0mw] {
    margin-bottom: 15px;
}

.info-label[b-kocr2gr0mw] {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 5px 0;
}

.info-value[b-kocr2gr0mw] {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Actions Section */
.actions-section[b-kocr2gr0mw] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.action-button[b-kocr2gr0mw] {
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--battery-color, #ffcb05);
    background-color: var(--battery-color, #ffcb05);
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.action-button:hover[b-kocr2gr0mw] {
    background-color: transparent;
    color: var(--battery-color, #ffcb05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.track-button[b-kocr2gr0mw] {
    background-color: var(--battery-color, #ffcb05);
    color: #000;
}

.print-button[b-kocr2gr0mw] {
    background-color: transparent;
    color: var(--battery-color, #ffcb05);
}

.print-button:hover[b-kocr2gr0mw] {
    background-color: var(--battery-color, #ffcb05);
    color: #000;
}

.cancelled-message[b-kocr2gr0mw] {
    color: var(--text-primary);
    font-size: 16px;
    margin: 10px 0;
}

.cancel-section[b-kocr2gr0mw] {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    color: var(--text-primary);
}

.cancel-note[b-kocr2gr0mw] {
    color: var(--text-primary);
    font-size: 14px;
    margin: 0 0 12px 0;
}

.cancel-form[b-kocr2gr0mw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.cancel-form label[b-kocr2gr0mw] {
    color: var(--text-primary);
    font-size: 14px;
}

.cancel-status[b-kocr2gr0mw] {
    color: var(--text-primary);
    font-size: 14px;
    margin: 0 0 10px 0;
}

.cancel-status--error[b-kocr2gr0mw] {
    color: var(--error-text);
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    border-radius: 8px;
    padding: 10px 12px;
}

.load-error-message[b-kocr2gr0mw] {
    color: var(--error-text);
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    border-radius: 8px;
    padding: 10px 12px;
}

.cancel-email-input[b-kocr2gr0mw] {
    width: min(100%, 320px);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: var(--input-bg);
    color: var(--input-text);
}

.cancel-email-input:focus[b-kocr2gr0mw] {
    outline: none;
    border-color: var(--battery-color, #ffcb05);
}

.cancel-button[b-kocr2gr0mw] {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--battery-color, #ffcb05);
}

.cancel-button:hover:not(:disabled)[b-kocr2gr0mw] {
    background-color: color-mix(in srgb, var(--battery-color, #ffcb05) 12%, transparent);
    color: var(--text-primary);
    border-color: var(--battery-color, #ffcb05);
}

/* Support Section */
.support-section[b-kocr2gr0mw] {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.support-section p[b-kocr2gr0mw] {
    color: var(--text-muted);
}

.support-link[b-kocr2gr0mw] {
    color: var(--battery-color, #ffcb05);
    text-decoration: none;
    font-weight: 600;
}

.support-link:hover[b-kocr2gr0mw] {
    text-decoration: underline;
}

.home-link[b-kocr2gr0mw] {
    display: inline-block;
    margin-top: 15px;
    color: var(--battery-color, #ffcb05);
    text-decoration: none;
    font-weight: 600;
}

.home-link:hover[b-kocr2gr0mw] {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .order-container[b-kocr2gr0mw] {
        padding: 15px;
        padding-top: calc(80px + env(safe-area-inset-top, 0));
    }
    
    .order-card[b-kocr2gr0mw] {
        padding: 20px;
    }
    
    .actions-section[b-kocr2gr0mw] {
        flex-direction: column;
    }
    
    .action-button[b-kocr2gr0mw] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .order-container[b-kocr2gr0mw] {
        padding-top: calc(88px + env(safe-area-inset-top, 0));
    }
}

.checkmark[b-kocr2gr0mw] {
    width: 150px; 
    height: 150px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn-b-kocr2gr0mw 0.6s forwards, scaleUp-b-kocr2gr0mw 0.6s 0.6s forwards;
}

/* Background Circle Styling with Battery Color */
.checkmark__circle[b-kocr2gr0mw] {
    fill: none;
    stroke: var(--battery-color, #28a745);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: drawCircle-b-kocr2gr0mw 0.6s forwards;
}

/* Check Mark Styling with Battery Color */
.checkmark__check[b-kocr2gr0mw] {
    fill: none;
    stroke: var(--battery-color, #28a745);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck-b-kocr2gr0mw 0.3s 0.6s forwards;
}

/* 6. Keyframe Animations */

/* Fade In the SVG */
@keyframes fadeIn-b-kocr2gr0mw {
    to {
        opacity: 1;
    }
}

/* Scale Up the SVG */
@keyframes scaleUp-b-kocr2gr0mw {
    to {
        transform: scale(1);
    }
}

/* Draw the Circle */
@keyframes drawCircle-b-kocr2gr0mw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Draw the Check Mark */
@keyframes drawCheck-b-kocr2gr0mw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Print Styles */
@media print {
    /* Hide navbar, footer, and all non-receipt elements */
    #navigation[b-kocr2gr0mw],
    .navbar[b-kocr2gr0mw],
    .navbar-inner[b-kocr2gr0mw],
    .battery-footer[b-kocr2gr0mw],
    .footer-div[b-kocr2gr0mw],
    .footer-list[b-kocr2gr0mw],
    .footer-image[b-kocr2gr0mw],
    .footer-link[b-kocr2gr0mw],
    .text-block-9[b-kocr2gr0mw],
    nav[b-kocr2gr0mw],
    footer[b-kocr2gr0mw],
    *[class*="footer"][b-kocr2gr0mw],
    *[id*="navigation"][b-kocr2gr0mw],
    div[class*="footer"][b-kocr2gr0mw],
    div[id*="footer"][b-kocr2gr0mw] {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Reset page layout for print */
    body[b-kocr2gr0mw],
    .page[b-kocr2gr0mw],
    main[b-kocr2gr0mw],
    article[b-kocr2gr0mw] {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .background[b-kocr2gr0mw] {
        background: white !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Add logo in top corner */
    .print-logo[b-kocr2gr0mw] {
        display: block !important;
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        height: 25px !important;
        width: auto !important;
        margin: 0 !important;
        filter: brightness(0) !important; /* Make logo black */
        z-index: 1000 !important;
    }
    
    .order-container[b-kocr2gr0mw] {
        max-width: 100% !important;
        padding: 10px !important;
        padding-top: 10px !important;
        margin: 0 auto !important;
        gap: 6px !important;
        display: block !important;
        position: relative !important;
    }
    
    /* Ensure success header is visible and styled for print - make it smaller */
    .success-header[b-kocr2gr0mw] {
        page-break-after: avoid;
        margin-bottom: 8px !important;
        padding: 8px !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        opacity: 1 !important;
    }
    
    .success-header h3[b-kocr2gr0mw] {
        font-size: 18px !important;
        margin: 8px 0 4px 0 !important;
        color: #000 !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Ensure checkmark is visible */
    .checkmark[b-kocr2gr0mw] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .order-number[b-kocr2gr0mw] {
        font-size: 13px !important;
        margin: 4px 0 2px 0 !important;
        color: #000 !important;
    }
    
    .order-date[b-kocr2gr0mw] {
        font-size: 11px !important;
        margin: 2px 0 !important;
        color: #000 !important;
    }
    
    /* Ensure all order cards are visible in print - make them smaller */
    .order-card[b-kocr2gr0mw] {
        page-break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        margin-bottom: 6px !important;
        padding: 10px 12px !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        break-inside: avoid;
    }
    
    .card-title[b-kocr2gr0mw] {
        font-size: 14px !important;
        margin: 0 0 8px 0 !important;
        padding-bottom: 4px !important;
        color: #000 !important;
    }
    
    .order-item[b-kocr2gr0mw] {
        margin-bottom: 6px !important;
    }
    
    .item-name[b-kocr2gr0mw] {
        font-size: 12px !important;
        margin: 0 0 3px 0 !important;
        color: #000 !important;
    }
    
    .item-quantity[b-kocr2gr0mw] {
        font-size: 11px !important;
        color: #000 !important;
    }
    
    .price-breakdown[b-kocr2gr0mw] {
        margin-top: 8px !important;
        padding-top: 6px !important;
    }
    
    .price-row[b-kocr2gr0mw] {
        padding: 3px 0 !important;
        font-size: 12px !important;
        color: #000 !important;
    }
    
    .total-row[b-kocr2gr0mw] {
        margin-top: 4px !important;
        padding-top: 6px !important;
        font-size: 14px !important;
        color: #000 !important;
    }
    
    .info-section[b-kocr2gr0mw] {
        margin-bottom: 6px !important;
    }
    
    .info-label[b-kocr2gr0mw] {
        font-size: 10px !important;
        margin: 0 0 2px 0 !important;
        color: #000 !important;
    }
    
    .info-value[b-kocr2gr0mw] {
        font-size: 11px !important;
        color: #000 !important;
        margin: 0 !important;
    }
    
    /* Ensure text is readable in print */
    .order-card[b-kocr2gr0mw],
    .success-header[b-kocr2gr0mw] {
        color: #000 !important;
    }
    
    .order-card h4[b-kocr2gr0mw],
    .order-card p[b-kocr2gr0mw],
    .order-card span[b-kocr2gr0mw] {
        color: #000 !important;
    }
    
    /* Hide action buttons and support section */
    .actions-section[b-kocr2gr0mw] {
        display: none !important;
    }
    
    .support-section[b-kocr2gr0mw] {
        display: none !important;
    }
    
    .checkmark[b-kocr2gr0mw] {
        width: 50px !important;
        height: 50px !important;
    }
    
    .checkmark__circle[b-kocr2gr0mw],
    .checkmark__check[b-kocr2gr0mw] {
        stroke: #000 !important;
        stroke-width: 3 !important;
    }
    
    /* Format links for print */
    a[href^="http"][b-kocr2gr0mw]:after {
        content: " (" attr(href) ")";
        font-size: 8px;
        color: #666;
    }
    
    /* Prevent page breaks inside important sections */
    .order-item[b-kocr2gr0mw],
    .price-breakdown[b-kocr2gr0mw],
    .info-section[b-kocr2gr0mw] {
        page-break-inside: avoid;
    }
    
    /* Ensure Payment Information card is visible */
    .order-card:last-of-type[b-kocr2gr0mw] {
        display: block !important;
        visibility: visible !important;
    }
}
/* /Components/Pages/PowerUp.razor.rz.scp.css */
.power-up-section[b-bbgwgsvf6f] {
    --power-up-accent: #4A90E2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 8px;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Card shell */
.content-container.power-up-card[b-bbgwgsvf6f] {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 44%);
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    width: 100%;
    max-width: 900px;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--text-primary) 8%, var(--bg-surface-elevated)) 0%,
        color-mix(in srgb, var(--text-primary) 4%, var(--bg-surface)) 100%
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: none;
    border-left: 4px solid var(--power-up-accent);
    box-sizing: border-box;
    box-shadow: none;
    transition: transform 0.35s ease;
    animation: power-up-card-enter-b-bbgwgsvf6f 0.75s ease forwards;
}

@media (hover: hover) and (pointer: fine) {
    .content-container.power-up-card:hover[b-bbgwgsvf6f] {
        transform: translateY(-2px);
    }
}

@keyframes power-up-card-enter-b-bbgwgsvf6f {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.power-up-card__text[b-bbgwgsvf6f] {
    flex: 1;
    padding-right: 0;
    min-width: 0;
}

.power-up-card__meta[b-bbgwgsvf6f] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 12px;
    animation: power-up-fade-in-b-bbgwgsvf6f 0.6s ease 0.05s both;
}

.power-up-card__eyebrow[b-bbgwgsvf6f] {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: color-mix(in srgb, var(--power-up-accent) 55%, rgba(0, 0, 0, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.power-up-card__price[b-bbgwgsvf6f] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.power-up-card__heading[b-bbgwgsvf6f] {
    font-size: clamp(1.65rem, 2.5vw + 1rem, 2.35rem);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
    color: var(--text-primary);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    animation: power-up-fade-in-b-bbgwgsvf6f 0.65s ease 0.12s both;
}

.power-up-card__sub[b-bbgwgsvf6f] {
    margin: 0 0 18px;
    font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.05rem);
    line-height: 1.55;
    color: var(--text-secondary);
    animation: power-up-fade-in-b-bbgwgsvf6f 0.65s ease 0.18s both;
}

.power-up-card__facts[b-bbgwgsvf6f] {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.power-up-card__facts li[b-bbgwgsvf6f] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--text-secondary);
    animation: power-up-fade-in-b-bbgwgsvf6f 0.6s ease both;
}

.power-up-card__facts li:nth-child(1)[b-bbgwgsvf6f] {
    animation-delay: 0.22s;
}

.power-up-card__facts li:nth-child(2)[b-bbgwgsvf6f] {
    animation-delay: 0.28s;
}

.power-up-card__facts li:nth-child(3)[b-bbgwgsvf6f] {
    animation-delay: 0.34s;
}

.power-up-card__fact-icon[b-bbgwgsvf6f] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: 1px;
    border-radius: 8px;
    color: var(--text-primary);
    background: color-mix(in srgb, var(--power-up-accent) 40%, rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.power-up-card__fact-icon svg[b-bbgwgsvf6f] {
    display: block;
}

.power-up-card__compat[b-bbgwgsvf6f] {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    animation: power-up-fade-in-b-bbgwgsvf6f 0.65s ease 0.38s both;
}

.power-up-card__compat-link[b-bbgwgsvf6f] {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.power-up-card__compat-link:hover[b-bbgwgsvf6f] {
    opacity: 0.9;
}

@keyframes power-up-fade-in-b-bbgwgsvf6f {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image column */
.power-up-card__media[b-bbgwgsvf6f] {
    max-width: 100%;
}

.power-up-card__figure[b-bbgwgsvf6f] {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    box-shadow: none;
    animation: power-up-fade-in-b-bbgwgsvf6f 0.75s ease 0.15s both;
    transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .power-up-card__figure:hover[b-bbgwgsvf6f] {
        transform: scale(1.02);
    }
}

.coin-image[b-bbgwgsvf6f] {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

@media (prefers-reduced-motion: reduce) {
    .content-container.power-up-card[b-bbgwgsvf6f],
    .power-up-card__meta[b-bbgwgsvf6f],
    .power-up-card__heading[b-bbgwgsvf6f],
    .power-up-card__sub[b-bbgwgsvf6f],
    .power-up-card__facts li[b-bbgwgsvf6f],
    .power-up-card__compat[b-bbgwgsvf6f],
    .power-up-card__figure[b-bbgwgsvf6f] {
        animation: none !important;
        transition: none !important;
    }

    .content-container.power-up-card:hover[b-bbgwgsvf6f] {
        transform: none;
    }

    .power-up-card__figure:hover[b-bbgwgsvf6f] {
        transform: none;
    }
}

@media (max-width: 768px) {
    .content-container.power-up-card[b-bbgwgsvf6f] {
        grid-template-columns: 1fr;
        padding: 1.35rem 1.15rem;
    }

    .power-up-card__media[b-bbgwgsvf6f] {
        order: -1;
    }

    .heading[b-bbgwgsvf6f],
    .power-up-card__heading[b-bbgwgsvf6f] {
        font-size: clamp(1.45rem, 5vw + 0.5rem, 2rem);
    }
}

/* Legacy class kept for skeleton overlap */
.text-content[b-bbgwgsvf6f] {
    flex: 1;
}

.image-content[b-bbgwgsvf6f] {
    max-width: 100%;
}

.subheading[b-bbgwgsvf6f] {
    font-size: 1rem;
}

/* FAQ Section � matches PowerUp card glass + accent (Battery page only) */
.battery-faq[b-bbgwgsvf6f] {
    --power-up-accent: #4a90e2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 8px 0px 8px;
    scroll-margin-top: 96px;
}

.faq-wrapper[b-bbgwgsvf6f] {
    display: flex;
    flex-direction: row;
    gap: clamp(1.25rem, 3vw, 2rem);
    max-width: 1100px;
    width: 100%;
}

@media (min-width: 1440px) {
    .content-container.power-up-card[b-bbgwgsvf6f] {
        max-width: min(1200px, calc(100% - 32px));
    }

    .faq-wrapper[b-bbgwgsvf6f] {
        max-width: min(1400px, calc(100% - 32px));
    }
}

@media (min-width: 1920px) {
    .content-container.power-up-card[b-bbgwgsvf6f] {
        max-width: min(1400px, calc(100% - 48px));
    }

    .faq-wrapper[b-bbgwgsvf6f] {
        max-width: min(1600px, calc(100% - 48px));
    }
}

@media (max-width: 768px) {
    .faq-wrapper[b-bbgwgsvf6f] {
        flex-direction: column;
    }

    .faq-image[b-bbgwgsvf6f],
    .battery-faq .faq-container[b-bbgwgsvf6f] {
        width: 100%;
    }
}

.faq-image[b-bbgwgsvf6f] {
    flex: 1;
}

.battery-faq .faq-image img[b-bbgwgsvf6f] {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    border: none;
    box-shadow: none;
}

.battery-faq .faq-container.faq-panel[b-bbgwgsvf6f] {
    flex: 1;
    border-radius: 22px;
    padding: clamp(1.25rem, 2.5vw, 1.85rem);
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--text-primary) 8%, var(--bg-surface-elevated)) 0%,
        color-mix(in srgb, var(--text-primary) 4%, var(--bg-surface)) 100%
    );
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: none;
    border-left: 4px solid var(--power-up-accent);
    box-sizing: border-box;
    min-width: 0;
}

.battery-faq .faq-heading[b-bbgwgsvf6f] {
    text-align: center;
    font-size: clamp(1.35rem, 2vw + 1rem, 2rem);
    font-weight: 800;
    margin: 0 0 1.25rem;
    color: var(--text-primary);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
}

.battery-faq .faq-item[b-bbgwgsvf6f] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 16px 0;
}

.battery-faq .faq-item:last-child[b-bbgwgsvf6f] {
    border-bottom: none;
}

.battery-faq .faq-question[b-bbgwgsvf6f] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
    font-weight: 600;
    cursor: pointer;
    color: var(--text-primary);
    transition: color 0.2s ease;
    text-align: left;
}

.battery-faq .faq-question:hover[b-bbgwgsvf6f] {
    color: var(--text-primary);
}

.battery-faq .faq-toggle[b-bbgwgsvf6f] {
    flex-shrink: 0;
    background: color-mix(in srgb, var(--power-up-accent) 55%, rgba(0, 0, 0, 0.35));
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.2s ease;
}

.battery-faq .faq-toggle:hover[b-bbgwgsvf6f] {
    transform: scale(1.06);
}

.battery-faq .faq-answer[b-bbgwgsvf6f] {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
    transition: opacity 0.25s ease;
}

.battery-faq .faq-answer a[b-bbgwgsvf6f] {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.battery-faq .faq-answer a:hover[b-bbgwgsvf6f] {
    opacity: 0.92;
}

@media (prefers-reduced-motion: reduce) {
    .battery-faq .faq-toggle[b-bbgwgsvf6f] {
        transition: none;
    }

    .battery-faq .faq-toggle:hover[b-bbgwgsvf6f] {
        transform: none;
    }
}
/* /Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-container[b-puu7utiax3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
}

.privacy[b-puu7utiax3] {
    background: var(--bg-canvas);
    max-width: 700px;
    padding: 10px 20px 10px 20px;
    position: relative;
    color: var(--text-primary);
    margin: 10px;
    margin-top: 12px;
}

p[b-puu7utiax3] {
    color: var(--text-primary);
}

h1[b-puu7utiax3] {
    color: var(--text-primary);
    font-size: 1.17em;
    font-weight: bold;
    margin: 1em 0;
}
/* /Components/Pages/QrBatteryLanding.razor.rz.scp.css */
@keyframes qr-fade-in-b-j04pupu4w9 {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qr-card-enter-b-j04pupu4w9 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qr-landing.selector-section[b-j04pupu4w9] {
    border-top: none !important;
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0.5rem;
    position: relative;
}

.qr-landing .app-ui-layout[b-j04pupu4w9] {
    animation: qr-fade-in-b-j04pupu4w9 0.55s ease forwards;
    margin: 0 auto;
    max-width: 920px;
    padding: 0 clamp(8px, 2vw, 16px) 100px;
    position: relative;
    text-align: center;
}

.qr-landing__panel[b-j04pupu4w9] {
    background: linear-gradient(
        155deg,
        rgba(34, 36, 34, 0.97) 0%,
        rgba(12, 14, 12, 0.99) 55%,
        rgba(18, 22, 16, 0.96) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--qr-accent, #62be28);
    border-radius: 24px;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    box-sizing: border-box;
    color: var(--text-primary);
    overflow: hidden;
    padding: clamp(0.85rem, 2.2vw, 1.5rem);
    width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .qr-landing__panel:hover[b-j04pupu4w9] {
        box-shadow:
            0 16px 56px rgba(0, 0, 0, 0.48),
            0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    }
}

.qr-landing__display[b-j04pupu4w9] {
    animation: qr-fade-in-b-j04pupu4w9 0.65s ease both;
    margin-bottom: 1rem;
    min-height: min(420px, 72vw);
}

.qr-landing__hero-wrap[b-j04pupu4w9] {
    align-items: center;
    display: inline-flex;
    height: min(420px, 72vw);
    justify-content: center;
    max-width: min(100%, 520px);
    position: relative;
    width: min(100%, 520px);
}

.qr-landing__hero-wrap--zoomable[b-j04pupu4w9] {
    cursor: crosshair;
}

.qr-landing__hero-img[b-j04pupu4w9] {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    display: block;
    height: 100%;
    max-height: min(420px, 72vw);
    max-width: min(100%, 520px);
    object-fit: contain;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    width: 100%;
}

.qr-landing__hero-img--detail[b-j04pupu4w9] {
    background: linear-gradient(145deg, #2a2d2a 0%, #1a1c1a 100%);
    box-sizing: border-box;
    padding: 8px;
}

.qr-landing__zoom-lens[b-j04pupu4w9] {
    background-repeat: no-repeat;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    position: absolute;
    z-index: 3;
}

.qr-landing__zoom-hint[b-j04pupu4w9] {
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 6px;
    height: 17px;
    justify-content: center;
    letter-spacing: 0.04em;
    margin: 0.35rem 0 0;
    text-transform: uppercase;
    width: 100%;
}

.qr-landing__zoom-hint--hidden[b-j04pupu4w9] {
    visibility: hidden;
}

.qr-landing__gallery[b-j04pupu4w9] {
    margin-bottom: 1.5rem;
}

.qr-landing__gallery-label[b-j04pupu4w9] {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.qr-landing__gallery-nav[b-j04pupu4w9] {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.qr-landing__gallery-arrow[b-j04pupu4w9] {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 1.35rem;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    width: 44px;
}

.qr-landing__gallery-arrow:hover[b-j04pupu4w9] {
    background: color-mix(in srgb, var(--qr-accent, #62be28) 35%, rgba(255, 255, 255, 0.1));
    border-color: var(--qr-accent, #62be28);
    transform: scale(1.05);
}

.qr-landing__hero-images[b-j04pupu4w9] {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    min-width: 0;
}

.qr-landing__hero-images--multi[b-j04pupu4w9] {
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
}

.qr-landing__gallery-thumb[b-j04pupu4w9] {
    animation: qr-fade-in-b-j04pupu4w9 0.65s ease both;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    flex: 0 0 auto;
    height: min(120px, 22vw);
    padding: 10px;
    scroll-snap-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    width: min(120px, 22vw);
}

.qr-landing__gallery-thumb:hover[b-j04pupu4w9],
.qr-landing__gallery-thumb--active[b-j04pupu4w9] {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--qr-accent, #62be28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.qr-landing__gallery-thumb img[b-j04pupu4w9] {
    background: linear-gradient(145deg, #2a2d2a 0%, #1a1c1a 100%);
    border-radius: 10px;
    display: block;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 6px;
    pointer-events: none;
    width: 100%;
}

.qr-landing__intro[b-j04pupu4w9] {
    animation: qr-fade-in-b-j04pupu4w9 0.65s ease 0.08s both;
    margin-bottom: 2rem;
    text-align: center;
}

.qr-landing__intro .vehicle-select-eyebrow[b-j04pupu4w9] {
    color: color-mix(in srgb, var(--qr-accent, #62be28) 88%, white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin: 0 0 0.45rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
}

.qr-landing__title[b-j04pupu4w9] {
    color: var(--text-primary);
    font-size: clamp(1.45rem, 2.2vw + 0.85rem, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin: 0 0 1rem;
}

.qr-landing__intro-checker[b-j04pupu4w9] {
    animation: qr-fade-in-b-j04pupu4w9 0.65s ease 0.12s both;
    margin: 0 0 1.25rem;
    text-align: left;
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status) {
    color: var(--text-primary);
    font-weight: 500;
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status p) {
    color: var(--text-primary);
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status--compatible) {
    background: rgba(46, 125, 50, 0.42);
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status--compatible .compat-checker__icon) {
    color: #a5d6a7;
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status--warning) {
    background: rgba(230, 120, 0, 0.48);
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status--warning .compat-checker__icon) {
    color: #ffcc80;
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status--incompatible) {
    background: rgba(198, 40, 40, 0.48);
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__status--incompatible .compat-checker__icon) {
    color: #ef9a9a;
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__link-row a) {
    color: var(--text-primary);
    text-decoration-color: rgba(255, 255, 255, 0.65);
}

.qr-landing__intro-checker[b-j04pupu4w9] (.compat-checker__link-row a:hover) {
    color: var(--text-primary);
    text-decoration-color: var(--text-primary);
}

.qr-landing__lead[b-j04pupu4w9] {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.92rem, 0.45vw + 0.82rem, 1.06rem);
    line-height: 1.55;
    margin: 0 auto 12px;
    max-width: 38rem;
}

.qr-landing__makes[b-j04pupu4w9] {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto 18px;
    max-width: 640px;
}

.qr-landing__cta[b-j04pupu4w9] {
    animation: qr-card-enter-b-j04pupu4w9 0.55s ease 0.12s both;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--text-primary);
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.qr-landing__cta:hover[b-j04pupu4w9] {
    background: color-mix(in srgb, var(--qr-accent, #62be28) 35%, rgba(255, 255, 255, 0.1));
    border-color: var(--qr-accent, #62be28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.qr-landing__faq[b-j04pupu4w9] {
    animation: qr-fade-in-b-j04pupu4w9 0.65s ease 0.16s both;
    margin-bottom: 2rem;
    text-align: left;
}

.qr-landing__panel[b-j04pupu4w9] (.other-battery-sizes) {
    margin-bottom: 2rem;
    margin-top: 0;
    padding: 0;
}

.qr-landing__section-title[b-j04pupu4w9] {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 14px;
    text-align: center;
}

.qr-landing__faq-list[b-j04pupu4w9] {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.qr-landing__faq-item[b-j04pupu4w9] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.qr-landing__faq-question[b-j04pupu4w9] {
    list-style: none;
    align-items: flex-start;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    font-size: 0.98rem;
    font-weight: 600;
    gap: 12px;
    padding: 14px 4px;
    text-align: left;
    transition: color 0.2s ease;
    width: 100%;
}

.qr-landing__faq-question[b-j04pupu4w9]::-webkit-details-marker {
    display: none;
}

.qr-landing__faq-question:hover[b-j04pupu4w9] {
    color: var(--qr-accent, #62be28);
}

.qr-landing__faq-icon[b-j04pupu4w9] {
    flex-shrink: 0;
    height: 16px;
    margin-top: 3px;
    transition: transform 0.2s ease;
    width: 16px;
}

.qr-landing__faq-item.open .qr-landing__faq-icon[b-j04pupu4w9],
.qr-landing__faq-item[open] .qr-landing__faq-icon[b-j04pupu4w9] {
    transform: rotate(45deg);
}

.qr-landing__faq-answer[b-j04pupu4w9] {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.55;
    padding: 0 4px 14px 28px;
}

.qr-landing__faq-answer p[b-j04pupu4w9] {
    color: var(--text-primary);
    margin: 0;
}

.qr-landing__faq-answer a[b-j04pupu4w9] {
    color: color-mix(in srgb, var(--qr-accent, #62be28) 55%, #fff);
    font-weight: 600;
    text-decoration-color: currentColor;
}

.qr-landing__faq-answer a:hover[b-j04pupu4w9] {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .qr-landing__display[b-j04pupu4w9] {
        min-height: min(320px, 68vw);
    }

    .qr-landing__hero-wrap[b-j04pupu4w9] {
        height: min(320px, 68vw);
        width: min(100%, 280px);
    }

    .qr-landing__hero-img[b-j04pupu4w9],
    .qr-landing__hero-img--detail[b-j04pupu4w9] {
        max-height: min(320px, 68vw);
        max-width: min(100%, 280px);
    }

    .qr-landing__gallery-thumb[b-j04pupu4w9] {
        height: min(96px, 20vw);
        width: min(96px, 20vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .qr-landing .app-ui-layout[b-j04pupu4w9],
    .qr-landing__hero-img[b-j04pupu4w9],
    .qr-landing__gallery-thumb[b-j04pupu4w9],
    .qr-landing__gallery-arrow[b-j04pupu4w9],
    .qr-landing__cta[b-j04pupu4w9] {
        animation: none;
        transition: none;
    }
}
/* /Components/Pages/SelectButton.razor.rz.scp.css */
.btn-conteiner[b-xthidcovxs] {
    display: flex;
    --color-text: #ffffff;
    --color-background: #ff135a;
    --color-outline: #ff145b80;
    --color-shadow: #00000080;
}

.btn-content[b-xthidcovxs] {
    display: inline-flex;
    line-height: 1;
    align-items: center;
    padding: 5px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 100px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
}

    .btn-content:hover[b-xthidcovxs], .btn-content:focus[b-xthidcovxs] {
        transition: 0.5s;
        -webkit-animation: btn-content 1s;
        animation: btn-content-b-xthidcovxs 1s;
        outline: 0.1em solid transparent;
        outline-offset: 0.2em;
        box-shadow: 0 0 0.4em 0 var(--color-background);
    }

    .btn-content .icon-arrow[b-xthidcovxs] {
        transition: 0.5s;
        margin-right: 0px;
        transform: scale(0.6);
    }

    .btn-content:hover .icon-arrow[b-xthidcovxs] {
        transition: 0.5s;
        margin-right: 25px;
    }

.icon-arrow[b-xthidcovxs] {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
}

/* SVG */
#arrow-icon-one[b-xthidcovxs] {
    transition: 0.4s;
    transform: translateX(-60%);
}

#arrow-icon-two[b-xthidcovxs] {
    transition: 0.5s;
    transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three[b-xthidcovxs] {
    animation: color_anim-b-xthidcovxs 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one[b-xthidcovxs] {
    transform: translateX(0%);
    animation: color_anim-b-xthidcovxs 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two[b-xthidcovxs] {
    transform: translateX(0%);
    animation: color_anim-b-xthidcovxs 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim-b-xthidcovxs {
    0% {
        fill: white;
    }

    50% {
        fill: var(--color-background);
    }

    100% {
        fill: white;
    }
}

/* Button animations */
@-webkit-keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

@keyframes btn-content-b-xthidcovxs {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}
/* /Components/Pages/SelectYourVehicle.razor.rz.scp.css */
.app-ui-layout[b-zotsfvfpbw] {
    max-width: 920px;
    margin: 0 auto;
    padding-right: clamp(8px, 2vw, 16px);
    padding-left: clamp(8px, 2vw, 16px);
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    top: 0;
    animation: vehicle-select-page-enter-b-zotsfvfpbw 0.55s ease forwards;
}

.finder-focus .app-ui-layout[b-zotsfvfpbw] {
    animation: none;
}

/* Overlay-style finder under the site navbar (footer hidden) */
.finder-focus[b-zotsfvfpbw] {
    min-height: calc(100dvh - 72px);
    display: flex;
    flex-direction: column;
    background: transparent;
    color: var(--text-primary);
    overflow: visible;
    animation: finder-focus-enter-b-zotsfvfpbw 0.4s ease forwards;
}

.finder-focus--exit[b-zotsfvfpbw] {
    animation: finder-focus-exit-b-zotsfvfpbw 0.28s ease forwards;
    pointer-events: none;
}

@keyframes finder-focus-enter-b-zotsfvfpbw {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes finder-focus-exit-b-zotsfvfpbw {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* Brief single-match handoff before /battery */
.finder-handoff[b-zotsfvfpbw] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 40px 24px 64px;
    min-height: min(70dvh, 560px);
    overflow: visible;
    animation: finder-handoff-enter-b-zotsfvfpbw 0.42s ease forwards;
}

.finder-handoff__eyebrow[b-zotsfvfpbw] {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.finder-handoff__vehicle[b-zotsfvfpbw] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* No border-radius / overflow clip — glow lives outside the coin bounds */
.finder-handoff__visual[b-zotsfvfpbw] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(92vw, 400px);
    height: min(92vw, 400px);
    margin: -24px 0;
    overflow: visible;
    border-radius: 0;
    background:
        radial-gradient(
            circle at 50% 48%,
            color-mix(in srgb, var(--handoff-accent, #62be28) 16%, transparent) 0%,
            color-mix(in srgb, var(--handoff-accent, #62be28) 7%, transparent) 32%,
            color-mix(in srgb, var(--handoff-accent, #62be28) 2%, transparent) 52%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 62% 24% at 50% 70%,
            rgba(0, 0, 0, 0.16) 0%,
            transparent 72%
        );
    box-shadow: none;
}

.finder-handoff__coin[b-zotsfvfpbw] {
    width: min(42%, 168px);
    height: auto;
    object-fit: contain;
    overflow: visible;
    filter:
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.26))
        drop-shadow(0 22px 40px color-mix(in srgb, var(--handoff-accent, #62be28) 22%, transparent))
        drop-shadow(0 36px 64px rgba(0, 0, 0, 0.12));
}

.finder-handoff__size[b-zotsfvfpbw] {
    margin: 4px 0 0;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

@keyframes finder-handoff-enter-b-zotsfvfpbw {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.finder-viewport[b-zotsfvfpbw] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    /* Clear absolute overlay navbar */
    padding: calc(72px + env(safe-area-inset-top, 0)) 16px calc(24px + env(safe-area-inset-bottom, 0));
    box-sizing: border-box;
    overflow: visible;
    animation: none;
}

.finder-card[b-zotsfvfpbw] {
    border-left: none !important;
    padding: 0 !important;
    flex: 1 1 auto;
}

.finder-body[b-zotsfvfpbw] {
    text-align: left;
}

.finder-heading[b-zotsfvfpbw] {
    text-align: center;
    margin-bottom: 1.1rem;
}

.finder-heading .heading[b-zotsfvfpbw] {
    margin-bottom: 0.45rem;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
}

.finder-subhead[b-zotsfvfpbw] {
    margin: 0 auto;
    max-width: 34rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.45;
}

.finder-search[b-zotsfvfpbw] {
    position: relative;
    margin-bottom: 0;
    z-index: 30;
}

/* Bare search field — no outer glass box around the input */
.finder-focus .vehicle-search-container[b-zotsfvfpbw] {
    margin-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.finder-search-block[b-zotsfvfpbw] {
    margin-bottom: 1.35rem;
}

.finder-search-block--solo[b-zotsfvfpbw] {
    margin-top: 0.5rem;
}

.finder-search__label[b-zotsfvfpbw] {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.finder-search__field[b-zotsfvfpbw] {
    position: relative;
    display: flex;
    align-items: center;
}

.finder-search__icon[b-zotsfvfpbw] {
    position: absolute;
    left: 18px;
    color: #62be28;
    pointer-events: none;
    z-index: 1;
}

.finder-focus .vehicle-search-input[b-zotsfvfpbw] {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    border: 1.5px solid color-mix(in srgb, #62be28 55%, var(--border-subtle));
    background: var(--bg-surface-elevated, var(--bg-surface));
    color: var(--text-primary);
    padding: 12px 20px 12px 48px;
    font-size: 1.05rem;
    box-shadow: 0 0 0 3px color-mix(in srgb, #62be28 12%, transparent);
}

.finder-focus .vehicle-search-input:focus[b-zotsfvfpbw],
.finder-focus .vehicle-search-input:focus-visible[b-zotsfvfpbw] {
    outline: none;
    border-color: #62be28;
    box-shadow: 0 0 0 4px color-mix(in srgb, #62be28 22%, transparent);
}

/* Anchor results under the search field (not the whole card) */
.finder-focus .vehicle-search-results[b-zotsfvfpbw],
.finder-focus .finder-search-results[b-zotsfvfpbw] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    margin-top: 0;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface-elevated, var(--bg-surface));
    max-height: min(42vh, 320px);
    overflow: auto;
    z-index: 40;
    box-shadow: 0 12px 32px var(--shadow-color);
}

.finder-panel[b-zotsfvfpbw] {
    margin-bottom: 1.35rem;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    background: color-mix(in srgb, var(--bg-surface) 92%, transparent);
}

.finder-panel--solo[b-zotsfvfpbw] {
    margin-top: 0.5rem;
    border-color: color-mix(in srgb, #62be28 45%, var(--border-subtle));
}

.finder-panel--secondary[b-zotsfvfpbw] {
    padding: 12px;
    border-style: dashed;
    background: transparent;
}

.finder-panel--secondary .finder-panel__title[b-zotsfvfpbw] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.finder-panel--secondary .finder-dropdowns[b-zotsfvfpbw] {
    gap: 8px;
}

.finder-panel--secondary .form-group[b-zotsfvfpbw] {
    margin-bottom: 0;
}

.finder-panel--secondary .form-group label[b-zotsfvfpbw] {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.finder-panel__title[b-zotsfvfpbw] {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.finder-dropdowns[b-zotsfvfpbw] {
    display: grid;
    gap: 12px;
}

.finder-focus .finder-select[b-zotsfvfpbw],
.finder-focus .form-control.finder-select[b-zotsfvfpbw] {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface-elevated, var(--bg-surface));
    color: var(--text-primary);
    padding: 10px 18px;
    font-size: 1rem;
}

.finder-focus .form-group label[b-zotsfvfpbw] {
    display: block;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.finder-option-grid--popular[b-zotsfvfpbw] {
    margin-bottom: 12px;
}

.finder-see-all[b-zotsfvfpbw] {
    appearance: none;
    width: 100%;
    min-height: 46px;
    border-radius: 999px;
    border: 1.5px dashed color-mix(in srgb, #62be28 50%, var(--border-subtle));
    background: transparent;
    color: #62be28;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
}

.finder-see-all:hover[b-zotsfvfpbw] {
    background: color-mix(in srgb, var(--bg-surface) 85%, #62be28);
}

.finder-search-back[b-zotsfvfpbw] {
    margin-bottom: 10px;
}

/* When search is focused, results fill the block (not a tiny absolute popup) */
.finder-search-block--solo .finder-search[b-zotsfvfpbw] {
    margin-bottom: 0;
}

.finder-search-block--solo .vehicle-search-results[b-zotsfvfpbw],
.finder-search-block--solo .finder-search-results[b-zotsfvfpbw] {
    position: static;
    margin-top: 10px;
    max-height: min(60vh, 480px);
    box-shadow: none;
}

.finder-step--dimmed[b-zotsfvfpbw] {
    opacity: 0.45;
    pointer-events: none;
}

.finder-step__title[b-zotsfvfpbw] {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.finder-step__status[b-zotsfvfpbw] {
    margin: 0;
    color: var(--text-secondary);
}

.finder-option-grid[b-zotsfvfpbw] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 560px) {
    .finder-option-grid[b-zotsfvfpbw] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.finder-option-skeleton[b-zotsfvfpbw] {
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--bg-surface) 88%, var(--text-muted)) 0%,
        color-mix(in srgb, var(--bg-surface) 72%, var(--text-muted)) 50%,
        color-mix(in srgb, var(--bg-surface) 88%, var(--text-muted)) 100%
    );
    background-size: 200% 100%;
    animation: finder-option-shimmer-b-zotsfvfpbw 1.4s ease-in-out infinite;
}

@keyframes finder-option-shimmer-b-zotsfvfpbw {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .finder-option-skeleton[b-zotsfvfpbw] {
        animation: none;
    }
}

.finder-option[b-zotsfvfpbw] {
    appearance: none;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.finder-option:hover[b-zotsfvfpbw] {
    border-color: #62be28;
    background: color-mix(in srgb, var(--bg-surface) 86%, #62be28);
}

.finder-option:focus-visible[b-zotsfvfpbw] {
    outline: 2px solid #62be28;
    outline-offset: 2px;
}

.finder-option:active[b-zotsfvfpbw] {
    transform: scale(0.98);
}

.finder-year-grid[b-zotsfvfpbw] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.finder-year-option[b-zotsfvfpbw] {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.finder-year-option:hover:not(:disabled)[b-zotsfvfpbw] {
    border-color: #62be28;
    background: color-mix(in srgb, var(--bg-surface) 86%, #62be28);
}

.finder-year-option:focus-visible[b-zotsfvfpbw] {
    outline: 2px solid #62be28;
    outline-offset: 2px;
}

.finder-year-option:disabled[b-zotsfvfpbw] {
    opacity: 0.55;
    cursor: wait;
}

.finder-year-option__year[b-zotsfvfpbw] {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.finder-year-option__chevron[b-zotsfvfpbw] {
    color: #62be28;
    font-weight: 700;
    font-size: 1.1rem;
}

.finder-context[b-zotsfvfpbw] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 1rem;
}

.finder-context__back[b-zotsfvfpbw] {
    appearance: none;
    border: none;
    background: transparent;
    color: #62be28;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px;
    margin-left: -14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.finder-context__back:hover[b-zotsfvfpbw],
.finder-context__back:focus-visible[b-zotsfvfpbw] {
    background: color-mix(in srgb, #62be28 16%, transparent);
    text-decoration: none;
    outline: none;
}

.finder-context__value[b-zotsfvfpbw] {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

@media (prefers-reduced-motion: reduce) {
    .finder-option[b-zotsfvfpbw],
    .finder-year-option[b-zotsfvfpbw] {
        transition: none;
    }
}

@keyframes vehicle-select-page-enter-b-zotsfvfpbw {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selector-section[b-zotsfvfpbw] {
    max-width: 100%;
    overflow: visible;
    position: relative;
    border-top: none !important;
    padding-bottom: 0.5rem;
}

.vehicle-select-banner--hero[b-zotsfvfpbw] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-bottom: 0.25rem;
}

.remote-battery-img[b-zotsfvfpbw] {
    max-width: min(280px, 42vw);
    max-height: none;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .remote-battery-img:hover[b-zotsfvfpbw] {
        transform: translateY(-3px) scale(1.02);
        box-shadow:
            0 22px 56px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
}

.vehicle-select-eyebrow[b-zotsfvfpbw] {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(98, 190, 40, 0.98);
    margin: 0 0 0.45rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.vehicle-select-intro .heading[b-zotsfvfpbw] {
    font-size: clamp(1.45rem, 2.2vw + 0.85rem, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.18;
    margin-bottom: 0.65rem;
}

.vehicle-select-intro .subheading[b-zotsfvfpbw] {
    font-size: clamp(0.92rem, 0.45vw + 0.82rem, 1.06rem);
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.vehicle-select-trust[b-zotsfvfpbw] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 12px;
    list-style: none;
    padding: 0;
    margin: 1.1rem auto 1.35rem;
    max-width: 36rem;
}

.vehicle-select-trust li[b-zotsfvfpbw] {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    padding: 7px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--text-primary) 6%, var(--bg-surface-elevated));
    border: 1px solid var(--border-subtle);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.vehicle-select-form.vehicle-select-card[b-zotsfvfpbw] {
    background: transparent;
    color: var(--text-primary);
    border-radius: 24px;
    padding: clamp(0.85rem, 2.2vw, 1.5rem);
    box-shadow: none;
    border: none;
    border-left: 4px solid #62be28;
    outline: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.battery-options.vehicle-select-results[b-zotsfvfpbw] {
    background: transparent;
    color: var(--text-primary);
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.battery-options.vehicle-select-results.content-enter[b-zotsfvfpbw] {
    animation: vehicle-select-content-enter-b-zotsfvfpbw 0.28s ease forwards;
}

.battery-options.vehicle-select-results.content-leave[b-zotsfvfpbw] {
    animation: vehicle-select-content-leave-b-zotsfvfpbw 0.18s ease forwards;
}

@keyframes vehicle-select-content-enter-b-zotsfvfpbw {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vehicle-select-content-leave-b-zotsfvfpbw {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .app-ui-layout[b-zotsfvfpbw] {
        animation: none;
    }

    .remote-battery-img[b-zotsfvfpbw] {
        transition: none;
    }

    .remote-battery-img:hover[b-zotsfvfpbw] {
        transform: none;
    }

    .battery-options.vehicle-select-results.content-enter[b-zotsfvfpbw],
    .battery-options.vehicle-select-results.content-leave[b-zotsfvfpbw] {
        animation: none;
    }
}

.heading-cont[b-zotsfvfpbw] {
    text-align: center;
}

/* Default page titles (incl. battery results) */
.heading[b-zotsfvfpbw] {
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 600;
}

.subheading[b-zotsfvfpbw] {
    font-size: 16px;
    margin-bottom: 10px;
}

p[b-zotsfvfpbw] {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .app-ui-layout[b-zotsfvfpbw] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .vehicle-select-form[b-zotsfvfpbw] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px;
        overflow: visible;
    }

    .vehicle-select-intro .heading[b-zotsfvfpbw] {
        font-size: clamp(1.28rem, 4.2vw + 0.4rem, 1.85rem);
    }

    .subheading[b-zotsfvfpbw] {
        font-size: 14px;
    }

    .vehicle-select-trust[b-zotsfvfpbw] {
        margin: 0.9rem auto 1.1rem;
        gap: 6px 8px;
    }

    .vehicle-select-trust li[b-zotsfvfpbw] {
        font-size: 0.72rem;
        padding: 6px 10px;
    }

    .form-group[b-zotsfvfpbw] {
        padding: 12px;
        border-radius: 14px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        margin-left: 0;
        margin-right: 0;
    }

    /* Ensure form group wrapper divs respect container width */
    .vehicle-select-form > div[b-zotsfvfpbw] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    .form-group label[b-zotsfvfpbw] {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group input[b-zotsfvfpbw],
    .form-group select[b-zotsfvfpbw] {
        padding: 12px 36px 12px 16px;
        font-size: 15px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 10px center;
        background-size: auto, 18px;
    }

    .form-control[b-zotsfvfpbw] {
        padding: 12px 36px 12px 16px;
        font-size: 15px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 10px center;
        background-size: auto, 18px;
    }

    .battery-grid[b-zotsfvfpbw] {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .battery-option[b-zotsfvfpbw] {
        padding: 14px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .battery-option-image-wrapper[b-zotsfvfpbw] {
        flex-shrink: 0;
        width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .battery-option-image-wrapper img.battery-image[b-zotsfvfpbw] {
        max-width: 120px;
        width: 120px;
        height: auto;
    }

    .battery-option-image-wrapper SkeletonImage[b-zotsfvfpbw] {
        width: 120px !important;
        height: 120px !important;
    }

    .battery-option-details[b-zotsfvfpbw] {
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: left;
        min-width: 0;
    }

    .battery-size-label[b-zotsfvfpbw] {
        text-align: left;
        margin: 0 0 2px 0;
    }

    .battery-name[b-zotsfvfpbw] {
        text-align: left;
        margin: 0 0 8px 0;
        font-size: 16px;
    }

    .battery-desc-label[b-zotsfvfpbw] {
        text-align: left;
    }
    
    .battery-desc[b-zotsfvfpbw] {
        text-align: center;
    }

    .battery-desc-label[b-zotsfvfpbw] {
        margin: 0 0 2px 0;
    }

    .battery-desc[b-zotsfvfpbw] {
        margin: 0 0 12px 0;
        text-align: center;
    }

    .buy-now-btn[b-zotsfvfpbw] {
        width: 100%;
        margin-top: 8px;
    }

    .battery-option-label[b-zotsfvfpbw] {
        top: 8px;
        left: 8px;
        font-size: 10px;
        padding: 3px 8px;
    }
}

.form-group[b-zotsfvfpbw] {
    margin-bottom: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 
                0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
    font-weight: 500;
}

    .form-group:hover[b-zotsfvfpbw] {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 
                    0 6px 16px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .form-group label[b-zotsfvfpbw] {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 8px;
        display: block;
        transition: color 0.3s ease;
        letter-spacing: 0.3px;
    }

        .form-group:hover label[b-zotsfvfpbw] {
            color: var(--text-primary);
        }

    .form-group input[b-zotsfvfpbw],
    .form-group select[b-zotsfvfpbw] {
        width: 100%;
        padding: 14px 40px 14px 18px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
        background-size: auto, 20px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        color: var(--text-primary);
        font-size: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 
                    0 2px 8px rgba(0, 0, 0, 0.2);
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .form-group input:focus[b-zotsfvfpbw],
        .form-group select:focus[b-zotsfvfpbw] {
            border-color: rgba(98, 190, 40, 0.6);
            background: rgba(255, 255, 255, 0.15) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
            background-size: auto, 20px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 
                        0 0 0 3px rgba(98, 190, 40, 0.2),
                        0 4px 12px rgba(0, 0, 0, 0.3);
            outline: none;
        }

        .form-group input:hover[b-zotsfvfpbw],
        .form-group select:hover[b-zotsfvfpbw] {
            border-color: rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.14) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
            background-size: auto, 20px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 
                        0 3px 10px rgba(0, 0, 0, 0.25);
        }

    .form-group select option[b-zotsfvfpbw] {
        background-color: var(--bg-surface);
        color: var(--text-primary);
        padding: 10px;
    }

    .form-group select option:hover[b-zotsfvfpbw],
    .form-group select option:focus[b-zotsfvfpbw],
    .form-group select option:checked[b-zotsfvfpbw] {
        background-color: rgba(98, 190, 40, 0.3);
        color: var(--text-primary);
    }

.form-control[b-zotsfvfpbw] {
    width: 100%;
    padding: 14px 40px 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
    background-size: auto, 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary) !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 
                0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure select displays text when value is 0 (default option) */
.form-control option[value="0"][b-zotsfvfpbw] {
    color: var(--text-muted) !important;
}

.form-control option:first-child[b-zotsfvfpbw] {
    color: var(--text-muted) !important;
}

/* When select has value="0", ensure the displayed text is visible */
select.form-control[value="0"][b-zotsfvfpbw],
select.form-control:has(option[value="0"]:checked)[b-zotsfvfpbw] {
    color: var(--text-muted) !important;
}

.form-control:focus[b-zotsfvfpbw] {
    border-color: rgba(98, 190, 40, 0.6);
    background: rgba(255, 255, 255, 0.15) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
    background-size: auto, 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 
                0 0 0 3px rgba(98, 190, 40, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.3);
    outline: none;
}

.form-control:hover[b-zotsfvfpbw] {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.14) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 12px center;
    background-size: auto, 20px;
}

.form-control option[b-zotsfvfpbw] {
    background-color: var(--bg-surface);
    color: var(--text-primary);
    padding: 10px;
}

.form-control option:hover[b-zotsfvfpbw],
.form-control option:focus[b-zotsfvfpbw],
.form-control option:checked[b-zotsfvfpbw] {
    background-color: rgba(98, 190, 40, 0.3);
    color: var(--text-primary);
}

.form-control option[value="0"][b-zotsfvfpbw] {
    color: var(--text-muted);
}

.find-button[b-zotsfvfpbw] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.find-button button[b-zotsfvfpbw] {
    background: linear-gradient(135deg, #62be28 0%, #4fa01f 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(98, 190, 40, 0.4), 
                0 0 20px rgba(98, 190, 40, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.find-button button[b-zotsfvfpbw]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.find-button button:hover[b-zotsfvfpbw] {
    background: linear-gradient(135deg, #FFCB05 0%, #ffd633 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 203, 5, 0.6), 
                0 0 30px rgba(255, 203, 5, 0.4),
                0 0 40px rgba(255, 203, 5, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.find-button button:hover[b-zotsfvfpbw]::before {
    left: 100%;
}

.find-button button:active[b-zotsfvfpbw] {
    transform: scale(1.02);
    box-shadow: 0 3px 15px rgba(255, 203, 5, 0.5), 
                0 0 20px rgba(255, 203, 5, 0.3);
}

.find-button button > svg[b-zotsfvfpbw] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.find-button button:hover > svg[b-zotsfvfpbw] {
    transform: translateX(8px) scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

.battery-grid[b-zotsfvfpbw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.battery-option[b-zotsfvfpbw] {
    background: var(--bg-surface);
    color: var(--text-primary);
    border-radius: 24px;
    padding: 16px;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    justify-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    position: relative;
}

.battery-option-label[b-zotsfvfpbw] {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 5;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.battery-options-warning[b-zotsfvfpbw] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0 24px 0;
    color: #ff8c00;
    font-size: 14px;
    line-height: 1.5;
}

.battery-options-warning svg[b-zotsfvfpbw] {
    margin-top: 2px;
}
.battery-option:hover[b-zotsfvfpbw] {
    background-color: var(--bg-surface-medium);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6),
                0 4px 8px rgba(0, 0, 0, 0.3);
}

.battery-image[b-zotsfvfpbw] {
    max-width: 120px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.battery-option:hover .battery-image[b-zotsfvfpbw] {
    transform: scale(1.1);
}

.battery-option:active[b-zotsfvfpbw] {
    transform: scale(0.95);
}

.battery-name[b-zotsfvfpbw] {
    margin: 10px 0;
    font-weight: bold;
    font-size: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid white;
    padding-bottom: 1px;
}

.battery-size-label[b-zotsfvfpbw] {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    text-align: center;
}

.battery-desc-label[b-zotsfvfpbw] {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    text-align: center;
}

.buy-now-btn[b-zotsfvfpbw] {
    background: #4a4a4a;
    color: var(--text-primary);
    border: none;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.battery-option:hover .buy-now-btn[b-zotsfvfpbw] {
    background: var(--battery-color, #4a4a4a) !important;
}


button[b-zotsfvfpbw] {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #62be28;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 15px;
}

    button:hover[b-zotsfvfpbw] {
        background: #FFCB05;
    }

    button > svg[b-zotsfvfpbw] {
        width: 34px;
        margin-left: 10px;
        transition: transform 0.3s ease-in-out;
    }

    button:hover svg[b-zotsfvfpbw] {
        transform: translateX(5px);
    }

    button:active[b-zotsfvfpbw] {
        transform: scale(0.95);
    }


back-button[b-zotsfvfpbw] {
    display: flex;
    height: 2em;
    width: 100px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
}

    back-button > svg[b-zotsfvfpbw] {
        margin-right: 5px;
        margin-left: 5px;
        font-size: 20px;
        filter: invert();
        transition: all 0.4s ease-in;
    }

    back-button:hover > svg[b-zotsfvfpbw] {
        font-size: 1.2em;
        transform: translateX(-5px);
    }

.bg-fade-in[b-zotsfvfpbw] {
    animation: opac-b-zotsfvfpbw 0.28s ease forwards;
}

@keyframes opac-b-zotsfvfpbw {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.vehicle-select-form-loaded[b-zotsfvfpbw],
.battery-grid-loaded[b-zotsfvfpbw] {
    width: 100%;
    overflow: visible;
    padding: 8px 6px;
    box-sizing: border-box;
}

/* Selection Mode Toggle - Glassmorphic */
.selection-mode-toggle[b-zotsfvfpbw] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toggle-btn[b-zotsfvfpbw] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 24px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15);
    flex: 1;
    text-align: center;
}

.toggle-btn:hover[b-zotsfvfpbw] {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.toggle-btn.active[b-zotsfvfpbw] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.toggle-btn:active[b-zotsfvfpbw] {
    transform: scale(0.98);
}

/* Vehicle Search Container - Glassmorphic */
.vehicle-search-container[b-zotsfvfpbw] {
    position: relative;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 40px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


/* Vehicle Search Input - Glassmorphic */
.vehicle-search-input[b-zotsfvfpbw] {
    width: 100%;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    font-size: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.vehicle-search-input[b-zotsfvfpbw]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vehicle-search-input:hover[b-zotsfvfpbw] {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 4px 16px rgba(0, 0, 0, 0.25);
}

.vehicle-search-input:focus[b-zotsfvfpbw] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.1), 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Vehicle Search Results - Glassmorphic */
.vehicle-select-form[b-zotsfvfpbw] {
    position: relative;
}

.vehicle-search-results[b-zotsfvfpbw] {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 600px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow-y: auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 48px rgba(0, 0, 0, 0.4);
    padding: 8px;
    z-index: 9999;
    margin-top: 4px;
}

/* Custom scrollbar for search results */
.vehicle-search-results[b-zotsfvfpbw]::-webkit-scrollbar {
    width: 8px;
}

.vehicle-search-results[b-zotsfvfpbw]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.vehicle-search-results[b-zotsfvfpbw]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.vehicle-search-results[b-zotsfvfpbw]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Search Result Item - Glassmorphic */
.search-result-item[b-zotsfvfpbw] {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.search-result-item:hover[b-zotsfvfpbw] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.search-result-item-highlighted[b-zotsfvfpbw] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.search-result-item:active[b-zotsfvfpbw] {
    transform: scale(0.98);
}

/* Search Loading and No Results */
.search-loading[b-zotsfvfpbw],
.search-no-results[b-zotsfvfpbw] {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.search-result-footer[b-zotsfvfpbw] {
    padding: 12px 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
}

/* Hidden Visually - Maintains space but hides element */
.hidden-visually[b-zotsfvfpbw] {
    visibility: hidden;
    height: auto;
    min-height: inherit;
    pointer-events: none;
}

/* OR Separator - Glassmorphic */
.or-separator[b-zotsfvfpbw] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.or-separator[b-zotsfvfpbw]::before,
.or-separator[b-zotsfvfpbw]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.or-text[b-zotsfvfpbw] {
    padding: 8px 24px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .buy-now-btn[b-zotsfvfpbw] {
        padding: 8px 20px;
        font-size: 14px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .battery-option-details[b-zotsfvfpbw] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .buy-now-btn[b-zotsfvfpbw] {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .selection-mode-toggle[b-zotsfvfpbw] {
        flex-direction: column;
        gap: 8px;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-radius: 18px;
        padding: 6px;
    }

    .toggle-btn[b-zotsfvfpbw] {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 14px;
    }

    .finder-focus .vehicle-search-container[b-zotsfvfpbw] {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        padding: 0;
    }

    .vehicle-search-container[b-zotsfvfpbw] {
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-radius: 18px;
        padding: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible !important;
        position: relative !important;
        z-index: 1;
    }

    .vehicle-search-input[b-zotsfvfpbw] {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 16px;
    }

    .vehicle-search-results[b-zotsfvfpbw] {
        max-height: 200px;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-radius: 16px;
        padding: 6px;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 99999;
        width: 100%;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 48px rgba(0, 0, 0, 0.4) !important;
        overflow-y: auto;
    }

    .search-result-item[b-zotsfvfpbw] {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 12px;
    }

    .or-separator[b-zotsfvfpbw] {
        margin: 20px 0;
    }

    .or-text[b-zotsfvfpbw] {
        padding: 6px 20px;
        font-size: 13px;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .finder-focus .vehicle-search-container[b-zotsfvfpbw] {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .vehicle-search-container[b-zotsfvfpbw] {
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }

    .vehicle-search-results[b-zotsfvfpbw] {
        max-height: 400px;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
}

/* Browse-by-make chips below vehicle finder */
.vehicle-browse-makes[b-zotsfvfpbw] {
    margin-top: 1.75rem;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    text-align: center;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.vehicle-browse-makes-title[b-zotsfvfpbw] {
    font-size: clamp(1.1rem, 1.5vw + 0.6rem, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}

.vehicle-browse-makes-lead[b-zotsfvfpbw] {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 auto 1.1rem;
    max-width: 32rem;
    line-height: 1.5;
}

.vehicle-browse-makes-grid[b-zotsfvfpbw] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.vehicle-browse-make-chip[b-zotsfvfpbw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-browse-make-chip:hover[b-zotsfvfpbw] {
    background: rgba(98, 190, 40, 0.18);
    border-color: rgba(98, 190, 40, 0.45);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(98, 190, 40, 0.2);
}

.vehicle-browse-make-chip--all[b-zotsfvfpbw] {
    background: rgba(98, 190, 40, 0.12);
    border-color: rgba(98, 190, 40, 0.35);
}

.vehicle-browse-make-chip--all:hover[b-zotsfvfpbw] {
    background: rgba(98, 190, 40, 0.28);
}

.vehicle-select-help-links[b-zotsfvfpbw] {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vehicle-select-help-links a[b-zotsfvfpbw] {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vehicle-select-help-links a:hover[b-zotsfvfpbw] {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .vehicle-browse-makes[b-zotsfvfpbw] {
        margin-top: 1.25rem;
        padding: 1rem 0.75rem;
    }

    .vehicle-browse-make-chip[b-zotsfvfpbw] {
        padding: 9px 14px;
        font-size: 0.82rem;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1025px) {
    .vehicle-search-container[b-zotsfvfpbw] {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .vehicle-search-results[b-zotsfvfpbw] {
        max-height: 600px;
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
    }

    .search-result-item[b-zotsfvfpbw] {
        font-size: 16px;
    }
}
/* /Components/Pages/ShippingReturnPolicy.razor.rz.scp.css */
.shipping-policy-container[b-7c00fq21vh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
}

.shipping-policy[b-7c00fq21vh] {
    background: var(--bg-canvas);
    max-width: 700px;
    padding: 10px 20px 10px 20px;
    position: relative;
    color: var(--text-primary);
    margin: 10px;
    margin-top: 12px;
}

p[b-7c00fq21vh] {
    color: var(--text-primary);
}

h1[b-7c00fq21vh] {
    color: var(--text-primary);
    font-size: 1.17em;
    font-weight: bold;
    margin: 1em 0;
}
/* /Components/Pages/TermsOfService.razor.rz.scp.css */
.terms-container[b-v21tncke98] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
}

.terms[b-v21tncke98] {
    background: var(--bg-canvas);
    max-width: 700px;
    padding: 10px 20px 10px 20px;
    position: relative;
    color: var(--text-primary);
    margin: 10px;
    margin-top: 12px;
    text-align: left;
}

p[b-v21tncke98] {
    color: var(--text-primary);
}

h1[b-v21tncke98] {
    color: var(--text-primary);
    font-size: 1.17em;
    font-weight: bold;
    margin: 1em 0;
}
/* /Components/Pages/Updates.razor.rz.scp.css */
.updates-section[b-8zigsbpjco] {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.updates-container[b-8zigsbpjco] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

    .updates-container h2[b-8zigsbpjco] {
        font-size: 2rem;
        margin: 0;
    }

.updates-image[b-8zigsbpjco] {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.updates-container p[b-8zigsbpjco] {
    line-height: 1.5;
}

p[b-8zigsbpjco] {
    color: var(--text-primary);
}

/* Improve email input for mobile */
.email-group .email[b-8zigsbpjco] {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none !important;
    width: auto;
    font-size: 16px !important; /* Prevents zoom on iOS */
    min-height: 44px !important; /* Minimum touch target */
    -webkit-appearance: none;
    appearance: none;
}

.email-group .email:focus[b-8zigsbpjco] {
    outline: none;
}

.email-group .email:focus-visible[b-8zigsbpjco] {
    outline: 2px solid var(--secondary-color, #4A90E2);
    outline-offset: 2px;
}

.email-group .email-submit[b-8zigsbpjco] {
    flex: 0 0 auto;
    min-height: 44px !important; /* Minimum touch target */
    min-width: 100px !important;
    font-size: 16px !important;
    -webkit-tap-highlight-color: transparent;
}

.email-group .email-submit:focus-visible[b-8zigsbpjco] {
    outline: 3px solid #fff !important;
    outline-offset: 3px !important;
}

.email-group .email-submit:active[b-8zigsbpjco] {
    transform: scale(0.98);
}

/* Validation message styling */
.validation-message-email[b-8zigsbpjco] {
    color: var(--error-text);
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0 4px;
}

.email-group[b-8zigsbpjco] {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: min(100%, 400px);
    max-width: 400px;
    margin-inline: auto;
    gap: 0;
    overflow: visible; /* site-legacy sets hidden; clips focus outline */
}
/* /Components/Pages/VehicleMake.razor.rz.scp.css */
.vehicle-make-container[b-yvkc80dhnj] {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(72px + env(safe-area-inset-top, 0)) 20px 40px;
    color: var(--text-primary);
}

@media (min-width: 1024px) {
    .vehicle-make-container[b-yvkc80dhnj] {
        padding: calc(80px + env(safe-area-inset-top, 0)) 24px 48px;
    }
}

.vehicle-make-breadcrumb[b-yvkc80dhnj] {
    margin-bottom: 28px;
    margin-top: 8px;
}

.vehicle-make-bc-list[b-yvkc80dhnj] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.vehicle-make-bc-list a[b-yvkc80dhnj] {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
}

.vehicle-make-bc-list a:hover[b-yvkc80dhnj] {
    color: var(--text-primary);
    border-bottom-color: var(--text-muted);
}

.vehicle-make-bc-sep[b-yvkc80dhnj] {
    color: var(--text-muted);
    user-select: none;
}

.vehicle-make-bc-current[b-yvkc80dhnj] {
    color: var(--text-muted);
}

.vehicle-make-header[b-yvkc80dhnj] {
    text-align: center;
    margin-bottom: 50px;
}

.vehicle-make-header h1[b-yvkc80dhnj] {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.vehicle-make-intro[b-yvkc80dhnj] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.vehicle-make-content[b-yvkc80dhnj] {
    line-height: 1.8;
}

.batteries-section[b-yvkc80dhnj],
.vehicles-section[b-yvkc80dhnj],
.cta-section[b-yvkc80dhnj] {
    margin-bottom: 60px;
}

.batteries-section h2[b-yvkc80dhnj],
.vehicles-section h2[b-yvkc80dhnj],
.cta-section h2[b-yvkc80dhnj] {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-subtle);
    padding-bottom: 10px;
}

.cta-section p[b-yvkc80dhnj] {
    color: var(--text-primary);
}

.section-description[b-yvkc80dhnj] {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.section-description a[b-yvkc80dhnj],
.vehicle-make-intro a[b-yvkc80dhnj] {
    color: #F58220;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vehicle-make-guide-section[b-yvkc80dhnj] {
    margin-bottom: 36px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-make-guide-section h2[b-yvkc80dhnj] {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.batteries-grid[b-yvkc80dhnj] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.battery-card[b-yvkc80dhnj] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

a.battery-card:focus-visible[b-yvkc80dhnj] {
    outline: 2px solid #F58220;
    outline-offset: 3px;
}

.battery-card:hover[b-yvkc80dhnj] {
    background: rgba(255, 255, 255, 0.1);
    border-color: #F58220;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.battery-image[b-yvkc80dhnj] {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.battery-card h3[b-yvkc80dhnj] {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.battery-link[b-yvkc80dhnj] {
    color: #F58220;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.battery-card:hover .battery-link[b-yvkc80dhnj] {
    color: #ff9a40;
}

.models-grid[b-yvkc80dhnj] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.model-card-wrap[b-yvkc80dhnj] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.model-card[b-yvkc80dhnj] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #F58220;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.model-card:focus-visible[b-yvkc80dhnj] {
    outline: 2px solid #F58220;
    outline-offset: 3px;
}

.model-card:hover[b-yvkc80dhnj] {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.model-card h3[b-yvkc80dhnj] {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.model-description[b-yvkc80dhnj] {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.model-link[b-yvkc80dhnj] {
    color: #F58220;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.model-link:hover[b-yvkc80dhnj] {
    color: #ff9a40;
}

/* Primary CTA look inside the card link */
.model-hub-button[b-yvkc80dhnj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    min-height: 44px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: none;
    color: var(--text-primary) !important;
    background: #f58220;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.model-card:hover .model-hub-button[b-yvkc80dhnj] {
    background: #ff9a40;
    color: var(--text-primary) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.model-link-secondary[b-yvkc80dhnj] {
    display: block;
    margin-left: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: underline;
    font-weight: 500;
}

.model-link-secondary:hover[b-yvkc80dhnj] {
    color: var(--text-secondary);
}

.no-models[b-yvkc80dhnj] {
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
    font-size: 1.1rem;
}

.vehicle-make-cta[b-yvkc80dhnj] {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button[b-yvkc80dhnj] {
    display: inline-block;
    padding: 15px 40px;
    background: #F58220;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover[b-yvkc80dhnj] {
    background: #ff9a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.cta-button-secondary[b-yvkc80dhnj] {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #F58220;
    text-decoration: none;
    border: 2px solid #F58220;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover[b-yvkc80dhnj] {
    background: rgba(245, 130, 32, 0.1);
    border-color: #ff9a40;
    color: #ff9a40;
}

.loading-message[b-yvkc80dhnj],
.error-message[b-yvkc80dhnj] {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-secondary);
}

.error-message h1[b-yvkc80dhnj] {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.error-message p[b-yvkc80dhnj] {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .vehicle-make-container[b-yvkc80dhnj] {
        padding: 88px 15px 24px;
    }

    .vehicle-make-header h1[b-yvkc80dhnj] {
        font-size: 2rem;
    }

    .vehicle-make-intro[b-yvkc80dhnj] {
        font-size: 1rem;
    }

    .batteries-grid[b-yvkc80dhnj] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .models-grid[b-yvkc80dhnj] {
        grid-template-columns: 1fr;
    }

    .vehicle-make-cta[b-yvkc80dhnj] {
        flex-direction: column;
        align-items: center;
    }

    .cta-button[b-yvkc80dhnj],
    .cta-button-secondary[b-yvkc80dhnj] {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}



/* /Components/Pages/VehicleMakeModels.razor.rz.scp.css */
/* Models-by-make page — styling aligned with VehicleMake.razor */

.vmm-page[b-r1spnb3zeo] {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.vmm-inner[b-r1spnb3zeo] {
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(72px + env(safe-area-inset-top, 0)) 20px 48px;
    color: var(--text-primary);
}

@media (min-width: 1024px) {
    .vmm-inner[b-r1spnb3zeo] {
        padding: calc(80px + env(safe-area-inset-top, 0)) 24px 56px;
    }
}

.vmm-breadcrumb[b-r1spnb3zeo] {
    margin-bottom: 24px;
    font-size: 14px;
}

.vmm-breadcrumb-list[b-r1spnb3zeo] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vmm-breadcrumb-list a[b-r1spnb3zeo] {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
}

.vmm-breadcrumb-list a:hover[b-r1spnb3zeo] {
    color: var(--primary-color, #f58220);
    border-bottom-color: var(--primary-color, #f58220);
}

.vmm-breadcrumb-sep[b-r1spnb3zeo] {
    color: var(--text-muted);
    user-select: none;
}

.vmm-breadcrumb-current[b-r1spnb3zeo] {
    color: var(--text-muted);
}

.vmm-header[b-r1spnb3zeo] {
    text-align: center;
    margin-bottom: 40px;
}

.vmm-header h1[b-r1spnb3zeo] {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.vmm-intro[b-r1spnb3zeo] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.vmm-models-grid[b-r1spnb3zeo] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.vmm-model-card[b-r1spnb3zeo] {
    background: var(--bg-surface);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid var(--border-subtle);
    border-left: 4px solid #f58220;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.vmm-model-card:hover[b-r1spnb3zeo] {
    background: var(--bg-surface-elevated);
    transform: translateX(4px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.vmm-model-card h2[b-r1spnb3zeo] {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.vmm-model-desc[b-r1spnb3zeo] {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vmm-model-hub-button[b-r1spnb3zeo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    min-height: 44px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    color: #ffffff !important;
    background: #f58220;
    border: 2px solid color-mix(in srgb, #ffffff 25%, transparent);
    box-shadow: 0 4px 14px var(--shadow-color);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.vmm-model-hub-button:hover[b-r1spnb3zeo] {
    background: #ff9a40;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--shadow-color);
}

.vmm-model-hub-button:focus-visible[b-r1spnb3zeo] {
    outline: 2px solid var(--primary-color, #f58220);
    outline-offset: 3px;
}

.vmm-model-link-secondary[b-r1spnb3zeo] {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: underline;
    font-weight: 500;
}

.vmm-model-link-secondary:hover[b-r1spnb3zeo] {
    color: var(--text-primary);
}

.vmm-no-models[b-r1spnb3zeo] {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
}

.vmm-footer-cta[b-r1spnb3zeo] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.vmm-cta[b-r1spnb3zeo] {
    display: inline-block;
    padding: 14px 32px;
    background: #f58220;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.vmm-cta:hover[b-r1spnb3zeo] {
    background: #ff9a40;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.vmm-link-secondary[b-r1spnb3zeo] {
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: 0.95rem;
}

.vmm-link-secondary:hover[b-r1spnb3zeo] {
    color: var(--primary-color, #f58220);
}

.vmm-loading[b-r1spnb3zeo],
.vmm-error[b-r1spnb3zeo] {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.vmm-error h1[b-r1spnb3zeo] {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .vmm-models-grid[b-r1spnb3zeo] {
        grid-template-columns: 1fr;
    }

    .vmm-header h1[b-r1spnb3zeo] {
        font-size: 1.85rem;
    }

    .vmm-footer-cta[b-r1spnb3zeo] {
        flex-direction: column;
    }
}
/* /Components/Pages/VehicleModelHub.razor.rz.scp.css */
.vmh-page[b-n0czn3bu4z] {
    max-width: 100%;
    overflow-x: hidden;
}

.vmh-inner[b-n0czn3bu4z] {
    max-width: 960px;
    margin: 0 auto;
    padding: 88px 20px 48px;
    color: var(--text-primary);
}

@media (min-width: 1024px) {
    .vmh-inner[b-n0czn3bu4z] {
        padding: 96px 24px 56px;
    }
}

.vmh-breadcrumb-list[b-n0czn3bu4z] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    font-size: 14px;
}

.vmh-breadcrumb-list a[b-n0czn3bu4z] {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
}

.vmh-breadcrumb-list a:hover[b-n0czn3bu4z] {
    color: var(--text-primary);
    border-bottom-color: var(--text-muted);
}

.vmh-bc-sep[b-n0czn3bu4z] {
    color: var(--text-muted);
    user-select: none;
}

.vmh-bc-current[b-n0czn3bu4z] {
    color: var(--text-muted);
}

.vmh-header[b-n0czn3bu4z] {
    margin-bottom: 28px;
}

.vmh-header h1[b-n0czn3bu4z] {
    font-size: 1.85rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.25;
}

.vmh-intro[b-n0czn3bu4z] {
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.vmh-years[b-n0czn3bu4z] {
    margin-bottom: 36px;
}

.vmh-years-heading[b-n0czn3bu4z] {
    margin: 0 0 14px;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.vmh-year-list[b-n0czn3bu4z] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vmh-year-group[b-n0czn3bu4z] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.vmh-year-group__header[b-n0czn3bu4z] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
}

.vmh-year-group__year[b-n0czn3bu4z] {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    line-height: 1;
}

.vmh-year-group__hint[b-n0czn3bu4z] {
    margin: 0;
    flex: 1 1 12rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.vmh-year-group__options[b-n0czn3bu4z] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vmh-year-option[b-n0czn3bu4z] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface-elevated, var(--bg-surface-medium));
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.vmh-year-option:hover[b-n0czn3bu4z] {
    border-color: #F58220;
    background: color-mix(in srgb, var(--bg-surface) 88%, #F58220);
}

.vmh-year-option:focus-visible[b-n0czn3bu4z] {
    outline: 2px solid #F58220;
    outline-offset: 2px;
}

.vmh-year-option__label[b-n0czn3bu4z] {
    flex: 1 1 auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
}

.vmh-year-option__battery[b-n0czn3bu4z] {
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: #F58220;
    white-space: nowrap;
}

.vmh-year-option__chevron[b-n0czn3bu4z] {
    flex: 0 0 auto;
    color: var(--text-muted);
    font-weight: 600;
}

.vmh-year-option:hover .vmh-year-option__chevron[b-n0czn3bu4z] {
    color: #F58220;
}

.vmh-faq[b-n0czn3bu4z] {
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
}

.vmh-faq-heading[b-n0czn3bu4z] {
    margin: 0 0 16px;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.vmh-faq-item[b-n0czn3bu4z] {
    margin-bottom: 16px;
}

.vmh-faq-item:last-child[b-n0czn3bu4z] {
    margin-bottom: 0;
}

.vmh-faq-question[b-n0czn3bu4z] {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.vmh-faq-answer[b-n0czn3bu4z] {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.vmh-faq-answer a[b-n0czn3bu4z] {
    color: #F58220;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vmh-empty[b-n0czn3bu4z] {
    color: var(--text-secondary);
    padding: 24px 0;
}

.vmh-actions[b-n0czn3bu4z] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    align-items: center;
}

.vmh-link-secondary[b-n0czn3bu4z] {
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: 0.95rem;
}

.vmh-link-secondary:hover[b-n0czn3bu4z] {
    color: #F58220;
}

.vmh-cta[b-n0czn3bu4z] {
    display: inline-block;
    padding: 12px 24px;
    background: #f58220;
    color: #ffffff !important;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}

.vmh-cta:hover[b-n0czn3bu4z] {
    background: #ff9a40;
    color: #ffffff !important;
}

.vmh-loading[b-n0czn3bu4z],
.vmh-error[b-n0czn3bu4z] {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.vmh-error h1[b-n0czn3bu4z] {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}
/* /Components/Pages/VehiclesIndex.razor.rz.scp.css */
.vi-page[b-z9xyhwqae8] {
    max-width: 100%;
    overflow-x: hidden;
}

.vi-inner[b-z9xyhwqae8] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px 48px;
    color: var(--text-primary);
}

/* Loading state (no breadcrumb bar) — clear overlay nav */
.vi-inner--loading[b-z9xyhwqae8] {
    padding-top: calc(72px + env(safe-area-inset-top, 0));
}

@media (min-width: 1024px) {
    .vi-inner[b-z9xyhwqae8] {
        padding: 16px 24px 56px;
    }

    .vi-inner--loading[b-z9xyhwqae8] {
        padding-top: 84px;
    }
}

.vi-header[b-z9xyhwqae8] {
    text-align: center;
    margin-bottom: 36px;
}

.vi-header h1[b-z9xyhwqae8] {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.vi-intro[b-z9xyhwqae8] {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

.vi-grid[b-z9xyhwqae8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.vi-card[b-z9xyhwqae8] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 18px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vi-card:hover[b-z9xyhwqae8] {
    background: var(--bg-surface-elevated);
    border-color: rgba(245, 130, 32, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
    color: var(--text-primary);
}

.vi-card-title[b-z9xyhwqae8] {
    font-weight: 700;
    font-size: 1.05rem;
}

.vi-card-hint[b-z9xyhwqae8] {
    font-size: 0.85rem;
    color: #f58220;
}

.vi-loading[b-z9xyhwqae8],
.vi-empty[b-z9xyhwqae8] {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-secondary);
}

.vi-footer[b-z9xyhwqae8] {
    margin-top: 40px;
    text-align: center;
}

.vi-cta-secondary[b-z9xyhwqae8] {
    color: var(--text-secondary);
    text-decoration: underline;
}

.vi-cta-secondary:hover[b-z9xyhwqae8] {
    color: var(--primary-color, #f58220);
}
/* /Components/Pages/VerifiedBadge.razor.rz.scp.css */
.authorize-net-seal[b-wphmab9blr] {
    margin-top: 10px;
}
/* /Components/Pages/Video.razor.rz.scp.css */
.image-overlay-container[b-zq4lvg8d3c] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 24px;
}

.video-container[b-zq4lvg8d3c] {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 940px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.webm-video[b-zq4lvg8d3c] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content[b-zq4lvg8d3c] {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px) saturate(160%);
    -webkit-backdrop-filter: blur(4px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 15px;
    box-sizing: border-box;
    padding: clamp(16px, 3.5vw, 28px);
    width: auto;
    overflow: auto;
    overflow-x: hidden;
    font-size: clamp(15px, 1.65vw, 20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.overlay-content > *[b-zq4lvg8d3c] {
    width: 100%;
    max-width: 100%;
}

/* Overlay sits on dark video — keep copy white in all themes */
.overlay-content[b-zq4lvg8d3c] (.make-model-title),
.overlay-content[b-zq4lvg8d3c] (h2),
.overlay-content[b-zq4lvg8d3c] (p.instructions),
.overlay-content[b-zq4lvg8d3c] (.instructions),
.overlay-content[b-zq4lvg8d3c] (.dropdown-label) {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

/* Child component (MakeModelYear): ensure headline isn’t visually shrunk inside overlay */
.overlay-content[b-zq4lvg8d3c] (p.instructions) {
    font-size: clamp(1.3rem, 3.4vw, 1.75rem);
    line-height: 1.5;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
}

/* Center hero intro + button inside overlay (child component) */
.overlay-content[b-zq4lvg8d3c] (.make-model-intro) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.overlay-content[b-zq4lvg8d3c] (.btn-conteiner) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-inline: auto;
}

.hero-image[b-zq4lvg8d3c] {
    display: block;
    align-items: center;
    max-width: 50%;
    height: auto;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    padding-top: 8px;
    padding-bottom: 20px;
    animation: fadeInDown-b-zq4lvg8d3c 1s ease forwards;
}

@keyframes fadeInDown-b-zq4lvg8d3c {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@media (min-width: 1200px) {
    .video-container[b-zq4lvg8d3c] {
        margin-top: -60px;
    }
}

@media (max-width: 1024px) {
    .video-container[b-zq4lvg8d3c] {
        width: 100%;
        min-height: 560px;
    }

    .hero-image[b-zq4lvg8d3c] {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .video-container[b-zq4lvg8d3c] {
        width: 100%;
        min-height: 620px;
        margin-top: 0;
    }

    .overlay-content[b-zq4lvg8d3c] {
        font-size: 15px;
    }

    .overlay-content[b-zq4lvg8d3c] (p.instructions) {
        font-size: clamp(1.15rem, 4.2vw, 1.5rem);
        margin-bottom: 1.15rem;
    }

        .overlay-content h2[b-zq4lvg8d3c] {
            margin: 0 0 8px;
            font-size: clamp(18px, 2.2vw, 26px);
            line-height: 1.2;
        }

    .hero-image[b-zq4lvg8d3c] {
        width: 100%;
        max-width: none;
    }
}
/* /Components/Pages/Wheel.razor.rz.scp.css */
.background[b-vue47vj83t] {
    position: relative;
    padding: 2rem 1rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.battery-wheel[b-vue47vj83t] {
    width: 100%;
    max-width: min(1400px, 100%);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    /* Pill / stadium viewport — semicircular end caps */
    border-radius: 9999px;
    padding: 14px 40px;
    isolation: isolate;
}

/* Soft vignette at the pill ends — follows border-radius (not a vertical linear band). Lighter = less fade. */
.battery-wheel[b-vue47vj83t]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    box-shadow:
        inset 22px 0 28px -8px rgba(0, 0, 0, 0.18),
        inset -22px 0 28px -8px rgba(0, 0, 0, 0.18);
}

.wheel[b-vue47vj83t] {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: scroll-b-vue47vj83t 28s linear infinite;
    position: relative;
    z-index: 1;
}

.wheel-coin[b-vue47vj83t] {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    background: transparent;
}

html[data-theme="light"] .wheel-coin[b-vue47vj83t] {
    mix-blend-mode: multiply;
    box-shadow: none;
}

html[data-theme="light"] .battery-wheel[b-vue47vj83t] {
    isolation: auto;
}

/* CR1616 / CR1620 / CR1632 — smallest */
.wheel-coin--xs[b-vue47vj83t] {
    width: 120px;
    height: 120px;
}

/* CR2016 / CR2025 / CR2032 — slightly smaller than largest */
.wheel-coin--sm[b-vue47vj83t] {
    width: 132px;
    height: 132px;
}

/* CR2354 / CR2450 — baseline size */
.wheel-coin--md[b-vue47vj83t] {
    width: 150px;
    height: 150px;
}

@keyframes scroll-b-vue47vj83t {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Row is duplicated; move exactly one set for seamless loop */
        transform: translateX(-50%);
    }
}

/* Responsive: proportional tiers (md was 100px; scale xs/sm to match desktop ratios) */
@media (max-width: 768px) {
    .battery-wheel[b-vue47vj83t] {
        padding: 10px 22px;
    }

    .wheel-coin--md[b-vue47vj83t] {
        width: 100px;
        height: 100px;
    }

    .wheel-coin--sm[b-vue47vj83t] {
        width: 88px;
        height: 88px;
    }

    .wheel-coin--xs[b-vue47vj83t] {
        width: 80px;
        height: 80px;
    }
}
/* /Components/Shared/AddressVerificationModal.razor.rz.scp.css */
.address-verification-overlay[b-uvik54xom5] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: rgba(0, 0, 0, 0.75) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(4px) !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    transform: none !important;
    isolation: isolate !important;
}

.address-verification-content[b-uvik54xom5] {
    background: rgba(34, 34, 34, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transition: all 0.3s ease;
    /* Ensure readable default text color inside the modal */
    color: rgba(255, 255, 255, 0.92);
}

.address-verification-content:hover[b-uvik54xom5] {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.address-verification-close[b-uvik54xom5] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 1;
}

.address-verification-close:hover[b-uvik54xom5] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.address-verification-close:active[b-uvik54xom5] {
    transform: scale(0.95);
}

.address-verification-close svg[b-uvik54xom5] {
    width: 18px;
    height: 18px;
}

.address-verification-body[b-uvik54xom5] {
    color: var(--text-primary);
}

.address-verification-body h2[b-uvik54xom5] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.address-comparison[b-uvik54xom5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.address-box[b-uvik54xom5] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.address-box.address-suggested[b-uvik54xom5] {
    border: 2px solid;
    background: rgba(255, 203, 5, 0.1);
}

.address-box.address-single[b-uvik54xom5] {
    margin-bottom: 25px;
}

.address-box h4[b-uvik54xom5] {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary) !important;
}

.address-display[b-uvik54xom5] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.address-display p[b-uvik54xom5] {
    margin: 4px 0;
}

.address-warning[b-uvik54xom5] {
    background: rgba(255, 87, 34, 0.2);
    border-left: 4px solid #ff5722;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.address-warning p[b-uvik54xom5] {
    color: var(--error-text);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.address-message[b-uvik54xom5] {
    background: rgba(255, 193, 7, 0.2);
    border-left: 3px solid;
    padding: 12px;
    margin-top: 20px;
    border-radius: 4px;
}

.address-message p[b-uvik54xom5] {
    color: var(--warning-text);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.address-verification-actions[b-uvik54xom5] {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-primary[b-uvik54xom5],
.btn-secondary[b-uvik54xom5] {
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary:hover[b-uvik54xom5] {
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-primary:active[b-uvik54xom5] {
    transform: scale(0.95);
}

.btn-secondary[b-uvik54xom5] {
    background-color: #666;
    color: var(--text-primary);
}

.btn-secondary:hover[b-uvik54xom5] {
    background-color: #777;
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-secondary:active[b-uvik54xom5] {
    transform: scale(0.95);
}

/* Custom scrollbar */
.address-verification-content[b-uvik54xom5]::-webkit-scrollbar {
    width: 8px;
}

.address-verification-content[b-uvik54xom5]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.address-verification-content[b-uvik54xom5]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.address-verification-content[b-uvik54xom5]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .address-verification-content[b-uvik54xom5] {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
        border-radius: 16px;
    }

    .address-verification-close[b-uvik54xom5] {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .address-verification-body h2[b-uvik54xom5] {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .address-comparison[b-uvik54xom5] {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .address-verification-actions[b-uvik54xom5] {
        flex-direction: column;
    }

    .btn-primary[b-uvik54xom5],
    .btn-secondary[b-uvik54xom5] {
        width: 100%;
        min-width: unset;
    }
}

/* /Components/Shared/AuthorizeNetModal.razor.rz.scp.css */
.authorizenet-modal-overlay[b-czub0h8tno] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-czub0h8tno 0.3s ease-out;
}

@keyframes fadeIn-b-czub0h8tno {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.authorizenet-modal-container[b-czub0h8tno] {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    animation: slideUp-b-czub0h8tno 0.3s ease-out;
}

@keyframes slideUp-b-czub0h8tno {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.authorizenet-modal-close[b-czub0h8tno] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.authorizenet-modal-close:hover[b-czub0h8tno] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.authorizenet-modal-close:active[b-czub0h8tno] {
    transform: scale(0.95);
}

.authorizenet-modal-close svg[b-czub0h8tno] {
    width: 18px;
    height: 18px;
}

.authorizenet-modal-content[b-czub0h8tno] {
    color: var(--text-primary);
}

.authorizenet-modal-content h2[b-czub0h8tno] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.authorizenet-modal-content p[b-czub0h8tno] {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.authorizenet-modal-content p:last-of-type[b-czub0h8tno] {
    margin-bottom: 20px;
}

.authorizenet-modal-content a[b-czub0h8tno] {
    color: #ffcb05;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.authorizenet-modal-content a:hover[b-czub0h8tno] {
    color: #ffd700;
}

.authorizenet-modal-content ul[b-czub0h8tno] {
    margin: 16px 0;
    padding-left: 24px;
    list-style-type: disc;
}

.authorizenet-modal-content li[b-czub0h8tno] {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.authorizenet-modal-content li:last-child[b-czub0h8tno] {
    margin-bottom: 0;
}

.AuthorizeNetSeal[b-czub0h8tno] {
    margin: 20px 0;
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    width: 100%;
}

.AuthorizeNetSeal > *[b-czub0h8tno] {
    margin: 0 auto;
    text-align: center;
}

.AuthorizeNetSeal a[b-czub0h8tno] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

.AuthorizeNetSeal img[b-czub0h8tno],
.AuthorizeNetSeal iframe[b-czub0h8tno] {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.seal-registration-text[b-czub0h8tno] {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin: 16px 0 24px 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Custom scrollbar */
.authorizenet-modal-container[b-czub0h8tno]::-webkit-scrollbar {
    width: 8px;
}

.authorizenet-modal-container[b-czub0h8tno]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.authorizenet-modal-container[b-czub0h8tno]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.authorizenet-modal-container[b-czub0h8tno]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .authorizenet-modal-container[b-czub0h8tno] {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
        border-radius: 16px;
    }

    .authorizenet-modal-close[b-czub0h8tno] {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .authorizenet-modal-content h2[b-czub0h8tno] {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .authorizenet-modal-content p[b-czub0h8tno],
    .authorizenet-modal-content li[b-czub0h8tno] {
        font-size: 15px;
    }

    .authorizenet-modal-content ul[b-czub0h8tno] {
        padding-left: 20px;
    }
}
/* /Components/Shared/BatteryHeroSkeleton.razor.rz.scp.css */
.battery-hero-skeleton[b-z115otoj76] {
    width: 100%;
    flex: 1 1 100%;
    padding: 20px 8px 10px;
    box-sizing: border-box;
}

.battery-hero-skeleton__wrapper[b-z115otoj76] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.battery-hero-skeleton__image[b-z115otoj76] {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    overflow: hidden;
}

.battery-hero-skeleton__content[b-z115otoj76] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 600px;
}

.battery-hero-skeleton__buy[b-z115otoj76] {
    margin-top: 2px;
    border-radius: 20px;
    overflow: hidden;
    max-width: 160px;
}

@media (min-width: 1024px) {
    .battery-hero-skeleton__wrapper[b-z115otoj76] {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .battery-hero-skeleton__image[b-z115otoj76] {
        flex: 1.2;
        max-width: none;
    }

    .battery-hero-skeleton__content[b-z115otoj76] {
        flex: 1;
        max-width: none;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .battery-hero-skeleton__wrapper[b-z115otoj76] {
        gap: 20px;
    }

    .battery-hero-skeleton__image[b-z115otoj76]  .skeleton-base {
        height: 220px !important;
    }
}

@media (min-width: 1024px) {
    .battery-hero-skeleton[b-z115otoj76] {
        padding: 24px 16px 16px;
    }

    .battery-hero-skeleton__wrapper[b-z115otoj76] {
        gap: 40px;
    }
}
/* /Components/Shared/BatteryOptionsSkeleton.razor.rz.scp.css */
.battery-options-skeleton[b-pm9bxxqy3m] {
    width: 100%;
}

.battery-options-skeleton__grid[b-pm9bxxqy3m] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.battery-options-skeleton__card[b-pm9bxxqy3m] {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.battery-options-skeleton__image[b-pm9bxxqy3m] {
    width: 42%;
    max-width: 140px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
}

.battery-options-skeleton__details[b-pm9bxxqy3m] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.battery-options-skeleton__details > *[b-pm9bxxqy3m] {
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .battery-options-skeleton__grid[b-pm9bxxqy3m] {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .battery-options-skeleton__card[b-pm9bxxqy3m] {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 14px;
        padding: 12px;
    }

    .battery-options-skeleton__image[b-pm9bxxqy3m] {
        width: 88px;
        max-width: 88px;
        flex-shrink: 0;
    }

    .battery-options-skeleton__details[b-pm9bxxqy3m] {
        flex: 1;
        align-items: flex-start;
        min-width: 0;
    }
}
/* /Components/Shared/BreadcrumbNav.razor.rz.scp.css */
.breadcrumb-nav[b-qizj164sxp] {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: left;
    width: 100%;
}

.breadcrumb-nav__list[b-qizj164sxp] {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}

.breadcrumb-nav__item[b-qizj164sxp] {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-nav__item + .breadcrumb-nav__item[b-qizj164sxp]::before {
    content: "/";
    margin: 0 0.5em;
    opacity: 0.55;
}

/* NavLink renders <a> without scoped attribute — use ::deep for all link rules so color beats UA/Bootstrap defaults */
.breadcrumb-nav[b-qizj164sxp] (a.breadcrumb-nav__link) {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.breadcrumb-nav[b-qizj164sxp] (a.breadcrumb-nav__link:hover) {
    text-decoration-thickness: 2px;
}

.breadcrumb-nav[b-qizj164sxp] (a.breadcrumb-nav__link:focus-visible) {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.breadcrumb-nav--light[b-qizj164sxp] (a.breadcrumb-nav__link),
.breadcrumb-nav--light[b-qizj164sxp] (a.breadcrumb-nav__link:visited),
.breadcrumb-nav--light[b-qizj164sxp] (a.breadcrumb-nav__link:active) {
    color: #1a1a1a;
    -webkit-text-fill-color: #1a1a1a;
    text-decoration-color: currentColor;
}

.breadcrumb-nav--light .breadcrumb-nav__current[b-qizj164sxp] {
    color: #111;
    font-weight: 600;
}

.breadcrumb-nav--dark[b-qizj164sxp] (a.breadcrumb-nav__link),
.breadcrumb-nav--dark[b-qizj164sxp] (a.breadcrumb-nav__link:visited),
.breadcrumb-nav--dark[b-qizj164sxp] (a.breadcrumb-nav__link:active) {
    color: rgba(255, 255, 255, 0.92);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
    text-decoration-color: currentColor;
}

.breadcrumb-nav--dark .breadcrumb-nav__current[b-qizj164sxp] {
    color: var(--text-primary);
    font-weight: 600;
}

.breadcrumb-nav--sep-white.breadcrumb-nav--dark .breadcrumb-nav__item + .breadcrumb-nav__item[b-qizj164sxp]::before {
    color: var(--text-primary);
    opacity: 0.9;
}
/* /Components/Shared/CompatibilityChecker.razor.rz.scp.css */
.compat-checker[b-ue3lf5rilo] {
    margin: 12px 0 16px;
}

.compat-checker__toggle[b-ue3lf5rilo] {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    text-decoration: none;
}

.compat-checker__toggle:hover[b-ue3lf5rilo] {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--compat-accent, #F58220);
}

.compat-checker__panel[b-ue3lf5rilo] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--compat-accent, #F58220);
    border-radius: 10px;
    padding: 14px 16px;
}

.compat-checker__panel-header[b-ue3lf5rilo] {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.compat-checker__panel-title[b-ue3lf5rilo] {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
}

.compat-checker__close[b-ue3lf5rilo] {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0 4px;
}

.compat-checker__close:hover[b-ue3lf5rilo] {
    color: var(--text-primary);
}

.compat-checker__loading[b-ue3lf5rilo],
.compat-checker__checking[b-ue3lf5rilo] {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
}

.compat-checker__dropdowns[b-ue3lf5rilo] {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .compat-checker__dropdowns[b-ue3lf5rilo] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.compat-checker__field label[b-ue3lf5rilo] {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.compat-checker__select[b-ue3lf5rilo] {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #222;
    font-size: 14px;
    padding: 8px 10px;
    width: 100%;
}

.compat-checker__select:disabled[b-ue3lf5rilo] {
    opacity: 0.55;
}

.compat-checker__result[b-ue3lf5rilo] {
    min-height: 0;
}

.compat-checker__status[b-ue3lf5rilo] {
    align-items: flex-start;
    border-radius: 8px;
    display: flex;
    font-size: 14px;
    gap: 10px;
    line-height: 1.45;
    padding: 10px 12px;
}

.compat-checker__status p[b-ue3lf5rilo] {
    margin: 0 0 6px;
}

.compat-checker__status p:last-child[b-ue3lf5rilo] {
    margin-bottom: 0;
}

.compat-checker__icon[b-ue3lf5rilo] {
    flex-shrink: 0;
    margin-top: 1px;
}

.compat-checker__status--compatible[b-ue3lf5rilo] {
    background: var(--success-bg);
    color: var(--success-text);
}

.compat-checker__status--compatible .compat-checker__icon[b-ue3lf5rilo] {
    color: var(--success-border);
}

.compat-checker__status--warning[b-ue3lf5rilo] {
    background: var(--warning-bg);
    color: var(--warning-text);
}

.compat-checker__status--warning .compat-checker__icon[b-ue3lf5rilo] {
    color: var(--warning-border);
}

.compat-checker__status--incompatible[b-ue3lf5rilo] {
    background: var(--error-bg);
    color: var(--error-text);
}

.compat-checker__status--incompatible .compat-checker__icon[b-ue3lf5rilo] {
    color: var(--error-border);
}

.compat-checker__link-row a[b-ue3lf5rilo] {
    color: #ffcb05;
    font-weight: 600;
    text-decoration: underline;
}

.compat-checker__link-row a:hover[b-ue3lf5rilo] {
    color: #ffd700;
}

.compat-checker--light .compat-checker__toggle[b-ue3lf5rilo] {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #222;
}

.compat-checker--light .compat-checker__toggle:hover[b-ue3lf5rilo] {
    background: #f8f8f8;
    border-color: var(--compat-accent, #F58220);
}

.compat-checker--light .compat-checker__panel[b-ue3lf5rilo] {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--compat-accent, #F58220);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.compat-checker--light .compat-checker__panel-title[b-ue3lf5rilo] {
    color: #222;
}

.compat-checker--light .compat-checker__close[b-ue3lf5rilo] {
    color: rgba(0, 0, 0, 0.45);
}

.compat-checker--light .compat-checker__close:hover[b-ue3lf5rilo] {
    color: #222;
}

.compat-checker--light .compat-checker__loading[b-ue3lf5rilo],
.compat-checker--light .compat-checker__checking[b-ue3lf5rilo] {
    color: rgba(0, 0, 0, 0.6);
}

.compat-checker--light .compat-checker__field label[b-ue3lf5rilo] {
    color: rgba(0, 0, 0, 0.65);
}

.compat-checker--light .compat-checker__status--compatible[b-ue3lf5rilo] {
    background: rgba(46, 125, 50, 0.1);
    color: #1b5e20;
}

.compat-checker--light .compat-checker__status--compatible .compat-checker__icon[b-ue3lf5rilo] {
    color: #2e7d32;
}

.compat-checker--light .compat-checker__status--warning[b-ue3lf5rilo] {
    background: rgba(255, 140, 0, 0.1);
    color: #e65100;
}

.compat-checker--light .compat-checker__status--warning .compat-checker__icon[b-ue3lf5rilo] {
    color: #ef6c00;
}

.compat-checker--light .compat-checker__status--incompatible[b-ue3lf5rilo] {
    background: rgba(198, 40, 40, 0.08);
    color: #b71c1c;
}

.compat-checker--light .compat-checker__status--incompatible .compat-checker__icon[b-ue3lf5rilo] {
    color: #c62828;
}

.compat-checker--light .compat-checker__link-row a[b-ue3lf5rilo] {
    color: var(--compat-accent, #F58220);
}

.compat-checker--light .compat-checker__link-row a:hover[b-ue3lf5rilo] {
    color: #222;
}
/* /Components/Shared/HomeVehicleFinder.razor.rz.scp.css */
.home-vehicle-finder[b-w84l4a2kpy] {
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--bg-surface) 78%, transparent);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 12px 36px var(--shadow-color);
    color: var(--text-primary);
}

.home-vehicle-finder__status[b-w84l4a2kpy] {
    margin: 10px 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.home-vehicle-finder__fields[b-w84l4a2kpy] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 640px) {
    .home-vehicle-finder__fields[b-w84l4a2kpy] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-vehicle-finder__field[b-w84l4a2kpy] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-vehicle-finder__field label[b-w84l4a2kpy] {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.home-vehicle-finder__field select[b-w84l4a2kpy] {
    appearance: none;
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface-elevated);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dddddd' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    color: var(--text-primary);
    padding: 8px 2.25rem 8px 10px;
    font-size: 0.95rem;
    color-scheme: dark;
    cursor: pointer;
}

.home-vehicle-finder__field select option[b-w84l4a2kpy] {
    background-color: var(--bg-surface);
    color: var(--text-primary);
}

.home-vehicle-finder__field select:disabled[b-w84l4a2kpy] {
    opacity: 0.55;
    cursor: not-allowed;
}

.home-vehicle-finder__field select:focus[b-w84l4a2kpy],
.home-vehicle-finder__field select:focus-visible[b-w84l4a2kpy] {
    outline: 2px solid #f58220;
    outline-offset: 2px;
}

/* Light theme — match site surfaces; keep popup readable on Windows/Chromium. */
html[data-theme="light"] .home-vehicle-finder[b-w84l4a2kpy] {
    background: color-mix(in srgb, var(--bg-surface) 88%, transparent);
}

html[data-theme="light"] .home-vehicle-finder__field select[b-w84l4a2kpy] {
    color-scheme: light;
    background-color: var(--input-bg);
    color: var(--input-text);
    border-color: rgba(0, 0, 0, 0.22);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444444' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

html[data-theme="light"] .home-vehicle-finder__field select option[b-w84l4a2kpy] {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Dark theme — explicit so native listboxes follow the site. */
html[data-theme="dark"] .home-vehicle-finder__field select[b-w84l4a2kpy] {
    color-scheme: dark;
    background-color: #1a1a1a;
    color: #f2f2f2;
    border-color: rgba(255, 255, 255, 0.28);
}

html[data-theme="dark"] .home-vehicle-finder__field select option[b-w84l4a2kpy] {
    background-color: #1a1a1a;
    color: #f2f2f2;
}
/* /Components/Shared/LanguageSwitcher.razor.rz.scp.css */
.lang-switcher[b-uo64hvqzzv] {
    display: inline-flex;
    align-items: center;
}

.lang-switcher__select[b-uo64hvqzzv] {
    appearance: none;
    border-radius: 6px;
    font: inherit;
    font-size: 0.85rem;
    line-height: 1.2;
    max-width: 12rem;
    padding: 0.35rem 1.6rem 0.35rem 0.55rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #f2f2f2;
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dddddd' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
}

.lang-switcher__select option[b-uo64hvqzzv] {
    color: #f2f2f2;
    background-color: #1a1a1a;
}

/* Do not wrap in :global() — it is left literal in the built CSS and never matches. */
html[data-theme="light"] .lang-switcher__select[b-uo64hvqzzv] {
    border-color: rgba(0, 0, 0, 0.22);
    color: #1a1a1a;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444444' d='M3 4.5L6 8l3-3.5'/%3E%3C/svg%3E");
}

html[data-theme="light"] .lang-switcher__select option[b-uo64hvqzzv] {
    color: #1a1a1a;
    background-color: #ffffff;
}

.lang-switcher__select:focus-visible[b-uo64hvqzzv] {
    outline: 2px solid var(--accent, #F58220);
    outline-offset: 2px;
}

.visually-hidden[b-uo64hvqzzv] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* /Components/Shared/LoadingSpinner.razor.rz.scp.css */
.loading-spinner-container[b-j46d6zwsnw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 300px;
}

.loading-spinner[b-j46d6zwsnw] {
    position: relative;
    width: 64px;
    height: 64px;
}

.spinner-ring[b-j46d6zwsnw] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color, #F58220);
    border-radius: 50%;
    animation: spin-b-j46d6zwsnw 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1)[b-j46d6zwsnw] {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2)[b-j46d6zwsnw] {
    animation-delay: -0.3s;
    border-top-color: var(--accent-color, #975CA5);
}

.spinner-ring:nth-child(3)[b-j46d6zwsnw] {
    animation-delay: -0.15s;
    border-top-color: var(--secondary-color, #4A90E2);
}

.spinner-ring:nth-child(4)[b-j46d6zwsnw] {
    animation-delay: 0s;
    border-top-color: var(--primary-color, #F58220);
}

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

.loading-message[b-j46d6zwsnw] {
    margin-top: 20px;
    color: var(--text-primary, #ffffff);
    font-family: var(--font-family, 'Poppins', sans-serif);
    font-size: 16px;
    text-align: center;
}

/* /Components/Shared/OtherBatterySizes.razor.rz.scp.css */
@keyframes other-battery-card-enter-b-20qsxncaml {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.other-battery-sizes[b-20qsxncaml] {
    box-sizing: border-box;
    margin: 20px auto 0;
    max-width: 920px;
    padding: 0 clamp(8px, 2vw, 16px);
    width: 100%;
}

@media (min-width: 1440px) {
    .other-battery-sizes[b-20qsxncaml] {
        max-width: min(1200px, calc(100% - 32px));
    }
}

@media (min-width: 1920px) {
    .other-battery-sizes[b-20qsxncaml] {
        max-width: min(1400px, calc(100% - 48px));
    }
}

.other-battery-sizes--panel[b-20qsxncaml] {
    background: linear-gradient(
        155deg,
        color-mix(in srgb, var(--bg-surface-elevated) 97%, transparent) 0%,
        color-mix(in srgb, var(--bg-surface) 99%, transparent) 55%,
        color-mix(in srgb, var(--bg-canvas) 96%, transparent) 100%
    );
    border: none;
    border-radius: 24px;
    box-shadow: none;
    color: var(--text-primary);
    overflow: hidden;
    padding: clamp(0.85rem, 2.2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
}

.other-battery-sizes__inner[b-20qsxncaml] {
    animation: other-battery-card-enter-b-20qsxncaml 0.55s ease both;
    text-align: left;
}

.other-battery-sizes__title[b-20qsxncaml] {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 14px;
    text-align: center;
}

.other-battery-sizes__lead[b-20qsxncaml] {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: -6px 0 16px;
    text-align: center;
}

.other-battery-sizes__grid[b-20qsxncaml] {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.other-battery-sizes__card[b-20qsxncaml] {
    animation: other-battery-card-enter-b-20qsxncaml 0.55s ease both;
    background: var(--bg-surface);
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    display: block;
    padding: 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.other-battery-sizes__card:hover[b-20qsxncaml] {
    background-color: color-mix(in srgb, var(--card-accent, var(--bg-surface-medium)) 28%, var(--bg-surface));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.other-battery-sizes__card:active[b-20qsxncaml] {
    transform: scale(0.98);
}

.other-battery-sizes__image[b-20qsxncaml] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding: 14px 8px;
    overflow: visible;
}

.other-battery-sizes__image img[b-20qsxncaml] {
    border-radius: 10px;
    max-width: min(42%, 130px);
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.other-battery-sizes__card:hover .other-battery-sizes__image img[b-20qsxncaml] {
    transform: scale(1.1);
}

.other-battery-sizes__details[b-20qsxncaml] {
    text-align: center;
}

.other-battery-sizes__name[b-20qsxncaml] {
    border-bottom: 2px solid var(--text-primary);
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
    padding-bottom: 1px;
    text-align: center;
    text-transform: uppercase;
}

.other-battery-sizes__desc[b-20qsxncaml] {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 8px;
    text-align: center;
}

.other-battery-sizes__price[b-20qsxncaml] {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .other-battery-sizes__grid[b-20qsxncaml] {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .other-battery-sizes__inner[b-20qsxncaml],
    .other-battery-sizes__card[b-20qsxncaml] {
        animation: none;
        transition: none;
    }
}
/* /Components/Shared/OverlaySelect.razor.rz.scp.css */
.overlay-select[b-6len72xc3a] {
    position: relative;
    width: 100%;
}

.overlay-select__trigger[b-6len72xc3a] {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 48px;
    width: 100%;
    padding: 0 1rem;
    font: inherit;
    font-size: 16px;
    text-align: start;
    cursor: pointer;
    border: 1px solid rgba(180, 180, 180, 0.7);
    border-radius: 20px;
    color: #f2f2f2;
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, rgba(74, 63, 152, 0.75), #1a1a1a);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.overlay-select__trigger:hover:not(:disabled)[b-6len72xc3a] {
    border-color: rgba(255, 255, 255, 0.85);
    background-color: #222222;
    background-image: linear-gradient(135deg, rgba(100, 100, 255, 0.55), #222222);
    transform: scale(1.01);
}

.overlay-select__trigger:focus-visible[b-6len72xc3a] {
    border-color: #3898EC;
    box-shadow: 0 0 8px rgba(56, 152, 236, 0.9);
    outline: none;
}

.overlay-select__trigger:disabled[b-6len72xc3a] {
    opacity: 0.55;
    cursor: not-allowed;
}

.overlay-select__value[b-6len72xc3a] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overlay-select__chevron[b-6len72xc3a] {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #dddddd transparent transparent transparent;
}

.overlay-select--open .overlay-select__chevron[b-6len72xc3a] {
    transform: rotate(180deg);
}

.overlay-select__list[b-6len72xc3a] {
    position: absolute;
    z-index: 40;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    max-height: min(280px, 45vh);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background-color: #1a1a1a;
    color: #f2f2f2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.overlay-select__option[b-6len72xc3a] {
    padding: 0.65rem 1rem;
    cursor: pointer;
    color: #f2f2f2;
    background-color: #1a1a1a;
}

.overlay-select__option:hover[b-6len72xc3a],
.overlay-select__option:focus-visible[b-6len72xc3a] {
    background-color: #2a2a3a;
}

.overlay-select__option.is-selected[b-6len72xc3a] {
    background-color: rgba(74, 63, 152, 0.55);
    font-weight: 600;
}

@media (max-width: 768px) {
    .overlay-select__trigger[b-6len72xc3a] {
        min-height: 44px;
    }
}

@media (max-height: 700px) {
    .overlay-select__trigger[b-6len72xc3a] {
        min-height: 40px;
        font-size: 15px;
    }

    .overlay-select__list[b-6len72xc3a] {
        max-height: min(220px, 40vh);
    }
}
/* /Components/Shared/PaymentLoadingOverlay.razor.rz.scp.css */
.payment-loading-overlay[b-mgwqgmbtk9] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: color-mix(in srgb, var(--bg-canvas) 75%, transparent) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(4px) !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    transform: none !important;
    isolation: isolate !important; /* Crucial for fixed positioning with parent transforms */
}

.payment-loading-content[b-mgwqgmbtk9] {
    background-color: var(--bg-surface-elevated);
    padding: 40px;
    border-radius: var(--border-radius-large, 20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.payment-loading-overlay .loading-spinner-container[b-mgwqgmbtk9] {
    padding: 20px;
    min-height: auto;
}

.payment-loading-overlay .loading-message[b-mgwqgmbtk9] {
    color: var(--text-primary, #ffffff);
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

/* /Components/Shared/SelectYourVehicleFormSkeleton.razor.rz.scp.css */
.vehicle-form-skeleton[b-rev7kbkhl1] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.vehicle-form-skeleton__banner[b-rev7kbkhl1] {
    display: flex;
    justify-content: center;
    max-width: min(240px, 40vw);
    margin: 0 auto;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
}

.vehicle-form-skeleton__intro[b-rev7kbkhl1] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.vehicle-form-skeleton__search[b-rev7kbkhl1] {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.vehicle-form-skeleton__fields[b-rev7kbkhl1] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.vehicle-form-skeleton__field[b-rev7kbkhl1] {
    border-radius: 12px;
    overflow: hidden;
}

.vehicle-form-skeleton__cta[b-rev7kbkhl1] {
    display: flex;
    justify-content: center;
    margin-top: 2px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .vehicle-form-skeleton__intro[b-rev7kbkhl1] {
        text-align: left;
    }

    .vehicle-form-skeleton__banner[b-rev7kbkhl1] {
        max-width: min(200px, 50vw);
    }
}
/* /Components/Shared/ShippingReturnPolicyModal.razor.rz.scp.css */
.policy-modal-overlay[b-gl74r8fhn7] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-gl74r8fhn7 0.3s ease-out;
}

@keyframes fadeIn-b-gl74r8fhn7 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.policy-modal-container[b-gl74r8fhn7] {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 8px 32px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    animation: slideUp-b-gl74r8fhn7 0.3s ease-out;
}

@keyframes slideUp-b-gl74r8fhn7 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.policy-modal-close[b-gl74r8fhn7] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.policy-modal-close:hover[b-gl74r8fhn7] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.policy-modal-close:active[b-gl74r8fhn7] {
    transform: scale(0.95);
}

.policy-modal-close svg[b-gl74r8fhn7] {
    width: 18px;
    height: 18px;
}

.policy-modal-content[b-gl74r8fhn7] {
    color: var(--text-primary);
}

.policy-modal-content h2[b-gl74r8fhn7] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.policy-section[b-gl74r8fhn7] {
    margin-bottom: 28px;
}

.policy-section:last-child[b-gl74r8fhn7] {
    margin-bottom: 0;
}

.policy-section h3[b-gl74r8fhn7] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.policy-section p[b-gl74r8fhn7] {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section p:last-child[b-gl74r8fhn7] {
    margin-bottom: 0;
}

.policy-section a[b-gl74r8fhn7] {
    color: #ffcb05;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover[b-gl74r8fhn7] {
    color: #ffd700;
}

/* Custom scrollbar */
.policy-modal-container[b-gl74r8fhn7]::-webkit-scrollbar {
    width: 8px;
}

.policy-modal-container[b-gl74r8fhn7]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.policy-modal-container[b-gl74r8fhn7]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.policy-modal-container[b-gl74r8fhn7]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .policy-modal-container[b-gl74r8fhn7] {
        width: 95%;
        padding: 20px;
        max-height: 90vh;
        border-radius: 16px;
    }

    .policy-modal-close[b-gl74r8fhn7] {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .policy-modal-content h2[b-gl74r8fhn7] {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .policy-section h3[b-gl74r8fhn7] {
        font-size: 18px;
    }

    .policy-section p[b-gl74r8fhn7] {
        font-size: 15px;
    }
}
/* /Components/Shared/SiteBreadcrumbBar.razor.rz.scp.css */
/* Matches navbar inner width/padding; clears absolute overlay nav */
.site-breadcrumb-bar[b-cnlmk2j2dm] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: calc(68px + env(safe-area-inset-top, 0)) 16px 4px;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
}

.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav) {
    margin-bottom: 0;
}

/*
 * NavLink renders an unscoped <a>. Scoped rules from BreadcrumbNav.razor.css can lose
 * to global/Webflow styles or default link styling. Pin colors here at the wrapper.
 */
.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--dark a.breadcrumb-nav__link),
.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--dark a.breadcrumb-nav__link:visited),
.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--dark a.breadcrumb-nav__link:active) {
    color: rgba(255, 255, 255, 0.92) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
    text-decoration-color: currentColor !important;
}

.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--dark a.breadcrumb-nav__link:hover) {
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary);
    text-decoration-color: currentColor !important;
}

.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--light a.breadcrumb-nav__link),
.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--light a.breadcrumb-nav__link:visited),
.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--light a.breadcrumb-nav__link:active) {
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a;
    text-decoration-color: currentColor !important;
}

.site-breadcrumb-bar[b-cnlmk2j2dm] (.breadcrumb-nav--light a.breadcrumb-nav__link:hover) {
    color: #111 !important;
    -webkit-text-fill-color: #111;
    text-decoration-color: currentColor !important;
}
/* /Components/Shared/SkeletonBase.razor.rz.scp.css */
.skeleton-base[b-y9a6omz43s] {
    --skeleton-delay: 0s;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.07) 50%,
        rgba(255, 255, 255, 0.04) 100%
    );
    background-size: 200% 100%;
    animation: shimmer-b-y9a6omz43s 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: var(--skeleton-delay);
    display: block;
    position: relative;
    overflow: hidden;
    will-change: background-position;
    border-radius: inherit !important;
}

.skeleton-base[b-y9a6omz43s]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer-b-y9a6omz43s 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: var(--skeleton-delay);
    will-change: background-position;
    border-radius: inherit;
}

.skeleton-base.pulse[b-y9a6omz43s] {
    animation: pulse-b-y9a6omz43s 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: var(--skeleton-delay);
}

.skeleton-base.pulse[b-y9a6omz43s]::after {
    display: none;
}

@keyframes shimmer-b-y9a6omz43s {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse-b-y9a6omz43s {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

.skeleton-reveal[b-y9a6omz43s] {
    animation: skeleton-reveal-in-b-y9a6omz43s 0.4s ease forwards;
    opacity: 0;
}

.skeleton-reveal[data-reveal-delay="1"][b-y9a6omz43s] { animation-delay: 0.04s; }
.skeleton-reveal[data-reveal-delay="2"][b-y9a6omz43s] { animation-delay: 0.08s; }
.skeleton-reveal[data-reveal-delay="3"][b-y9a6omz43s] { animation-delay: 0.12s; }
.skeleton-reveal[data-reveal-delay="4"][b-y9a6omz43s] { animation-delay: 0.16s; }
.skeleton-reveal[data-reveal-delay="5"][b-y9a6omz43s] { animation-delay: 0.2s; }
.skeleton-reveal[data-reveal-delay="6"][b-y9a6omz43s] { animation-delay: 0.24s; }
.skeleton-reveal[data-reveal-delay="7"][b-y9a6omz43s] { animation-delay: 0.28s; }
.skeleton-reveal[data-reveal-delay="8"][b-y9a6omz43s] { animation-delay: 0.32s; }

@keyframes skeleton-reveal-in-b-y9a6omz43s {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-reveal[b-y9a6omz43s] {
    animation: content-reveal-in-b-y9a6omz43s 0.28s ease forwards;
}

@keyframes content-reveal-in-b-y9a6omz43s {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-base[b-y9a6omz43s],
    .skeleton-base[b-y9a6omz43s]::after {
        animation: none;
        background: rgba(255, 255, 255, 0.06);
        opacity: 1;
    }

    .skeleton-base.pulse[b-y9a6omz43s] {
        animation: none;
        opacity: 1;
    }

    .skeleton-reveal[b-y9a6omz43s],
    .content-reveal[b-y9a6omz43s] {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
/* /Components/Shared/SmsOrderUpdatesOptIn.razor.rz.scp.css */
.sms-opt-in[b-fii9bbtpmp] {
    margin: 0.65rem 0 0;
}

.sms-opt-in--wallet[b-fii9bbtpmp] {
    margin: 0 0 0.75rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sms-opt-in__label[b-fii9bbtpmp] {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
}

.sms-opt-in__check[b-fii9bbtpmp] {
    margin: 0.2rem 0 0;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    accent-color: #ffcb05;
    cursor: pointer;
}

.sms-opt-in__text[b-fii9bbtpmp] {
    flex: 1;
    min-width: 0;
}

/* Use div (not p) — site-legacy.css sets p { color: black } globally */
.sms-opt-in__disclosure[b-fii9bbtpmp] {
    margin: 0.25rem 0 0 1.55rem;
    font-size: 0.65rem;
    line-height: 1.35;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.68) !important;
}

html[data-theme="light"] .sms-opt-in--wallet[b-fii9bbtpmp] {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .sms-opt-in__label[b-fii9bbtpmp] {
    color: #111;
}

html[data-theme="light"] .sms-opt-in__disclosure[b-fii9bbtpmp] {
    color: #555 !important;
}

html[dir="rtl"] .sms-opt-in__disclosure[b-fii9bbtpmp] {
    margin-left: 0;
    margin-right: 1.55rem;
}
/* /Components/Shared/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-1bfuujpbjq] {
    align-items: center;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--nav-text);
    cursor: pointer;
    display: inline-flex;
    gap: 6px;
    padding: 6px 10px;
    font-family: inherit;
    font-size: 0.8rem;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover[b-1bfuujpbjq] {
    background-color: color-mix(in srgb, var(--nav-text) 8%, transparent);
    border-color: color-mix(in srgb, var(--nav-text) 25%, transparent);
}

.theme-toggle__icon[b-1bfuujpbjq] {
    flex-shrink: 0;
}

.theme-toggle__label[b-1bfuujpbjq] {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .theme-toggle__label[b-1bfuujpbjq] {
        display: none;
    }

    .theme-toggle[b-1bfuujpbjq] {
        padding: 8px;
    }
}

.sidebar .theme-toggle[b-1bfuujpbjq] {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.sidebar .theme-toggle:hover[b-1bfuujpbjq] {
    background-color: color-mix(in srgb, var(--text-primary) 8%, transparent);
    border-color: color-mix(in srgb, var(--text-primary) 25%, transparent);
}

.sidebar .theme-toggle__label[b-1bfuujpbjq] {
    display: inline;
}
/* /Components/Shared/Toast.razor.rz.scp.css */
.toast[b-2rfedhk1r8] {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    border-radius: var(--border-radius, 8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    animation: slideIn-b-2rfedhk1r8 0.3s ease-out;
    font-family: var(--font-family, 'Poppins', sans-serif);
}

@keyframes slideIn-b-2rfedhk1r8 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-content[b-2rfedhk1r8] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.toast-icon[b-2rfedhk1r8] {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.toast-message[b-2rfedhk1r8] {
    flex: 1;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.toast-close[b-2rfedhk1r8] {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.toast-close:hover[b-2rfedhk1r8] {
    opacity: 1;
}

.toast-close:focus[b-2rfedhk1r8] {
    outline: 2px solid var(--text-primary, #ffffff);
    outline-offset: 2px;
}

/* Toast Type Styles */
.toast-success[b-2rfedhk1r8] {
    background-color: #10b981;
    border-left: 4px solid #059669;
}

.toast-error[b-2rfedhk1r8] {
    background-color: #ef4444;
    border-left: 4px solid #dc2626;
}

.toast-warning[b-2rfedhk1r8] {
    background-color: #f59e0b;
    border-left: 4px solid #d97706;
}

.toast-info[b-2rfedhk1r8] {
    background-color: var(--secondary-color, #4A90E2);
    border-left: 4px solid #2563eb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast[b-2rfedhk1r8] {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

