/**
 * Service Page Styles
 * 
 * Extracted from style.css for better maintainability.
 * Contains all styles for:
 *   - Service wrapper and containers
 *   - Dropdown selects (.select-1)
 *   - Boolean toggles (.select-option-2)
 *   - Range sliders (.input-range-container)
 *   - Service type layouts (type 1, 2, 3, 6)
 *   - Service header and breadcrumbs
 *   - Trustpilot showcase
 *   - Add-to-cart pop-over
 * 
 * NOTE: Class names must NOT change - JS relies on these selectors.
 */

/* ==========================================================================
   DROPDOWN SELECT COMPONENT (.select-1)
   ========================================================================== */

.select-1{
    position: relative;
    height: auto;
    z-index: auto;
    background: #222934;
    border: 1px solid #333d4c;
    border-radius: 10px;
    transition: all 0.2s ease;
}

html[data-theme="light"] .select-1 {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.select-1.active {
    z-index: 100 !important; /* Very high when active */
}

.select-1 .select-btn{
    height: 58px !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0.7rem 1.5rem !important;
    box-sizing: border-box !important;
    text-align: center;
    border-radius: 10px;
    border: none; /* Border is on container .select-1 */
    cursor: pointer;
    justify-content: center;
    width: max-content;
    color: var(--color-text-1);
    background: transparent; /* Background is on container .select-1 */
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}
.select-1 .select-btn span{
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}
.select-label{
    padding: 0 5px;
    font-size: 14px;
    color: var(--color-text-1);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}
.select-value {
    font-size: 14px;
}

.select-1 .select-btn *{
    display: block;
    pointer-events: none;
}
.select-1 .select-btn i{
    transform:rotate(0);
    transition: 0.3s;
}
.select-1 .select-btn i.active{
    transform:rotate(-180deg);
}
/* ==========================================================================
   Dropdown - Clean Modern Style
   ========================================================================== */

.select-1 .select-open{
    z-index: 101 !important;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    color: var(--color-text-2);
    margin-top: 0.5rem;
}
.select-1 .select-open.active{
    display: block;
}
.select-1 .dropdown-image{
    max-width: 100% !important;
    display: flex !important;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.select-1 .dropdown-image a{
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.select-open-left{
    transform: translateX(-50%) !important;
}
.select-open{
    min-width: 100%;
    background: #222934 !important;
    border: 1px solid #333d4c !important;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
    isolation: isolate;
}

html[data-theme="light"] .select-open {
    background: #ffffff !important;
    border-color: #e0e5eb !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.04);
}

.select-open ul{
    position: relative;
    z-index: 102 !important;
    padding: 0 0.5rem 0.5rem 0.5rem !important; /* No top padding when search-list present */
    margin: 0 !important;
    list-style: none;
    max-height: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    border: none;
    border-radius: 0;
    background: transparent !important;
}

html[data-theme="light"] .select-open ul {
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.select-open ul::-webkit-scrollbar {
    width: 5px;
}

.select-open ul::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.select-open ul::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

html[data-theme="light"] .select-open ul::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
}

.select-open ul li{
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    margin: 0.125rem 0;
    transition: background 0.15s ease, color 0.15s ease;
    padding: 0.75rem 1rem !important;
    border-radius: 6px !important;
    text-align: left;
    color: var(--color-text-2);
    font-size: 0.9375rem;
}
.select-open ul li:hover{
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-1) !important;
}

html[data-theme="light"] .select-open ul li:hover {
    background: rgba(0, 0, 0, 0.04);
}

.select-open ul li.active{
    background: rgba(92, 154, 255, 0.12) !important;
    color: #5c9aff !important;
    font-weight: 500;
}

.select-1.select-scroll .select-open ul{
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    max-width: 300px;
    word-wrap: break-word;
}
.search-list{
    position: sticky;
    top: 0;
    left: -0.5rem; /* Counteract ul padding */
    width: calc(100% + 1rem); /* Expand to fill full width including ul padding */
    z-index: 102;
    padding: 0.5rem;
    margin: 0;
    background: #222934 !important; /* Match exact dropdown background */
    box-sizing: border-box;
}
.search-list input,
.select-1 .search-list input,
.select-open .search-list input,
.select-1 .select-open .search-list input,
.select-1 .select-open ul .search-list input {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    height: auto;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    color: var(--color-text-1);
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
}

.search-list input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #5c9aff !important;
}

.search-list input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

html[data-theme="light"] .search-list {
    background: #ffffff !important; /* Exact match with light dropdown */
}

html[data-theme="light"] .search-list input {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

html[data-theme="light"] .search-list input:focus {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(92, 154, 255, 0.5) !important;
}

.search-list::after{
    display: none !important; /* Remove the colored overlay */
}


/* ==========================================================================
   SERVICE WRAPPER & CONTAINER
   ========================================================================== */

.service-wrapper{
    box-sizing: border-box;
    padding: 2rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #181d25; /* Dashboard background color */
    position: relative;
}

/* Hide empty service-wrappers that only have empty header-wrapper (for types 1, 2, 3 which have their own templates) */
.service-wrapper:not(.service-type-4):not(.service-wrapper-type2-dropdown):not(.service-wrapper-type1):not(.service-wrapper-type3):has(.header-wrapper:only-child) {
    display: none !important;
}

html[data-theme="light"] .service-wrapper {
    background: #f5f7fa;
    border-color: rgba(0, 0, 0, 0.08);
}

.service-wrapper .slider-container-1{
    position: relative;
    padding: 0 !important;
    background: transparent;
    z-index: 1;
}

/* Breadcrumbs */
.service-breadcrumbs{
    padding: 0;
    margin: 0;
    display: flex;
    align-items:stretch;
    height: 50px;
    border-radius: 0.4rem;
    overflow: hidden;
}
.service-breadcrumbs .game{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .4rem 2rem;
    gap: 1rem;
    border-radius: .5rem;
    color: var(--static-1);
    background: var(--accent-gradient-2-r);
}
.service-breadcrumbs .game .game-icon{
    width: 30px;
    height: 30px;
    border-radius: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-2);
    background-color: var(--static-1);
}
.service-breadcrumbs ul{
    width: 100%;
    height: 50px;
    display: none;
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    scrollbar-width: none;
    list-style: none;
    padding-right: 20px;
}
.service-breadcrumbs ul li{
    font-size: 13px;
    white-space: nowrap;
    color: var(--color-text-2);
}
.service-breadcrumbs ul li:hover,
.service-breadcrumbs ul li.active{
    color: var(--color-text-1);
}
.service-breadcrumbs .price-container{
    text-align: end;
    font-size: 12px;
    white-space: nowrap;
    flex-grow: 1;
}
.service-breadcrumbs .price-container .price{
    font-size: 18px;
    color: var(--color-dark-5);
}


/* ==========================================================================
   RANGE SLIDER COMPONENT (.input-range-container)
   ========================================================================== */

.input-range-container{
    /* height: 100%; */
    width: 100% !important;
    padding: 0;
    position: relative;
    z-index: 1 !important;
}

/* milestone design */
.input-range-container .range-milestone{
    width: 22px;
    height: 22px;
    position: absolute;
    border-radius: 100%;
    border: 3px solid var(--color-dark-3);
    background: var(--bg-color-5);
    cursor: pointer;
    z-index: 2;
}
.input-range-container .range-milestone.active{
    background: var(--accent-gradient-2-r);
}
.input-range-container .range-milestone.start{
    pointer-events: none;
}

/* tool tips */
.input-range-container .range-milestone:hover .tool-tip{
    display: block;
}
.input-range-container .range-milestone .tool-tip{
    display: none;
    position: absolute;
    top: -55px;
    transform: translateX(-40%);
    width: max-content;
    text-align: center;
    padding: .5rem 1rem;
    box-sizing: border-box;
    border-radius: 5px;
    color: var(--static-1);
    background: var(--accent-gradient-2-r);
}

/* range slider */
.input-range-container input{
    width: 100%;
    z-index: 1;
}
.input-range-container input[type=range]{
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    margin-top: 4px;
    border-radius: 20px !important;
    background: transparent;
}

/* range slider chrome */
.input-range-container input[type=range]::-webkit-slider-runnable-track{
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 20px !important;
    background: var(--bg-color-3) !important;
}
.input-range-container input[type=range]::-webkit-range-value{
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 20px !important;
    background: var(--accent-1) !important;
}
.input-range-container input[type=range]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    transform: translateY(-5px);
    border: 0;
    width: 30px;
    height: 30px;
    background: url(../../images/svg/slider-handle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.input-range-container .current-value{
    width: fit-content;
    position: absolute;
    top: -55px;
    left: 0;
    border-radius: 5px;
    box-sizing: border-box;
    background: var(--accent-gradient-2-r);
    padding: .5rem 1rem;
    font-size: 12px;
    color: var(--static-1);
    transform: translateX(-50%);
}

/* range slider mozila */
.input-range-container input[type=range]::-moz-range-track{
    height: 8px;
    border-radius: 20px !important;
    background: var(--bg-color-3) !important;
}
.input-range-container input[type=range]::-moz-range-progress{
    height: 8px;
    border-radius: 20px !important;
    background: var(--accent-1) !important;
}
.input-range-container input[type=range]::-moz-range-thumb{
    border: 0;
    width: 30px;
    height: 30px;
    background: url(../../images/svg/slider-handle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.input-range-container input[type=range]::-ms-fill-lower {
    height: 8px;
    border-radius: 20px !important;
    background: var(--accent-1) !important;
}


/* ==========================================================================
   SERVICE FORM & INPUTS
   ========================================================================== */

.service-inputs{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Match Additional Options grid */
    gap: 1rem;
}

/* Style Order Preferences dropdowns to match Additional Options exactly */
.service-inputs .select-1 {
    background: #222934 !important;
    border: 1px solid #333d4c !important;
    border-radius: 10px !important;
    min-height: 58px !important;
    height: 58px !important;
    position: relative !important;
}

html[data-theme="light"] .service-inputs .select-1 {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Label - positioned ABOVE the box like Additional Options */
.service-inputs .select-1 .select-label {
    position: absolute !important;
    top: -18px !important; /* Above the border, same as Additional Options */
    left: 0.5rem !important;
    font-size: 12px !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 500 !important;
    background: transparent !important; /* No background, just text */
    padding: 0 !important;
    z-index: 10 !important;
    letter-spacing: 0.3px !important;
}

html[data-theme="light"] .service-inputs .select-1 .select-label {
    color: rgba(0, 0, 0, 0.5) !important;
    background: transparent !important;
}

/* Button - left-aligned text like Additional Options */
.service-inputs .select-1 .select-btn {
    height: 100% !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Left align */
    padding: 0 1.25rem !important;
    background: transparent !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: var(--color-text-1) !important;
    width: 100% !important;
}

.service-inputs .select-1 .select-open ul{
    width: 100% !important;
}

/* Remove box from Order Preferences section */
.form-1 {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Order Preferences section - no box wrapper, with separators */
.order-preferences-section {
    background: transparent !important;
    border: none !important;
    padding: 2rem 0 !important;
    box-shadow: none !important;
    margin-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html[data-theme="light"] .order-preferences-section {
    border-top-color: rgba(0, 0, 0, 0.08) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

/* When Order Preferences is a direct child of main (not inside a service-wrapper with options), give it box styling */
main > .order-preferences-section {
    background: #181d25 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
}

html[data-theme="light"] main > .order-preferences-section {
    background: #f5f7fa !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Service Description section - no box wrapper by default */
.service-description-section {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-top: 2rem !important;
}

/* When description is a direct child of main (not inside a service-wrapper), give it box styling */
main > .service-description-section {
    background: #181d25 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    margin-top: 1.5rem !important;
}

html[data-theme="light"] main > .service-description-section {
    background: #f5f7fa !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.service-description-section .description_container {
    padding: 0;
}

/* Service Purchase info */
.service-purchase-info-container{
    display: block;
}
.service-purchase-info{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-purchase-info .booster-img{
    max-width: 80px;
    max-height: 80px;
    border-radius: 100px;
    overflow:hidden;
}
.service-purchase-info .booster-img img{
    width: 100%;
    height: 100%;
}

.service-purchase-info .booster-name{
    font-size: 20px;
    color: var(--color-text-1);
    margin-bottom: 5px;

}

.service-purchase-info .booster-name span{
    font-size: 15px;
    font-weight: 600;
    margin-left: 10px;
    color: var(--color-text-2);
}
.service-purchase-info .booster-name span.price{
    color: var(--accent-2);
    margin-left: 0 !important;
}

.service-purchase-info .purchase-add-ons{
    display: flex;
    flex-wrap: wrap;
    color: var(--color-dark-5);
}

.service-purchase-info .purchase-add-ons span{
    margin-right: 30px;
    margin-bottom: 10px;
}


/* ==========================================================================
   SERVICE TYPE 2 - RANK GAMES (Clean Centered Layout)
   ========================================================================== */

/* Main container - flex centered layout */
.service-3-dropdown-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 1rem;
    min-height: auto !important;
    gap: 1.5rem;
    isolation: isolate;
    position: relative;
    z-index: 500;
}

/* Dropdown wrapper - clean positioning */
.service-3-dropdown {
    position: relative !important;
    margin: 0 !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 100;
}

/* Badge container - holds dropdown with floating label */
.service-3-dropdown .service-3-badge-container {
    display: block !important;
    position: relative !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-width: 220px;
}

/* Hide old/unused elements */
.service-3-dropdown .platform,
.service-3-badge-container .spacer,
.service-3-badge-container .service-3-badge,
.service-3-connector {
    display: none !important;
}

/* Label - floating above dropdown like Additional Options */
.service-3-badge-container .desc {
    position: absolute !important;
    top: -24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: none !important;
    z-index: 10;
    white-space: nowrap;
    margin: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

html[data-theme="light"] .service-3-badge-container .desc {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* Dropdown - remove base border, style the button instead */
.service-3-dropdown .select-1 {
    min-width: 220px !important;
    width: 100%;
    background: transparent !important;
    border: none !important;
    position: relative !important;
    z-index: 500 !important;
}

/* Dropdown button - single border styling */
.service-3-dropdown .select-1 .select-btn {
    background: #222934;
    border: 1px solid #333d4c;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    min-height: 58px;
    justify-content: space-between !important;
    transition: all 0.2s ease;
}

.service-3-dropdown .select-1 .select-btn:hover {
    border-color: rgba(47, 110, 213, 0.3);
}

html[data-theme="light"] .service-3-dropdown .select-1 .select-btn {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .service-3-dropdown .select-1 .select-btn:hover {
    border-color: rgba(47, 110, 213, 0.3);
}

/* Dropdown list z-index */
.service-3-dropdown .select-1 .select-open {
    z-index: 99999 !important;
    position: absolute !important;
}

.service-3-dropdown .select-1 .select-open ul {
    z-index: 99999 !important;
    background: var(--bg-color-2, #1a1f28) !important;
    position: relative !important;
    width: 100% !important;
    min-width: 200px !important;
}

/* Z-index stacking for service wrappers */
.service-wrapper-type2-dropdown,
.service-wrapper:has(.service-3-dropdown-container) {
    z-index: 100 !important;
    position: relative !important;
}

.service-wrapper-type2-dropdown + .service-wrapper,
.service-wrapper:has(.service-3-dropdown-container) + .service-wrapper {
    z-index: 1 !important;
    position: relative !important;
}

/* Tooltip icons - lower z-index so dropdown appears above */
.select-option-2 .tooltip-container,
.service-options-grid .tooltip-container,
.service-input-grid .tooltip-container {
    z-index: 10 !important;
}

/* Input wrapper styling */
.service-3-input-wrapper {
    position: relative;
    min-width: 180px;
}

.service-3-input-wrapper label {
    position: absolute !important;
    top: -24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    z-index: 10;
    background: transparent !important;
    white-space: nowrap;
    padding: 0 !important;
}

html[data-theme="light"] .service-3-input-wrapper label {
    color: rgba(0, 0, 0, 0.6) !important;
}

.service-3-input-wrapper .search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 41, 52, 0.6) 0%, rgba(24, 29, 37, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-1);
    transition: all 0.2s ease;
    min-height: 58px;
}

html[data-theme="light"] .service-3-input-wrapper .search-input {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
}

.service-3-input-wrapper .search-input:focus {
    outline: none;
    border-color: rgba(47, 110, 213, 0.5);
    box-shadow: 0 0 0 3px rgba(47, 110, 213, 0.15);
}

.service-3-input-wrapper .search-input:hover {
    border-color: rgba(47, 110, 213, 0.3);
}

/* Hide hr spacer and slider for Service Type 2 - cleaner layout */
.service-3-dropdown-container ~ .hr-spacer-2,
.service-wrapper:has(.service-3-dropdown-container) .hr-spacer-2,
.service-wrapper:has(.service-3-dropdown-container) .slider-container-1 {
    display: none !important;
}


/* ==========================================================================
   SERVICE TYPE 5 - OPTIONS GRID & BOOLEAN TOGGLES
   ========================================================================== */

.header-wrapper{
    display: block;
}
.section-4 .service-game-badge{
    width: 60px;
    height: 60px;
    background-color: var(--accent-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.section-4 .service-game-badge img{
    width: 40px;
    height: auto;
}
.section-4 .tag-container{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.section-4 .tag-container .tag{
    display: flex;
    font-size: 14px;
    align-items: center;
    padding: 10px;
    gap: 10px;
    border: 1px solid var(--color-text-1);
    border-radius: 10px;
}

.mount-container{
    display: flex;
    justify-content: center;
}
.mount{
    width: 400px;
    position: relative;
    margin-inline:auto;
}

.service-input-grid{
    display: grid;
    z-index: auto;
    margin-top: 1.5rem;
    gap: 2rem 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* Wider columns for more text */
}
.service-input-grid .select-1{
    min-height: 58px !important;
    height: 58px !important;
    position: relative;
}

/* Label wrapper - positioned ABOVE the box */
.service-input-grid .select-1 .select-label-wrapper {
    order: 1 !important;
    position: absolute !important;
    top: -18px !important; /* Above the border, not on it */
    left: 0.5rem !important;
    z-index: 15 !important;
    pointer-events: none !important;
}

/* Label at top - just text, no background */
.service-input-grid .select-1 .select-label{
    display: inline-block !important;
    position: static !important;
    max-width: 100% !important;
    width: auto !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    font-size: 12px !important;
    text-transform: none !important; /* No uppercase */
    letter-spacing: 0.3px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1 !important;
    padding: 0 !important;
    background: transparent !important;
    font-weight: 500 !important;
}

/* Button: fills rest of space */
.service-input-grid .select-1 .select-btn{
    order: 2 !important;
    min-height: 58px !important;
    height: 58px !important;
    padding: 0 1.25rem !important; /* Remove vertical padding, let flexbox center */
    padding-right: 3rem !important; /* Space for tooltip */
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* Make the button content use full width and ensure vertical centering */
.service-input-grid .select-1 .select-btn span {
    max-width: calc(100% - 30px) !important;
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
    line-height: normal !important;
}

html[data-theme="light"] .service-input-grid .select-1 .select-label {
    color: rgba(0, 0, 0, 0.6) !important;
    background: transparent !important;
}

/* Boolean Toggle Component (.select-option-2) - matches dropdown style */
.select-option-2{
    height: 58px !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0.7rem 1.5rem !important;
    box-sizing: border-box !important;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 10px; /* Same as dropdown */
    border: 1px solid #333d4c; /* Same as dropdown */
    background: #222934; /* Same as dropdown */
    position: relative;
    font-size: 14px !important; /* Same as dropdown */
    font-weight: 400 !important; /* Thinner to match dropdown text */
}

/* Boolean text styling - match dropdown text weight */
.select-option-2 .desc,
.select-option-2 .checkbox-info .desc {
    font-weight: 400 !important;
    font-size: 14px !important;
}

/* Boolean price text - thinner weight */
.select-option-2 .checkbox-info .header,
.select-option-2 .price {
    font-weight: 400 !important;
    font-size: 0.875rem !important;
}

html[data-theme="light"] .select-option-2 {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Gradient border effect on hover - elegant visual enhancement */
.select-option-2::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, #5c9aff 0%, transparent 60%);
    -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.2s ease;
    pointer-events: none;
}

.select-option-2:hover::before {
    opacity: 1;
}

.select-option-2:hover {
    border-color: transparent;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
}
.select-option-2 .check-icon{
    min-height: 20px;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10rem;
    color: var(--accent-1);
    background: #181d25 !important; /* Darker than container */
    border: 1px solid #333d4c;
}

html[data-theme="light"] .select-option-2 .check-icon {
    background: #d1d5db !important;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
}
.select-option-2 .check-icon i{
    opacity: 0;
}

/* Active state with gradient border */
.select-option-2.active::before {
    background: linear-gradient(135deg, #33b36b 0%, rgba(51, 179, 107, 0.3) 100%);
    opacity: 1;
}

.select-option-2.active{
    color: var(--color-text-1) !important;
    border-color: transparent !important;
    background: rgba(51, 179, 107, 0.08) !important;
}
.select-option-2 .checkbox-info{
    width: 85%;
}
/* Make the header text smaller and less prominent */
.checkbox-info .header {
    font-size: 14px; /* Reduce from whatever it currently is */
    margin: 0;       /* Remove any margins */
    line-height: 1;  /* Tighten line height */
}

/* Reduce overall section padding */
.checkbox-info.section-3 {
    padding: 0.2rem 0.2rem; /* Reduce internal padding */
}

/* Boolean container in service grid */
.service-input-grid .select-option-2 {
    padding: 0.7rem 1rem !important;
    min-height: 58px;
    height: auto; /* Allow height to grow for 2 lines */
    max-height: 80px; /* Cap at 2 lines worth */
}

/* Price display in boolean - centered vertically */
.service-input-grid .select-option-2 .checkbox-info .header {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-1);
}

.select-option-2 .desc{
    white-space: normal; /* Allow text wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Max 2 lines */
    -webkit-box-orient: vertical;
}
.select-option-2 .header{
    width: max-content;
}
.select-option-2.active .desc{
    color: var(--color-text-1) !important;
}
.select-option-2.active:hover{
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
}
.select-option-2.active .check-icon{
    background: #33b36b !important;
    border-color: #33b36b;
}
.select-option-2.active .check-icon i{
    opacity: 1;
    color: #fff;
}


/* ==========================================================================
   SERVICE TYPE 6 - DOUBLE SLIDER LAYOUT
   ========================================================================== */

/* ==========================================================================
   SERVICE TYPE 1 - DOUBLE SLIDER (REDESIGNED)
   Modern card-based layout with clean slider
   ========================================================================== */

/* Main Container - Clean layout */
.service-6-double-slider-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 1rem 1rem 1.5rem;
    position: relative;
    min-height: auto;
}

/* Badge Wrapper - Modern Card Design */
.service-6-badge-wrapper {
    position: relative;
    flex: 0 0 auto;
    min-height: auto;
    margin-top: 0;
}

.service-6-badge-wrapper .service-6-badge-container {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 41, 52, 0.8) 0%, rgba(24, 29, 37, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    min-width: 160px;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-6-badge-wrapper .service-6-badge-container:hover {
    border-color: rgba(47, 110, 213, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Light theme card */
html[data-theme="light"] .service-6-badge-wrapper .service-6-badge-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .service-6-badge-wrapper .service-6-badge-container:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Label styling */
.service-6-badge-container .section-2 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.service-6-badge-container .section-2 .desc {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-2);
    line-height: 1.2;
}

/* Hide old elements */
.service-6-badge-container .spacer,
.service-6-badge-container .service-6-badge,
.service-6-badge-wrapper .platform {
    display: none !important;
}

/* Connector Arrow Between Cards */
.service-6-double-slider-container::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(47, 110, 213, 0.6);
    font-weight: 300;
    pointer-events: none;
}

/* Hide connector on mobile */
@media (max-width: 767px) {
    .service-6-double-slider-container::after {
        display: none;
    }
}

/* Service Type 1 - Adjust add-to-cart position to align with left container */
@media (min-width: 993px) {
    body:has(.service-6-double-slider-container) .add-to-cart-pop-over {
        top: 6.5rem;
    }
}

/* Service Type 1 - Reduce gap before Service Options section */
.service-wrapper:has(.service-6-double-slider-container) + .service-wrapper {
    margin-top: 1rem !important;
    padding-top: 1.5rem !important;
}

/* Slider handles - ensure max handle (right side) is always on top */
.ui-slider-handle:first-of-type {
    z-index: 2 !important;
}
.ui-slider-handle:last-of-type {
    z-index: 3 !important;
}

/* Input connector - modernized */
.service-6-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0 1rem;
}

.service-6-connector i {
    font-size: 1.5rem;
    color: rgba(47, 110, 213, 0.5);
    transform: rotate(-90deg);
}

/* ==========================================================================
   DOUBLE SLIDER - jQuery UI Override (Modern Design)
   ========================================================================== */

/* Slider Track */
.slider-container-1 #slider-range,
.ui-slider {
    width: 100%;
    height: 6px;
    border: none !important;
    border-radius: 100px !important;
    background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%) !important;
    position: relative;
    margin: 2rem 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

html[data-theme="light"] .slider-container-1 #slider-range,
html[data-theme="light"] .ui-slider {
    background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.05) 100%) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Slider Range (filled section between handles) */
.ui-slider-range {
    background: linear-gradient(90deg, #2563a8 0%, #3b82f6 50%, #2f6ed5 100%) !important;
    height: 6px;
    position: absolute;
    border-radius: 100px;
    transform: translateY(0);
    box-shadow: 0 0 12px rgba(47, 110, 213, 0.4);
}

/* Slider Handle - Original SVG Design */
.ui-slider-handle {
    width: 40px;
    height: 40px;
    background: url(../../images/svg/slider-handle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: grab;
    position: absolute;
    top: 4px;
    display: block;
    transform: translate(-2px, -20px);
    z-index: 2;
    transition: transform 0.15s ease, filter 0.2s ease;
}

.ui-slider-handle:hover {
    filter: brightness(1.1);
    transform: translate(-2px, -20px) scale(1.05);
}

.ui-slider-handle:active {
    cursor: grabbing;
    transform: translate(-2px, -20px) scale(1.1);
}

.ui-slider-handle:focus {
    outline: none;
}

/* Value Tooltips - Modern Pill Design */
.input-range-container .current-value {
    position: absolute;
    top: -45px;
    padding: 0.5rem 1rem;
    min-width: 50px;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2563a8 0%, #2f6ed5 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 168, 0.3);
    z-index: 10;
    transition: transform 0.1s ease;
}

/* Pointer removed for cleaner look */
.input-range-container .current-value::after {
    display: none;
}

/* ==========================================================================
   SLIDER INPUT FIELDS - Modern Styling
   ========================================================================== */

.slider-container-1 .form-1 {
    margin-top: 3rem;
}

.slider-container-1 .form-1 .input-group {
    flex: 1;
    position: relative;
}

.slider-container-1 .form-1 .select-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-2);
    margin-bottom: 0.5rem;
}

.slider-container-1 .form-1 .search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 41, 52, 0.6) 0%, rgba(24, 29, 37, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-1);
    transition: all 0.2s ease;
}

.slider-container-1 .form-1 .search-input:focus {
    outline: none;
    border-color: rgba(47, 110, 213, 0.5);
    box-shadow: 0 0 0 3px rgba(47, 110, 213, 0.15);
}

html[data-theme="light"] .slider-container-1 .form-1 .search-input {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--color-text-1);
}

html[data-theme="light"] .slider-container-1 .form-1 .search-input:focus {
    border-color: rgba(47, 110, 213, 0.4);
    box-shadow: 0 0 0 3px rgba(47, 110, 213, 0.1);
}


/* ==========================================================================
   ADD TO CART POP-OVER
   ========================================================================== */

.add-to-cart-pop-over {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 8rem; /* Align with the breadcrumb/content container start */
    right: 24px;
    z-index: 32;
    width: 200px;
    color: var(--color-text-1);
    background: #222934;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #333d4c;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 16px;
}

html[data-theme="light"] .add-to-cart-pop-over {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.add-to-cart-pop-over:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

html[data-theme="light"] .add-to-cart-pop-over:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-container .total-price .discounted-price{
    position:relative;
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--color-dark-5);
}
.add-to-cart-pop-over .total-price .dash{
    position:absolute;
    top:50%;
    width:110%;
    height:2px;
    background-color:var(--highlight-red);
    transform:rotate(-15deg);
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}

.price-container .total-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: center;
    align-items: center;
}

.price-container .total-price .title {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--color-text-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-container .total-price .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-1);
    letter-spacing: -0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
}

.add-to-cart-btn {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563a8 0%, #2f6ed5 100%); /* Match navbar Register button */
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 168, 0.3);
    position: relative;
    border: none;
    letter-spacing: 0.3px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #2f6ed5 0%, #3d7de6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 110, 213, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 168, 0.3);
}

.add-to-cart-btn .notification {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background-color: var(--highlight-red);
    color: var(--highlight-white);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: var(--box-shadow-dark-1);
}

.add-to-cart-btn.disabled {
    background-color: #6c757d !important;
    color: #adb5bd !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.add-to-cart-btn.disabled:hover {
    background-color: #6c757d !important;
    color: #adb5bd !important;
}

/* Dark/Light mode specific adjustments */
@media (prefers-color-scheme: light) {
    .add-to-cart-pop-over {
        background: var(--bg-color-3);
        border: 1px solid var(--accent-1);
    }
}


/* ==========================================================================
   TRUSTPILOT SHOWCASE
   ========================================================================== */

.service-wrapper .trustpilot-showcase-card {
    margin-top: 2rem;
    margin-bottom: 3.5rem;
    width: 100%;
    max-width: 85%;
}

.service-wrapper .trustpilot-showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-gradient-2);
    border: 1px solid rgba(75, 142, 242, 0.3);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: var(--box-shadow-dark-1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.service-wrapper .trustpilot-showcase-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-dark-3);
    border-color: var(--accent-2);
}

/* Main Content Layout */
.service-wrapper .trustpilot-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header Row - Icon + Title */
.service-wrapper .trustpilot-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Icon Circle */
.service-wrapper .trustpilot-icon-circle {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-wrapper .trustpilot-icon-circle i {
    font-size: 1.25rem;
    color: #00b67a;
}

/* Title in header row */
.service-wrapper .trustpilot-showcase-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-1);
    margin: 0;
    line-height: 1.2;
}

/* Description */
.service-wrapper .trustpilot-showcase-desc {
    font-size: 0.9rem;
    color: var(--color-text-2);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

/* Bottom Row - Stars + Button */
.service-wrapper .trustpilot-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-wrapper .trustpilot-showcase-stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
}

.service-wrapper .trustpilot-showcase-stars i {
    color: #ffc107;
}
.service-wrapper .trustpilot-showcase-stars .star-full { color: #ffc107; }
.service-wrapper .trustpilot-showcase-stars .star-half { color: #ffc107; }
.service-wrapper .trustpilot-showcase-stars .star-empty { color: rgba(255,255,255,0.25); }
html[data-theme='light'] .service-wrapper .trustpilot-showcase-stars .star-empty { color: rgba(0,0,0,0.2); }

.service-wrapper .trustpilot-showcase-stars .reviews-count {
    margin-left: 0.5rem;
    color: var(--color-text-2) !important;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9rem;
}

/* Prefer full count on wide screens; fall back to compact on smaller */
.service-wrapper .reviews-count-full { display: inline; }
.service-wrapper .reviews-count-compact { display: none; }

/* Reduce spacing when count is large; keep visual balance */
.service-wrapper .trustpilot-bottom-row {
    gap: 0.75rem;
}

.service-wrapper .trustpilot-divider {
    height: 32px;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

html[data-theme='light'] .service-wrapper .trustpilot-divider {
    background: rgba(0,0,0,0.08);
}

/* Action Button */
.service-wrapper .btn-trustpilot {
    background: linear-gradient(135deg, #2563a8 0%, #2f6ed5 100%); /* Match navbar Register button */
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-family: var(--font-family-1);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 168, 0.3);
}

.service-wrapper .btn-trustpilot:hover {
    background: linear-gradient(135deg, #2f6ed5 0%, #3d7de6 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(47, 110, 213, 0.4);
}

.service-wrapper .btn-trustpilot:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}

.service-wrapper .btn-trustpilot i {
    font-size: 0.75rem;
}

/* Light theme adjustments */
html[data-theme='light'] .service-wrapper .trustpilot-showcase-link {
    background: var(--bg-gradient-3);
    border-color: rgba(28, 117, 188, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html[data-theme='light'] .service-wrapper .trustpilot-showcase-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-1);
}

html[data-theme='light'] .service-wrapper .trustpilot-icon-circle {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 182, 122, 0.2);
}


/* ==========================================================================
   SERVICE COMPACT HEADER
   ========================================================================== */

/* Single-Line Service Header */
.service-compact-header {
    margin-bottom: 1.5rem;
}

/* Main Header Row - Game Info + Service Title on same line */
.service-header-main-row {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    min-height: 45px; /* Ensure consistent height */
}

/* Game Info Section - Left side */
.service-game-info-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0; /* Prevent shrinking */
    z-index: 2; /* Above the centered title */
}

/* Compact Game Icon */
.compact-game-icon {
    width: 45px;
    height: 45px;
    border-radius: 0.375rem;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent-2);
    box-shadow: 0 2px 6px rgba(75, 142, 242, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.compact-game-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(75, 142, 242, 0.25);
}

.compact-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Game Name */
.compact-game-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-1);
    margin: 0;
    font-family: var(--font-family-1);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1.2;
    white-space: nowrap; /* Prevent wrapping */
}

.compact-game-name:hover {
    color: var(--accent-2);
}

/* Service Title - Absolutely centered to full container */
.service-title-inline {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 1; /* Behind the game info */
}

.compact-service-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-family-1);
    line-height: 1.1;
    color: var(--color-text-1); /* Use theme text color instead of gradient */
}

/* Breadcrumbs Row - Full width underneath */
.service-breadcrumbs-below {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

/* Light theme adjustments */
html[data-theme='light'] .compact-game-icon {
    border-color: var(--accent-1);
    box-shadow: 0 2px 6px rgba(28, 117, 188, 0.12);
}

html[data-theme='light'] .compact-game-icon:hover {
    box-shadow: 0 3px 10px rgba(28, 117, 188, 0.2);
}

/* Dark theme - white text */
html[data-theme='dark'] .compact-service-title {
    color: var(--color-text-1); /* White text for dark theme */
}

/* Light theme - dark text */
html[data-theme='light'] .compact-service-title {
    color: var(--color-dark-1); /* Dark text for light theme */
}


/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Responsive adjustments */
@media (max-width: 992px) {
    .add-to-cart-pop-over {
        top: auto;
        bottom: 20px;
        right: 20px;
        width: 180px;
    }
    
    /* Ensure stars and count wrap gracefully on smaller widths */
    .service-wrapper .trustpilot-bottom-row {
        flex-wrap: wrap;
    }
}

/* Mobile - Fixed bottom bar like old design */
@media (max-width: 768px) {
    /* Service Type 1 - Double Slider Mobile Layout */
    .service-6-double-slider-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .service-6-badge-wrapper {
        width: 100%;
        display: none; /* Hide the label cards on mobile - use the input labels instead */
    }
    
    .service-6-badge-wrapper .service-6-badge-container {
        width: 100%;
        padding: 0.5rem 1rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .service-6-badge-container .section-2 {
        margin-bottom: 0;
    }
    
    .slider-container-1 .form-1 {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-top: 0 !important;
    }
    
    .slider-container-1 .form-1 .search-input {
        font-size: 1.125rem;
        padding: 0.875rem 1rem;
    }
    
    .service-6-connector {
        display: flex !important;
        padding: 0.25rem 0;
    }
    
    .service-6-connector i {
        transform: rotate(0deg);
        font-size: 1rem;
    }
    
    .input-range-container .current-value {
        top: -40px;
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    /* Reduce slider section wrapper padding on mobile */
    .service-wrapper:has(.service-6-double-slider-container) {
        padding-top: 0.5rem !important;
        padding-bottom: 1.5rem !important; /* More space below input section */
    }
    
    /* Reduce Service Options section padding on mobile */
    .service-wrapper:has(.service-6-double-slider-container) + .service-wrapper {
        margin-top: 0 !important; /* Less space above Service Options */
        padding: 1rem !important;
    }
    
    .add-to-cart-pop-over {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        gap: 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        transform: none !important; /* Disable hover transform on mobile */
    }
    
    .add-to-cart-pop-over:hover {
        transform: none;
    }
    
    .add-to-cart-pop-over .price-container {
        margin-bottom: 0;
        flex: 1 1 auto;
        width: auto !important;
        justify-content: flex-start;
    }
    
    .add-to-cart-pop-over .price-container .total-price {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 2px;
        flex: 0 0 auto;
        text-align: left;
    }
    
    .add-to-cart-pop-over .total-price .title {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
    }
    
    html[data-theme="light"] .add-to-cart-pop-over .total-price .title {
        color: rgba(0, 0, 0, 0.5);
    }
    
    .add-to-cart-pop-over .total-price .value {
        font-size: 22px !important;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -0.5px;
    }
    
    .add-to-cart-pop-over .add-to-cart-btn {
        flex: 0 0 auto;
        width: auto !important;
        height: 44px;
        padding: 0 28px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(37, 99, 168, 0.35);
    }

    .price-container .price-icon {
        display: none; /* Hide icon on mobile for cleaner look */
    }
    
    /* Add padding to body so content doesn't hide behind fixed bar */
    body:has(.add-to-cart-pop-over) {
        padding-bottom: 70px;
    }
    
    /* Trustpilot responsive */
    .service-wrapper .trustpilot-showcase-card {
        max-width: 100%;
        margin-bottom: 2.5rem;
    }

    .service-wrapper .trustpilot-showcase-link {
        padding: 1.5rem;
    }

    .service-wrapper .trustpilot-bottom-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .service-wrapper .trustpilot-divider {
        display: none;
    }

    .service-wrapper .trustpilot-showcase-stars {
        justify-content: center;
    }

    .service-wrapper .btn-trustpilot {
        justify-content: center;
        width: 100%;
    }
    
    /* Service header responsive */
    .service-header-main-row {
        margin-bottom: 0.875rem;
        min-height: 40px;
    }

    .service-game-info-left {
        gap: 0.625rem;
    }

    .compact-game-icon {
        width: 40px;
        height: 40px;
    }

    .compact-game-name {
        font-size: 0.9rem;
    }

    .compact-service-title {
        font-size: 1.5rem;
    }

    .service-breadcrumbs-below {
        margin-bottom: 0.375rem;
    }
}

/* iPads, Tablets - min-width: 768px */
@media (min-width: 768px) {
    /*-------------------- Service Type 1 - Double Slider (Redesigned) --------------------*/
    /* Desktop - Horizontal card layout */
    .service-6-double-slider-container {
        flex-direction: row;
        gap: 4rem;
        padding: 2rem;
        height: auto;
        min-height: auto;
    }
    
    .service-6-badge-wrapper {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .service-6-badge-wrapper.pos-1,
    .service-6-badge-wrapper.pos-2 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .service-6-badge-wrapper .service-6-badge-container {
        transform: none;
        padding: 0.875rem 2rem;
    }
    
    .service-6-connector {
        display: none;
    }
    /*-------------------- Service Type 1 End --------------------*/
}

/* Small screens, laptops - min-width: 1024px */
@media (min-width: 1024px) {
    .header-wrapper{
        display: flex;
    }
    .mount{
        width: 400px;
        position: relative;
        margin-inline:auto;
    }

    .service-inputs{
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        display: grid;
        gap: 1rem;
        width: 100%;
        position: relative;
    }
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .service-header-main-row {
        margin-bottom: 0.75rem;
        min-height: 36px;
    }

    .service-game-info-left {
        gap: 0.5rem;
    }

    .compact-game-icon {
        width: 36px;
        height: 36px;
    }

    .compact-game-name {
        font-size: 0.85rem;
    }

    .compact-service-title {
        font-size: 1.25rem;
    }

    .service-breadcrumbs-below {
        margin-bottom: 0.25rem;
    }
    
    /* Mobile bottom bar - smaller screens */
    .add-to-cart-pop-over {
        padding: 12px 16px;
    }
    
    .add-to-cart-pop-over .total-price .title {
        font-size: 10px;
    }
    
    .add-to-cart-pop-over .total-price .value {
        font-size: 18px !important;
    }
    
    .add-to-cart-pop-over .add-to-cart-btn {
        height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .service-wrapper .reviews-count-full { display: none; }
    .service-wrapper .reviews-count-compact { display: inline; }
}

@media (max-width: 480px) {
    .service-wrapper .trustpilot-showcase-link {
        padding: 1.25rem;
    }

    .service-wrapper .trustpilot-header-row {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .service-wrapper .trustpilot-icon-circle {
        width: 40px;
        height: 40px;
    }

    .service-wrapper .trustpilot-icon-circle i {
        font-size: 1rem;
    }

    .service-wrapper .trustpilot-showcase-title {
        font-size: 1rem;
    }

    .service-wrapper .trustpilot-showcase-desc {
        font-size: 0.8rem;
        text-align: center;
    }

    .service-wrapper .btn-trustpilot {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Service header very small screens */
    .service-header-main-row {
        min-height: 32px;
    }

    .compact-service-title {
        font-size: 1.125rem;
        line-height: 1.2;
    }

    /* Allow game name to be shorter if needed */
    .compact-game-name {
        font-size: 0.8rem;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ==========================================================================
   Tooltips - Modern Popover Style
   ========================================================================== */

/* Tooltip container */
.tooltip-container {
    position: relative;
    display: inline-flex;
    z-index: 10;
}

/* Elevate tooltip container on hover so tooltip appears above everything */
.tooltip-container:hover {
    z-index: 9999 !important;
}

/* Tooltip icon - glowing question mark */
.tooltip-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47, 110, 213, 0.2) 0%, rgba(92, 154, 255, 0.1) 100%);
    border: 1.5px solid rgba(92, 154, 255, 0.4);
    color: #5c9aff;
    font-size: 0.6875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    transition: all 0.25s ease;
}

.tooltip-icon:hover {
    background: linear-gradient(135deg, rgba(47, 110, 213, 0.4) 0%, rgba(92, 154, 255, 0.25) 100%);
    border-color: #5c9aff;
    box-shadow: 0 0 12px rgba(92, 154, 255, 0.4);
    transform: scale(1.1);
}

/* Light theme tooltip icon */
html[data-theme="light"] .tooltip-icon {
    background: linear-gradient(135deg, rgba(47, 110, 213, 0.12) 0%, rgba(92, 154, 255, 0.06) 100%);
    border-color: rgba(47, 110, 213, 0.35);
    color: #2f6ed5;
}

html[data-theme="light"] .tooltip-icon:hover {
    background: linear-gradient(135deg, rgba(47, 110, 213, 0.2) 0%, rgba(92, 154, 255, 0.12) 100%);
    border-color: #2f6ed5;
    box-shadow: 0 0 12px rgba(47, 110, 213, 0.25);
}

/* Tooltip text - centered popover style */
.tooltip-text {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #2a3241 0%, #222934 100%);
    border: 1px solid #3d4a5c;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #e8eaed;
    font-size: 0.8125rem;
    font-weight: 450;
    padding: 0.875rem 1rem;
    line-height: 1.55;
    min-width: 220px;
    max-width: 300px;
    white-space: normal;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

/* Accent top border */
.tooltip-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2f6ed5 0%, #5c9aff 100%);
    border-radius: 0 0 3px 3px;
}

/* Arrow for tooltip */
.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #222934;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

/* Show tooltip on hover */
.tooltip-container:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Light theme tooltip */
html[data-theme="light"] .tooltip-text {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-color: #e0e5eb;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #333d4c;
}

html[data-theme="light"] .tooltip-text::before {
    background: linear-gradient(90deg, #2f6ed5 0%, #4a8df0 100%);
}

html[data-theme="light"] .tooltip-text::after {
    border-top-color: #f8f9fa;
}

/* Tooltip positioning adjustments for edge cases */
.select-label-wrapper .tooltip-text {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
}

.select-label-wrapper:hover .tooltip-text {
    transform: translateX(-50%) translateY(0);
}

.select-label-wrapper .tooltip-text::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

/* Dropdown tooltip wrapper - centered in the button area */
.dropdown-tooltip-wrapper {
    position: absolute !important;
    right: 1rem !important;
    z-index: 20 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure tooltip container inside wrapper is also centered */
.dropdown-tooltip-wrapper .tooltip-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* For service input grid, align tooltip with button text */
.service-input-grid .select-1 .dropdown-tooltip-wrapper {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Ensure select-label-wrapper shows labels properly */
.select-label-wrapper {
    display: block;
}

/* Mobile tooltip fixes - prevent horizontal overflow */
@media (max-width: 768px) {
    .tooltip-text {
        max-width: calc(100vw - 40px);
        width: 200px;
        left: auto;
        right: 0;
        transform: translateY(8px);
    }
    
    .tooltip-container:hover .tooltip-text {
        transform: translateY(0);
    }
    
    .tooltip-text::after {
        left: auto;
        right: 12px;
        transform: none;
    }
    
    .select-label-wrapper .tooltip-text {
        left: auto;
        right: 0;
        transform: translateY(8px);
    }
    
    .select-label-wrapper:hover .tooltip-text {
        transform: translateY(0);
    }
    
    .select-label-wrapper .tooltip-text::after {
        left: auto;
        right: 12px;
        transform: none;
    }
}
