/* /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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Smooth, elegant transition for background color changes */
    /* Using a longer duration with a smoother easing curve for more fluid transitions */
    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;
    /* Ensure smooth rendering with hardware acceleration */
    will-change: background-color, background-image, background;
    /* Force GPU acceleration for smoother transitions */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

main[b-sddlwqeshd] {
    flex: 1;
    padding-bottom: 100px;
    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: #fff;
    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;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-y99xix1h6e] {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    background: transparent !important;
    box-shadow: none;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    transform: translateY(0);
}

/* 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 */
}

.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] {
    opacity: 1;
    filter: none;
    transition: opacity .3s ease, filter .3s ease;
}

/* Original scroll behavior: fade logo + menu when scrolled */
.navbar.scrolled .navbar-logo[b-y99xix1h6e],
.navbar.scrolled .navbar-logo .logo[b-y99xix1h6e],
.navbar.scrolled .navbar-menu[b-y99xix1h6e],
.navbar.scrolled .navbar-menu > *[b-y99xix1h6e],
.navbar.scrolled .navbar-menu a[b-y99xix1h6e],
.navbar.scrolled .menu-button[b-y99xix1h6e],
.navbar.scrolled .menu-button .menu-icon[b-y99xix1h6e] {
    opacity: .5;
    filter: saturate(.9);
}

/* Hide navbar when scrolling down */
.navbar.hidden[b-y99xix1h6e] {
    transform: translateY(-100%);
}

/* Show navbar when scrolling up */
.navbar.visible[b-y99xix1h6e] {
    transform: translateY(0);
}

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

/* 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: #000000;
    transition: color 0.3s ease;
}

.navbar-link[b-y99xix1h6e] {
    text-decoration: none;
    color: white;
    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: rgba(255, 255, 255, 0.1);
    }

    .navbar-link:focus-visible[b-y99xix1h6e] {
        outline: 2px solid #fff;
        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 rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-search-input[b-y99xix1h6e]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.navbar-search-input:focus[b-y99xix1h6e] {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

/* 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: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    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: white;
    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: rgba(255, 255, 255, 0.7);
    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: rgba(255, 255, 255, 0.7);
    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: white;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

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

.navbar-search-button:focus-visible[b-y99xix1h6e] {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 4px;
}

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

/* 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 rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar-search-input-mobile[b-y99xix1h6e]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.navbar-search-input-mobile:focus[b-y99xix1h6e] {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

.navbar-search-close[b-y99xix1h6e] {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: white;
    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: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    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-search-button[b-y99xix1h6e] {
        display: flex; /* Show magnifying glass on tablet */
        order: 2; /* Place after logo, before menu */
        margin-left: 12px;
        margin-right: 0;
    }
    
    .navbar-menu[b-y99xix1h6e] {
        order: 3; /* Place menu after search button */
    }
}

/* 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 */
}

.menu-button:focus-visible[b-y99xix1h6e] {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 4px;
}

.menu-icon[b-y99xix1h6e] {
    width: 30px;
    height: 3px;
    background-color: white;
    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: 250px;
    height: 100vh;
    max-height: 100vh; /* Prevent overflow */
    background-color: black;
    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: rgba(0, 0, 0, 0.5); /* Dim background */
    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: 20px;
    margin-top: 20px;
}

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

    /* 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: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
/* /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: 80px;
    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: #fff;
    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: #e0e0e0;
    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: #fff;
    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: #fff;
    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: white;
    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);
}

/* 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 60px 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: black;
    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;
}

/* /Components/Pages/BackToTop.razor.rz.scp.css */
/*Back to Top Button*/
.topbutton[b-4d5bg142l8] {
    width: 140px;
    height: 56px;
    overflow: hidden;
    border: none;
    color: #fff;
    background: none;
    position: relative;
    padding-bottom: 2em;
    cursor: pointer;
}

    .topbutton > div[b-4d5bg142l8],
    .topbutton > svg[b-4d5bg142l8] {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
    }

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

    /* Icon style and hover */
    .topbutton svg[b-4d5bg142l8] {
        width: 20px;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-50deg);
        transition: 0.2s ease-out;
    }

    .topbutton:hover svg[b-4d5bg142l8] {
        transform: translateY(-50%) 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: white;
    font-weight: 500;
    font-size: 24px;
    position: relative;
    top: 80px;
    border-radius: 20px;
    outline: 4px solid #2a2a2a;
    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: #121212;
    background: linear-gradient( 135deg, #121212 25%, #1a1a1a 25%, #1a1a1a 50%, #121212 50%, #121212 75%, #1a1a1a 75%, #1a1a1a );
    background-size: 40px 40px;
    animation: move-b-5q75nvtlea 4s linear infinite;
}

p[b-5q75nvtlea] {
    color: white;
}

a[b-5q75nvtlea] {
    color: white;
}

@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: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    text-align: center;
    transition: background-color 0.3s ease, color 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: #333; /* Replace with specific model color */
        color: white;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    }

.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: black;
    color: white;
    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;
    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: white;
    margin-bottom: 8px;
}

.select-button[b-5q75nvtlea] {
    background-color: #292929;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    position: static;
    margin: 8px auto 0;
    display: block;
    align-self: flex-start;

}

    .select-button:hover[b-5q75nvtlea] {
        background-color: var(--hover-color);
    }

@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;
    }
}
/* /Components/Pages/Battery.razor.rz.scp.css */
.battery-hero-section[b-wu3bz0fz1o] {
    background-color: #000000f0;
    border-radius: 25px;
    padding: 10px 15px 50px;
    position: relative;
    top: 80px;
    box-shadow: 0 2px 5px 6px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    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;
}

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: #fff;
}

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

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

/* Desktop: Improve spacing and layout */
@media (min-width: 1024px) {
    .battery-hero-section[b-wu3bz0fz1o] {
        padding: 30px 40px 60px;
        max-width: 1400px;
    }
}

/* Ultrawide displays: Even more space */
@media (min-width: 1440px) {
    .battery-hero-section[b-wu3bz0fz1o] {
        padding: 40px 60px 80px;
        max-width: 1600px;
    }
}
    .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; /* Give image more space */
        max-width: 700px; /* Larger image on desktop */
        min-width: 500px; /* Ensure minimum image size */
        align-self: flex-start; /* Ensure image aligns to top */
    }
}

/* Ultrawide displays: Even larger image and better spacing */
@media (min-width: 1440px) {
    .battery-hero-wrapper[b-wu3bz0fz1o] {
        gap: 60px; /* More gap on ultrawide */
        min-height: 700px;
    }
    
    .battery-hero-image-split[b-wu3bz0fz1o] {
        max-width: 850px; /* Much larger image on ultrawide */
        min-width: 600px;
    }
}

.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 */
    }
    
    .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: flex-start;
    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 */
}

/* Desktop: Better text wrapping and spacing */
@media (min-width: 1024px) {
    .battery-hero-split[b-wu3bz0fz1o] {
        flex: 1;
        padding-right: 20px;
        max-width: 600px; /* Limit text width for better readability */
    }
}

/* Ultrawide: Even better text layout */
@media (min-width: 1440px) {
    .battery-hero-split[b-wu3bz0fz1o] {
        max-width: 700px;
        padding-right: 30px;
    }
}

.heading-7[b-wu3bz0fz1o] {
    margin:0px, 10px, 0px, 10px;
    display: block;
}


.heading-6[b-wu3bz0fz1o], .italic-text[b-wu3bz0fz1o] {
    color: #fff;
    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: 1.3;
        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 */
}

/* 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;
    }
}

/* Skeleton wrapper base styles */
.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: 10px;
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .battery-hero-wrapper[b-wu3bz0fz1o] {
        padding: 0;
        min-height: auto;
    }
    
    .battery-hero-image-split[b-wu3bz0fz1o] {
        padding: 0 10px;
    }
    
    .battery-hero-split[b-wu3bz0fz1o] {
        padding: 0 10px;
        width: 100%;
    }
    
    /* 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: 8px;
        margin: 0 5px;
        max-width: calc(100% - 10px);
    }
    
    .battery-hero-split[b-wu3bz0fz1o] {
        padding: 0 5px;
    }
    
    /* 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: rgba(255, 255, 255, 0.3);
}

.or-divider-text[b-wu3bz0fz1o] {
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.7);
    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: 400px;
    }
    
    .or-divider-text[b-wu3bz0fz1o] {
        font-size: 15px;
        padding: 0 20px;
    }
}

/* 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: 16px;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Amazon Buy with Prime button styling */
.buy-with-prime-container amazon-purchase-button[b-wu3bz0fz1o] {
    display: block !important;
    width: 100%;
    min-width: 200px;
    max-width: 100%;
    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%;
}

/* Desktop: Ensure Buy with Prime button has proper width */
@media (min-width: 1024px) {
    .buy-with-prime-container[b-wu3bz0fz1o] {
        min-width: 250px;
        max-width: 400px;
    }
    
    .buy-with-prime-container amazon-purchase-button[b-wu3bz0fz1o] {
        min-width: 250px;
        max-width: 400px;
    }
}

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

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

.breadcrumb-link[b-qomsnhwoh2] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover[b-qomsnhwoh2] {
    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: #fff;
}

.comparison-intro[b-qomsnhwoh2] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    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: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.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: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-table td[b-qomsnhwoh2] {
    padding: 15px;
    color: rgba(255, 255, 255, 0.9);
    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: #fff;
}

.difference-item p[b-qomsnhwoh2] {
    color: rgba(255, 255, 255, 0.9);
    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: rgba(255, 255, 255, 0.9);
}

.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: #fff;
    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/BatterySafety.razor.rz.scp.css */
.safety-container[b-9oigvqeeee] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

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

.breadcrumb-link[b-9oigvqeeee] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover[b-9oigvqeeee] {
    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: #fff;
}

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

.safety-content[b-9oigvqeeee] {
    line-height: 1.8;
    color: #fff;
}

.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: #fff !important;
}

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

.safety-section h2[b-9oigvqeeee] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
    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: #fff;
}

.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: #fff;
}

.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: #fff;
}

.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: #fff;
}

.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: #fff;
}

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

.breadcrumb-link[b-w406mpnvtk] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover[b-w406mpnvtk] {
    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: #fff;
}

.size-guide-intro[b-w406mpnvtk] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    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: #fff;
}

.understanding-section p[b-w406mpnvtk],
.understanding-section li[b-w406mpnvtk],
.understanding-section strong[b-w406mpnvtk] {
    color: #fff !important;
}

.white-text[b-w406mpnvtk] {
    color: #fff !important;
}

.size-guide-section h2[b-w406mpnvtk] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
    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: #fff;
    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: #fff;
}

.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: #fff;
    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: rgba(255, 255, 255, 0.7);
    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 */
/* 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;
}

.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: #ffff;
    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: #ffffff;
    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: #e0e0e0;
    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: #333;
    color: #fff;
    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: #fff;
    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: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.select-shipping-label[b-gepmdxf3xe] {
    color: white;
    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: white;
    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: #333;
    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: white;
    text-align: left;
    border-bottom: 1px dashed #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.payment-price[b-gepmdxf3xe] {
    color: white;
    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: white;
    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: white; 
    }

.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: #222;
    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: #333; /* 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: #333;
    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: #ffffff;
    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: #dc3545;
    color: #ffffff;
    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: 15px 0 20px 0;
}

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

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

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

.authorization-text strong[b-gepmdxf3xe] {
    color: white;
    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-container[b-ysbr1aucmp] {
    max-width: 1400px;
    margin: 80px auto 40px auto;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-height: calc(100vh - 120px);
}

.checkout-header[b-ysbr1aucmp] {
    margin-bottom: 0;
    margin-top: -40px;
    padding-top: 0;
    text-align: center;
}

.checkout-header h1[b-ysbr1aucmp] {
    color: white;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.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: white;
    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;
}

@media (max-width: 1023px) {
    .checkout-left-column[b-ysbr1aucmp] {
        gap: 25px;
    }
    
    .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;
}

/* Quick Checkout button stack */
.quick-checkout-buttons[b-ysbr1aucmp] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* 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: center;
    justify-content: center;
    text-align: center;
}

.gpay-section #googlePayButtonContainer[b-ysbr1aucmp] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 325px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .gpay-section[b-ysbr1aucmp] {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .gpay-section #googlePayButtonContainer[b-ysbr1aucmp] {
        width: 100%;
        max-width: 325px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gpay-section #googlePayButtonContainer button[b-ysbr1aucmp] {
        width: 100%;
        max-width: 325px;
        margin: 0 auto;
    }
}

.order-details-content h4[b-ysbr1aucmp] {
    color: white;
    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: white;
    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: white;
    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: #333;
    color: #fff;
    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: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover[b-ysbr1aucmp] {
    background-color: #333;
    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: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.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: white;
    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: white;
    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: white;
    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: white;
    color: #333;
    margin-bottom: 20px;
}

.email-input:focus[b-ysbr1aucmp],
.input-field:focus[b-ysbr1aucmp],
.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:active[b-ysbr1aucmp] {
    transform: scale(0.99);
}

.email-input:focus[b-ysbr1aucmp],
.input-field:focus[b-ysbr1aucmp],
.select-field:focus[b-ysbr1aucmp] {
    border: 2px solid var(--battery-color, #ffcb05) !important;
    box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.2) !important;
    outline: none;
}

.email-input:focus[b-ysbr1aucmp],
.input-field:focus[b-ysbr1aucmp],
.select-field:focus[b-ysbr1aucmp] {
    border: 2px solid var(--battery-color, #ffcb05);
    box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.2);
    outline: none;
}

.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: white;
    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: #ffffff;
    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: #dc3545;
    color: #ffffff;
    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: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
    padding: 0 10px;
}

.authorization-text strong[b-ysbr1aucmp] {
    color: white;
    font-weight: 600;
}

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

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

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

.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-container[b-ysbr1aucmp] {
        padding: 20px 15px;
        border-radius: 10px;
        margin: 60px auto 20px auto;
    }

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

    .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: #fff;
}

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

.breadcrumb-link[b-l1tn3cwiwr] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover[b-l1tn3cwiwr] {
    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: #fff;
}

.problems-intro[b-l1tn3cwiwr] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.problems-content[b-l1tn3cwiwr] {
    line-height: 1.8;
    color: #fff;
}

.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: #fff !important;
}

.problem-section[b-l1tn3cwiwr] {
    margin-bottom: 50px;
}

.problem-section h2[b-l1tn3cwiwr] {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
    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: #fff;
    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: #fff;
}

.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: #fff;
    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;
    top: 80px;
    justify-content: center;
}


/* /Components/Pages/ContactUsForm.razor.rz.scp.css */
.form[b-p4dncbsn30] {
    display: block;
    justify-self: center;
    background: #333;
    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: 80px;
    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);
    }

    .contact-heading[b-p4dncbsn30] {
        color: white;
        text-align: center;
        padding: 10px;
        margin-bottom: 10px;
        max-width: 700px;
    }

.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: #ffffff;
    color: #000000;
    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: white;
    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: #ffffff; /* 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: white;
    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: #8a6d3b !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: #fff;
}

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

.breadcrumb-link[b-nfwunzudix] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover[b-nfwunzudix] {
    color: #F58220;
}

.breadcrumb-link.active[b-nfwunzudix] {
    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: #fff;
}

.documents-intro[b-nfwunzudix] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    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: #fff;
    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: #fff;
}

.document-card p[b-nfwunzudix] {
    color: rgba(255, 255, 255, 0.9);
    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;
}

/* 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: #d4d4d4;
    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, #0b0b0b 0%, #1a1a1a 100%); /* base gradient behind the glass */
    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 */
.bgwraps[b-vnn1vi9fyk] {
    padding-top: 8px;
    align-items: flex-start;
    width: 100%;
}

    .bgwraps img[b-vnn1vi9fyk] {
        height: 100%;
        opacity: .25;
        display: block;
    }

/* Steps layout (mobile stacked) */
.steps[b-vnn1vi9fyk] {
    list-style: none;
    margin: 18px 8px 8px;
    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: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    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: #c7c7c7;
    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: #1c1c1c;
    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: #ddd;
    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: #f9f9f9;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-header h2[b-z96vndyo36] {
    text-align: center;
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
}

.faq-header p[b-z96vndyo36] {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* FAQ Item Styles */
.faq-item[b-z96vndyo36] {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-question[b-z96vndyo36] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 0;
    min-height: 44px; /* Minimum touch target */
    -webkit-tap-highlight-color: transparent;
}

    .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: #555;
    padding-left: 30px;
}

.faq-item.open .faq-answer[b-z96vndyo36] {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.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: black;
}

.faq-section[b-l0ehcyk83v] {
    position: relative;
    top: 80px;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-container[b-l0ehcyk83v] {
}

.faq-header h2[b-l0ehcyk83v] {
    text-align: center;
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
}


.faq-header p[b-l0ehcyk83v] {
    text-align: center;
    font-size: 16px;
    color: black;
    margin-bottom: 30px;
}

/* FAQ Item Styles */
.faq-item[b-l0ehcyk83v] {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-question[b-l0ehcyk83v] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: black;
    transition: color 0.3s ease;
}

    .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: black;
    padding-left: 30px;
}
.faq-answer p[b-l0ehcyk83v] {
    color: black;
}

.faq-item.open .faq-answer[b-l0ehcyk83v] {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

.faq-item.open .faq-icon[b-l0ehcyk83v] {
    transform: rotate(90deg); /* Rotate the icon */
}
/* /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: rgba(43, 43, 43, 0.75); /* Semi-transparent background */
    backdrop-filter: blur(5px);
    border-radius: 25px 25px 0 0; /* Rounded top corners */
    padding: 20px; /* Inner padding */
    width: 100%;
    max-width: 1200px; /* Center-align and limit width */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.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 */
}

.text-block-9[b-meifkw7ajr] {
    color: #7a7a7a; /* Muted text color */
    font-size: 12px; /* Small text */
}


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

/* Hide footer when printing */
@media print {
    .battery-footer[b-meifkw7ajr],
    .footer-div[b-meifkw7ajr],
    .footer-list[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: #ffffff;
    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 */
.payment-error-message[b-wseccaf40x] {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: var(--border-radius, 8px);
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-size: 14px;
    text-align: center;
    max-width: 325px;
    margin-left: auto;
    margin-right: auto;
}

#googlePayButtonContainer.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: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumb-current[b-wduxgweoo2] {
    color: #ffffff;
    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: #ffffff;
    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;
}

.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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
}

.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: #ffffff;
    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;
}

/* /Components/Pages/HowToReplace.razor.rz.scp.css */
.how-to-container[b-gwaudv6yoc] {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

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

.breadcrumb-link[b-gwaudv6yoc] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover[b-gwaudv6yoc] {
    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: #fff;
}

.how-to-intro[b-gwaudv6yoc] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    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: #fff;
    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: rgba(255, 255, 255, 0.9);
}

.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: #fff;
}

.step-content[b-gwaudv6yoc] {
    flex: 1;
}

.step-content h3[b-gwaudv6yoc] {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.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] {
    text-align: center;
    margin-top: 30px;
}

.cta-button[b-gwaudv6yoc] {
    display: inline-block;
    padding: 15px 40px;
    background: #F58220;
    color: #fff;
    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-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: #fff !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: #000;
}

/* 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;
}

/* 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;
    }
}

@keyframes glassPulse-b-c3ntyouqh6 {
    0%, 100% {
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2),
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 4px 16px rgba(245, 130, 32, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
    50% {
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2),
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 6px 20px rgba(245, 130, 32, 0.4),
            0 0 15px rgba(245, 130, 32, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }
}

@keyframes glassPulseGhost-b-c3ntyouqh6 {
    0%, 100% {
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1),
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }
    50% {
        box-shadow: 
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1),
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(255, 255, 255, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
}

.hero-video__overlay[b-c3ntyouqh6] {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    pointer-events: none;
    z-index: 2;
}

.hero-video__buttons[b-c3ntyouqh6] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 3;
}

a.hero-button[b-c3ntyouqh6],
.hero-button[b-c3ntyouqh6] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px 36px !important;
    min-height: 52px !important;
    min-width: 160px !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    background: linear-gradient(135deg, 
        rgba(245, 130, 32, 0.35) 0%, 
        rgba(245, 130, 32, 0.25) 50%,
        rgba(245, 130, 32, 0.35) 100%) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(245, 130, 32, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
    animation: glassPulse-b-c3ntyouqh6 3s ease-in-out infinite !important;
    pointer-events: auto !important;
}

.hero-button[b-c3ntyouqh6]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-button[b-c3ntyouqh6]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

a.hero-button:hover[b-c3ntyouqh6]::before,
.hero-button:hover[b-c3ntyouqh6]::before {
    left: 100% !important;
    transform: none !important;
}

.hero-button:hover[b-c3ntyouqh6]::after {
    opacity: 1;
}

a.hero-button.hero-button--ghost[b-c3ntyouqh6],
.hero-button--ghost[b-c3ntyouqh6] {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.15) 100%) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset !important;
    animation: glassPulseGhost-b-c3ntyouqh6 3s ease-in-out infinite !important;
    --bg: transparent !important;
    --fg: #fff !important;
}

.hero-button--ghost[b-c3ntyouqh6]::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%);
}

a.hero-button:where(:hover,:focus-visible)[b-c3ntyouqh6],
.hero-button:where(:hover,:focus-visible)[b-c3ntyouqh6] {
    transform: translateY(-3px) scale(1.02) !important;
    background: linear-gradient(135deg, 
        rgba(245, 130, 32, 0.5) 0%, 
        rgba(245, 130, 32, 0.35) 50%,
        rgba(245, 130, 32, 0.45) 100%) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(245, 130, 32, 0.4),
        0 0 20px rgba(245, 130, 32, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
    backdrop-filter: blur(35px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(35px) saturate(200%) !important;
    animation: none !important;
}

a.hero-button.hero-button--ghost:where(:hover,:focus-visible)[b-c3ntyouqh6],
.hero-button--ghost:where(:hover,:focus-visible)[b-c3ntyouqh6] {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.25) 100%) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset !important;
    backdrop-filter: blur(35px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(35px) saturate(200%) !important;
    animation: none !important;
}

a.hero-button:focus-visible[b-c3ntyouqh6],
.hero-button:focus-visible[b-c3ntyouqh6] {
    outline: 2px solid rgba(255, 255, 255, 0.6) !important;
    outline-offset: 3px !important;
}

a.hero-button:active[b-c3ntyouqh6],
.hero-button:active[b-c3ntyouqh6] {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(245, 130, 32, 0.2) !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: 14px 20px !important;
        font-size: 0.9rem !important;
        min-height: 48px !important;
        border-radius: 14px !important;
    }
    
    a.hero-button[b-c3ntyouqh6]::after,
    .hero-button[b-c3ntyouqh6]::after {
        border-radius: 14px !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 */
.instructions[b-4vskq9tubi] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Select Vehicle Button */
.btn-conteiner[b-4vskq9tubi] {
    display: flex;
    --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;
    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: 820px;
    gap: 10px;
    align-items: stretch;
    text-align: center;
    width: 100%;
}

.dropdown-label[b-4vskq9tubi] {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}



.dropdown-input[b-4vskq9tubi] {
    min-height: 40px;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid rgba(180, 180, 180, 0.7);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(74, 63, 152, 0.5), rgba(255, 255, 255, 0.1));
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    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.9;
}

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

    .dropdown-input:hover[b-4vskq9tubi] {
        border-color: #ffffff;
        background: linear-gradient(135deg, rgba(100, 100, 255, 0.6), rgba(200, 200, 255, 0.2));
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1.01);
        opacity: 1;
    }

    /* Dropdown Arrow Styling */
    .dropdown-input[b-4vskq9tubi]::after {
        content: '';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        pointer-events: none;
    }

/* Submit Button */
.dropdown-submit[b-4vskq9tubi] {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    min-height: 40px;
    width: auto;
    max-width: 220px;
    padding: 0.6em 1.4em;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #4A3F98, #5e5dcd);
    color: #fff;
    font-size: 14px;
    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: #fff;
    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: 40px;
        font-size: 14px;
        padding: 0 1rem;
    }

    .dropdown-label[b-4vskq9tubi] {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .instructions[b-4vskq9tubi] {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .btn-content[b-4vskq9tubi] {
        font-size: 20px;
        padding: 8px 20px;
    }
}

/* -------- Mobile (≤768px) -------- */
@media (max-width:768px) {
    .dropdown-form[b-4vskq9tubi] {
        gap: 8px;
    }
    .dropdown-input[b-4vskq9tubi] {
        min-height: 34px;
        font-size: 12px;
        padding: 0 .7rem;
    }

    .dropdown-label[b-4vskq9tubi] {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .instructions[b-4vskq9tubi] {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .btn-content[b-4vskq9tubi] {
        font-size: 18px;
        padding: 6px 16px;
    }
}

@media (max-height:700px) {
    .dropdown-input[b-4vskq9tubi] {
        min-height: 28px;
        font-size: 12px;
    }

    .dropdown-label[b-4vskq9tubi],
    .instructions[b-4vskq9tubi] {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .btn-content[b-4vskq9tubi] {
        font-size: 16px;
        padding: 5px 14px;
    }
}
/* /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: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumb-current[b-4h41mzjmyx] {
    color: #ffffff;
    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: #ffffff;
    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;
}

.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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    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: #ffffff;
}

.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: #ffffff;
    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/NotYourCar.razor.rz.scp.css */
.notyourcar-section[b-cywmnqto4h] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    margin: 20px 8px, 16px, 8px;
}

.notyourcar-container[b-cywmnqto4h] {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    max-width: 900px;
    padding: 8px;
    border-radius: 20px;
    text-align: left;
}

.left-content[b-cywmnqto4h] {
    flex: 1;
    padding-right: 20px;
}

    .left-content h2[b-cywmnqto4h] {
        margin-bottom: 10px;
        font-size: 1.5rem;
        color: black;
    }

    .left-content p[b-cywmnqto4h] {
        margin: 0;
        font-size: 1rem;
        color: black;
    }

.center-content[b-cywmnqto4h] {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .center-content img[b-cywmnqto4h] {
        max-width: 200px;
    }

.right-content[b-cywmnqto4h] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.small-image[b-cywmnqto4h] {
    max-height: 60px;
    height: auto;
}

.button-wrap[b-cywmnqto4h] {
    margin-top: 30px;
}

.left-content[b-cywmnqto4h],
.right-content[b-cywmnqto4h] {
    box-sizing: border-box;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .notyourcar-section[b-cywmnqto4h] {
        height: auto;
    }

    .notyourcar-container[b-cywmnqto4h] {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        backdrop-filter: blur(1px);
    }

    .left-content[b-cywmnqto4h],
    .center-content[b-cywmnqto4h],
    .right-content[b-cywmnqto4h] {
        flex: none;
        text-align: center;
    }
}

.animated-button[b-cywmnqto4h] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    border: 2px solid black;
    font-size: 16px;
    background-color: transparent;
    border-radius: 50px;
    font-weight: 600;
    color: black;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    margin: auto;
    min-width: 200px;
}

    .animated-button svg[b-cywmnqto4h] {
        position: absolute;
        width: 20px;
        height: 20px;
        fill: black;
        stroke: black;
        z-index: 10;
        transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .animated-button a[b-cywmnqto4h] {
        text-decoration: none !important;
        color: inherit;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .animated-button a:visited[b-cywmnqto4h],
    .animated-button a:active[b-cywmnqto4h],
    .animated-button a:link[b-cywmnqto4h],
    .animated-button a:hover[b-cywmnqto4h] {
        text-decoration: none !important;
        color: inherit;
    }

    .animated-button[b-cywmnqto4h]  a {
        text-decoration: none !important;
    }

    .animated-button[b-cywmnqto4h]  a:visited,
    .animated-button[b-cywmnqto4h]  a:active,
    .animated-button[b-cywmnqto4h]  a:link,
    .animated-button[b-cywmnqto4h]  a:hover {
        text-decoration: none !important;
    }

    .animated-button .arr-1[b-cywmnqto4h] {
        right: 20px;
        opacity: 1;
    }

    .animated-button .arr-2[b-cywmnqto4h] {
        left: -30px;
        opacity: 0;
    }

    .animated-button .circle[b-cywmnqto4h] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 0;
        height: 0;
        background-color: black;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 1;
    }

    .animated-button .text[b-cywmnqto4h] {
        position: relative;
        z-index: 2;
        color: black;
        transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        font-weight: 600;
    }

    .animated-button:hover[b-cywmnqto4h] {
        border-color: black;
        background-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

        .animated-button:hover .arr-1[b-cywmnqto4h] {
            right: -30px;
            opacity: 0;
        }

        .animated-button:hover .arr-2[b-cywmnqto4h] {
            left: 12px;
            opacity: 1;
        }

        .animated-button:hover .text[b-cywmnqto4h] {
            color: white;
            transform: translateX(4px);
        }

        .animated-button:hover svg[b-cywmnqto4h] {
            fill: white;
            stroke: white;
        }

    .animated-button:active[b-cywmnqto4h] {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .animated-button:hover .circle[b-cywmnqto4h] {
        width: 300px;
        height: 300px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
/* /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: 100px; /* Add top padding to account for fixed navbar */
    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: #ffffff;
}

.order-number[b-kocr2gr0mw] {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 10px 0 5px 0;
}

.order-date[b-kocr2gr0mw] {
    font-size: 14px;
    color: #e0e0e0;
    margin: 5px 0;
}

/* Order Cards */
.order-card[b-kocr2gr0mw] {
    width: 100%;
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--battery-color, #ffcb05);
    position: relative;
    text-align: left;
}

.card-title[b-kocr2gr0mw] {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.order-item[b-kocr2gr0mw] {
    margin-bottom: 20px;
}

.item-name[b-kocr2gr0mw] {
    font-size: 16px;
    color: #333;
    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;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    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;
}

/* Support Section */
.support-section[b-kocr2gr0mw] {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #b0b0b0;
    font-size: 14px;
}

.support-section p[b-kocr2gr0mw] {
    color: #b0b0b0;
}

.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: 120px; /* More top padding on tablet/mobile */
    }
    
    .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: 140px; /* Even more top padding on mobile */
    }
}

.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 */
/* Center the glassmorphic container */
.power-up-section[b-bbgwgsvf6f] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 8px;
    border-radius: 20px;
    margin-top: 80px
}

/* Content container with glassmorphic effect */
.content-container[b-bbgwgsvf6f] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* Responsive width */
    max-width: 900px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Left-side text content */
.text-content[b-bbgwgsvf6f] {
    flex: 1;
    padding-right: 20px;
}

.heading[b-bbgwgsvf6f] {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Right-side image content */
.image-content[b-bbgwgsvf6f] {
    float: left;
    max-width: 60%;
}

.coin-image[b-bbgwgsvf6f] {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .content-container[b-bbgwgsvf6f] {
        flex-direction: column;
    }
    .text-content .heading[b-bbgwgsvf6f] {
        font-size: 2rem; /* Shrink text size on mobile */
    }

    .subheading[b-bbgwgsvf6f] {
        font-size: 1rem; /* Adjust subheading size */
    }

    .image-content[b-bbgwgsvf6f] {
        max-width: 100%;
        float: none;
    }
}

/* FAQ Section */
.battery-faq[b-bbgwgsvf6f] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 8px 0px 8px;
}

    .faq-wrapper[b-bbgwgsvf6f] {
        display: flex;
        flex-direction: row;
        gap: 30px;
        max-width: 1100px;
        width: 100%;
    }
@media (max-width: 768px) {
    .faq-wrapper[b-bbgwgsvf6f] {
        flex-direction: column;
    }
    .faq-image[b-bbgwgsvf6f],
    .faq-container[b-bbgwgsvf6f] {
        width: 100%; /* Ensure both stack and take full width */
    }
}

    /* Left-side Image */
    .faq-image[b-bbgwgsvf6f] {
        flex: 1;
    }

        .faq-image img[b-bbgwgsvf6f] {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

    /* Right-side FAQ */
.faq-container[b-bbgwgsvf6f] {
    flex: 1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
}

    .faq-heading[b-bbgwgsvf6f] {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 20px;
        color: black;
    }

    /* FAQ Item */
    .faq-item[b-bbgwgsvf6f] {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

        .faq-item:last-child[b-bbgwgsvf6f] {
            border-bottom: none;
        }

    .faq-question[b-bbgwgsvf6f] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2rem;
        font-weight: 500;
        cursor: pointer;
        color: black;
        transition: color 0.3s ease;
    }

        .faq-question:hover[b-bbgwgsvf6f] {
            color: var(--secondary-color, #4A90E2);
        }

    .faq-toggle[b-bbgwgsvf6f] {
        background: #333;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    /* FAQ Answer */
    .faq-answer[b-bbgwgsvf6f] {
        margin-top: 10px;
        font-size: 1rem;
        color: black;
        line-height: 1.5;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
/* /Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.privacy-container[b-puu7utiax3] {
    display: flex;
    justify-content: center;
    top: 80px;
}
.privacy[b-puu7utiax3] {
    background: black;
    max-width: 700px;
    padding: 10px 20px 10px 20px;
    position: relative;
    color: white;
    margin: 10px;
    margin-top: 80px;
}

p[b-puu7utiax3] {
    color: white;
}

h3[b-puu7utiax3] {
    color: white;
}
/* /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/Selector.razor.rz.scp.css */
/* Section Styles */
.selector-section[b-f9kww3z9zs] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vh 0;
    background-image: url('images/BatteryGuru3.svg'), radial-gradient(circle, var(--color2032), var(--color2025));
    background-position: center, 0 0;
    background-repeat: repeat, repeat;
    background-size: 20rem, auto;
    border-radius: 20px;
    margin: 20px 10px;
    text-align: center;
}

/* Container */
.selector-container[b-f9kww3z9zs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(2px);
    max-width: 900px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Title */
.selector-title[b-f9kww3z9zs] {
    font-size: 1.8rem;
    color: var(--text-primary, #ffffff);
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

/* Image */
.selector-image[b-f9kww3z9zs] {
    margin: 20px 0;
    width: 200px;
}

/* Buttons Wrapper */
.selector-buttons[b-f9kww3z9zs] {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Buttons */
.selector-button[b-f9kww3z9zs] {
    padding: 14px 28px;
    min-height: 44px; /* Minimum touch target */
    min-width: 150px;
    font-size: 16px;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

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

    /* Primary Button */
    .selector-button.primary[b-f9kww3z9zs] {
        background-color: #40089c;
    }

        .selector-button.primary:hover[b-f9kww3z9zs] {
            background-color: #5a0fc8;
            transform: scale(1.03);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }

        .selector-button.primary:active[b-f9kww3z9zs] {
            transform: scale(0.95);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

    /* Secondary Button */
    .selector-button.secondary[b-f9kww3z9zs] {
        background-color: #000;
    }

        .selector-button.secondary:hover[b-f9kww3z9zs] {
            background-color: #333;
            transform: scale(1.03);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }

        .selector-button.secondary:active[b-f9kww3z9zs] {
            transform: scale(0.95);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

/* Media Queries */
@media (max-width: 768px) {
    .selector-container[b-f9kww3z9zs] {
        width: calc(100% - 20px);
    }

    .selector-buttons[b-f9kww3z9zs] {
        flex-wrap: wrap;
    }

    .selector-button[b-f9kww3z9zs] {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
}
/* /Components/Pages/SelectYourVehicle.razor.rz.scp.css */
.app-ui-layout[b-zotsfvfpbw] {
    max-width: 800px;
    margin: 0 auto;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    top: 80px;
}

.selector-section[b-zotsfvfpbw] {
    max-width: 100%;
    overflow: visible;
    position: relative;
    border-top: none !important; /* Remove any top border */
}

.vehicle-select-banner[b-zotsfvfpbw] {
    justify-content: center;
    height: auto;
}

.remote-battery-img[b-zotsfvfpbw] {
    max-width: 35%;
    max-height: 35%;
}

.vehicle-select-form[b-zotsfvfpbw], .battery-options[b-zotsfvfpbw] {
    background: radial-gradient(circle, #1b1b1b, #0e0e0e);
    color: white;
    border-radius: 20px;
    padding: 8px;
    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);
    outline: 4px solid #2a2a2a;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transform: translateX(0);
    opacity: 1;
    transform-origin: right center;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

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

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

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

.heading-cont[b-zotsfvfpbw] {
    font-size: 20px;
    text-align: center;
}

.heading[b-zotsfvfpbw] {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.subheading[b-zotsfvfpbw] {
    font-size: 16px;
    margin-bottom: 10px;
}

p[b-zotsfvfpbw] {
    color: white;
}

@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;
    }

    .heading[b-zotsfvfpbw] {
        font-size: 20px;
    }

    .subheading[b-zotsfvfpbw] {
        font-size: 14px;
    }

    .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: hidden;
    }

    .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 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    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: rgba(255, 255, 255, 0.9);
        margin-bottom: 8px;
        display: block;
        transition: color 0.3s ease;
        letter-spacing: 0.3px;
    }

        .form-group:hover label[b-zotsfvfpbw] {
            color: #fff;
        }

    .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: white;
        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: #1a1a1a;
        color: white;
        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: white;
    }

.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: white !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: rgba(255, 255, 255, 0.7) !important;
}

.form-control option:first-child[b-zotsfvfpbw] {
    color: rgba(255, 255, 255, 0.7) !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: rgba(255, 255, 255, 0.7) !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: #1a1a1a;
    color: white;
    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: white;
}

.form-control option[value="0"][b-zotsfvfpbw] {
    color: rgba(255, 255, 255, 0.7);
}

.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: #1a1a1a;
    color: white;
    border-radius: 10px;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    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: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    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: #333;
    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: 50%;
    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: white;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid white;
    padding-bottom: 1px;
}

.battery-size-label[b-zotsfvfpbw] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    text-align: center;
}

.battery-desc-label[b-zotsfvfpbw] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    text-align: center;
}

.buy-now-btn[b-zotsfvfpbw] {
    background: #4a4a4a;
    color: white;
    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 0.8s
}

/* 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: white;
    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: white;
    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: white;
    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: rgba(255, 255, 255, 0.7);
    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: rgba(255, 255, 255, 0.7);
    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 rgba(255, 255, 255, 0.15);
    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;
    }

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

/* 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/TermsOfService.razor.rz.scp.css */
.terms-container[b-v21tncke98] {
    display: flex;
    justify-content: center;
    top: 80px;
}

.terms[b-v21tncke98] {
    background: black;
    max-width: 700px;
    padding: 10px 20px 10px 20px;
    position: relative;
    color: white;
    margin: 10px;
    margin-top: 80px;
    text-align: left;
}

p[b-v21tncke98] {
    color: white;
}

h3[b-v21tncke98] {
    color: white;
}
/* /Components/Pages/Updates.razor.rz.scp.css */
.updates-section[b-8zigsbpjco] {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

.updates-container[b-8zigsbpjco] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .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: white;
}

/* Improve email input for mobile */
.email[b-8zigsbpjco] {
    font-size: 16px !important; /* Prevents zoom on iOS */
    min-height: 44px !important; /* Minimum touch target */
    -webkit-appearance: none;
    appearance: none;
}

.email:focus[b-8zigsbpjco],
.email:focus-visible[b-8zigsbpjco] {
    outline: 2px solid var(--secondary-color, #4A90E2) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2) !important;
}

.email-submit[b-8zigsbpjco] {
    min-height: 44px !important; /* Minimum touch target */
    min-width: 100px !important;
    font-size: 16px !important;
    -webkit-tap-highlight-color: transparent;
}

.email-submit:focus-visible[b-8zigsbpjco] {
    outline: 3px solid #fff !important;
    outline-offset: 3px !important;
}

.email-submit:active[b-8zigsbpjco] {
    transform: scale(0.98);
}

/* Validation message styling */
.validation-message-email[b-8zigsbpjco] {
    color: #e50000;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0 4px;
}

.email-group[b-8zigsbpjco] {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    align-items: stretch;
}
/* /Components/Pages/VehicleMake.razor.rz.scp.css */
.vehicle-make-container[b-yvkc80dhnj] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
}

.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: #fff;
}

.vehicle-make-intro[b-yvkc80dhnj] {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    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: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.section-description[b-yvkc80dhnj] {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.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: #fff;
}

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

.battery-link:hover[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[b-yvkc80dhnj] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #F58220;
    transition: all 0.3s ease;
}

.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: #fff;
}

.model-description[b-yvkc80dhnj] {
    color: rgba(255, 255, 255, 0.8);
    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;
}

.no-models[b-yvkc80dhnj] {
    color: rgba(255, 255, 255, 0.7);
    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: #fff;
    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: rgba(255, 255, 255, 0.9);
}

.error-message h1[b-yvkc80dhnj] {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.error-message p[b-yvkc80dhnj] {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

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

    .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/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: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    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: 10px;
    width: auto;
    overflow: hidden;
    font-size: clamp(14px, 1.5vw, 20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

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

.hero-image-skeleton[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;
}

@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],
    .hero-image-skeleton[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: 14px;
    }

        .overlay-content h2[b-zq4lvg8d3c] {
            margin: 0 0 8px;
            font-size: clamp(18px, 2.2vw, 26px);
            line-height: 1.2;
        }

    .hero-image[b-zq4lvg8d3c],
    .hero-image-skeleton[b-zq4lvg8d3c] {
        width: 100%;
        max-width: none;
    }
}
/* /Components/Pages/Wheel.razor.rz.scp.css */
.background[b-vue47vj83t] {
    position: relative;
    min-height: 100vh;
}

.battery-wheel[b-vue47vj83t] {
    width: 80%;
    overflow: hidden;
    position: relative;
}

.wheel[b-vue47vj83t] {
    display: flex;
    gap: 20px;
    animation: scroll-b-vue47vj83t 20s linear infinite;
}

    .wheel img[b-vue47vj83t] {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

@keyframes scroll-b-vue47vj83t {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% + 80%));
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wheel img[b-vue47vj83t] {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1200px) {
    .battery-wheel[b-vue47vj83t] {
        width: 60%;
    }
}
/* /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: white;
    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: white;
}

.address-verification-body h2[b-uvik54xom5] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    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: white !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: #ff6b6b;
    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: #ffc107;
    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: #fff;
}

.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: white;
    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: white;
}

.authorizenet-modal-content h2[b-czub0h8tno] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    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/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/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: 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; /* Crucial for fixed positioning with parent transforms */
}

.payment-loading-content[b-mgwqgmbtk9] {
    background-color: var(--background-dark, #222);
    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/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: white;
    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: white;
}

.policy-modal-content h2[b-gl74r8fhn7] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    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: white;
    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/SkeletonBase.razor.rz.scp.css */
.skeleton-base[b-y9a6omz43s] {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    background-size: 200% 100%;
    animation: shimmer-b-y9a6omz43s 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    display: block;
    position: relative;
    overflow: hidden;
    will-change: background-position;
    border-radius: inherit !important;
}

.skeleton-base[b-y9a6omz43s]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 203, 5, 0.2) 25%,      /* CR2025 Supernova */
        rgba(9, 192, 222, 0.2) 50%,      /* CR2354 Topaz */
        rgba(98, 190, 40, 0.2) 75%,      /* CR2032 Lima Green */
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer-b-y9a6omz43s 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: background-position;
}

.skeleton-base.pulse[b-y9a6omz43s] {
    animation: pulse-b-y9a6omz43s 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Staggered animation delays for multiple skeletons */
.skeleton-base[data-delay="1"][b-y9a6omz43s] {
    animation-delay: 0.1s;
}

.skeleton-base[data-delay="2"][b-y9a6omz43s] {
    animation-delay: 0.2s;
}

.skeleton-base[data-delay="3"][b-y9a6omz43s] {
    animation-delay: 0.3s;
}

.skeleton-base[data-delay="4"][b-y9a6omz43s] {
    animation-delay: 0.4s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .skeleton-base[b-y9a6omz43s],
    .skeleton-base[b-y9a6omz43s]::after {
        animation: none;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .skeleton-base.pulse[b-y9a6omz43s] {
        animation: none;
        opacity: 1;
    }
}
/* /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: var(--text-primary, #ffffff);
    font-size: 14px;
    line-height: 1.4;
}

.toast-close[b-2rfedhk1r8] {
    background: none;
    border: none;
    color: var(--text-primary, #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;
    }
}

