/* style.css */
/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--primary-color);
}
.cms-index-index .header-left .logo img {
    filter: invert(1);
}
.slick-slide .title img {
    width: 320px;
}
.columns{padding: 0px;}
.banner-slider .btn-primary{width: max-content;color: var(--secondary-color) !important;}
.banner-slider,
.slick-list,
.slick-track,
.slide-item {
    height: 100%;
}
.tab-btn.active:hover{border: 0}
.tab-btn.active{border: 0px;}

.slide-item {
    position: relative;
    height: 100%;
    display: flex !important;
    align-items: center;
}
.finance {
    background-color: #D0D7EB;
    text-align: center;
}
.catalogsearch-result-index .search{display: block;}
.catalogsearch-result-index .title{text-align: center;margin-bottom: 45px;}
.customer-account-logoutsuccess .column.main{text-align:center;}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg picture,
.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Linear Gradient Overlay for Desktop (Dark left side) */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.slide-content-wrapper {
    position: absolute;
    z-index: 3;
    left: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
}

.slide-content {
    max-width: 600px;
    color: var(--secondary-color);
}

.slide-content .subtitle {
    display: block;
    font-size: 24px;
    line-height: 24px;
    padding-bottom: 17px;
    color: var(--secondary-color);
}

.slide-content .title {
    margin-bottom: 30px;
    display: block;
}

.slide-content .year {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.banner-btn {
    width: 220px;
}

/* Slick Dots Customization */
.banner-section .slick-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.banner-section .slick-dots li {
    margin: 0;
    width: 10px;
    height: 10px;
}

.banner-section .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: var(--secondary-color);
    opacity: 0.4;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.banner-section .slick-dots li.slick-active button {
    opacity: 1;
    transform: scale(1.2);
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.float-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--secondary-color);
    color: var(--primary-color);
    font-size: 22px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
}

.float-icon:hover {
    background-color: var(--secondary-color);
    transform: translateX(-3px);
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .slide-content-wrapper {
        left: 50%;
        top: 5%;
        transform: translate(-50%, -5%);
    }
}

/* Responsive Banner Styles */
@media (max-width: 991px) {

    .slide-content-wrapper {
        left: 50%;
        top: 5%;
        transform: translate(-50%, -5%);
    }

    .banner-section {
        height: 64vh;
        padding-top: 55px;
        /* Offset for fixed header */
    }

    .slide-item {
        align-items: flex-start;
        padding-top: 100px;
    }

    /* Change gradient for mobile */
    .slide-content .title img {
        height: 30px;
        width: auto;
    }

    .slide-content {
        max-width: 400px;
        height: 100%;
    }

    .slide-content .subtitle {
        font-size: 16px;
        line-height: 16px;
    }

    .slide-content .title {
        margin-bottom: 15px;
    }

    .slide-content .year {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .banner-section .slick-dots {
        bottom: 20px;
    }

    .floating-icons {
        right: 10px;
        top: 65%;
    }

    .float-icon {
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .slide-content-wrapper .slide-content {
        height: 100%;
    }

    /* .slide-content-wrapper .btn-primary {
        margin-top: 60%;
    } */
}

@media (min-width: 992px) and (max-width: 1280px) {
    .slide-content .subtitle {
        font-size: 20px;
        line-height: 20px;
    }

    .slide-content .year {
        font-size: 32px;
        line-height: 32px;
    }

    .slick-slide .title img {
        width: 220px;
    }
}

/* Vehicle Selection Section */
.filters-row {
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-label {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #363636;
    padding-bottom: 2px;
    letter-spacing: 1px;
}

.tabs-container {
    display: flex;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
}

.tab-btn {
    background: transparent;
    border: none;
    border-right: 1px solid var(--primary-color) !important;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:last-child {
    border-right: none !important;
}

.tab-btn.active {
    background: var(--primary-color) !important;
    color: var(--secondary-color);
}

.tab-btn:hover:not(.active) {
    background: #f0f0f0;border: 0px;
}

/* Price Slider */
.filter-right {
    border: 1.5px solid var(--primary-color);
    border-radius: 3px;
    padding: 10px 20px;
}

.price-slider-widget {
    width: 375px;
}

.price-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #ddd;
    outline: none;
    margin: 8px 0;
    border-radius: 3px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-labels span {
    font-size: 12px;
    line-height: 22px;
    color: #000;
}
.slider-labels img{width: 10px;position: relative;top: -1px}

/*Minicart*/
.minicart-wrapper .minicart-items .product .toggle:after{font-size: 8px;}
.minicart-wrapper .minicart-items .product-item-name a{color: #000;}
.minicart-wrapper .minicart-items .product.options{font-size: 12px;padding: 10px 0 0 0;}
.minicart-wrapper .minicart-items .product .toggle{padding-bottom: 0px;}
.minicart-wrapper #top-cart-btn-checkout{display: inline-block;
    padding: 16px 25px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    background: var(--primary-color);}
.minicart-wrapper #top-cart-btn-checkout span{color: #fff;}

.minicart-wrapper .minicart-items .product-item-name {
    font-weight: 700;
    font-size: 16px;margin-bottom: 0px;
}
.minicart-items .item-qty{width: 50px;}
.minicart-wrapper .minicart-items .product-item-details .price img{width: 14px;}
.minicart-wrapper .minicart-items .product-item-details .price {
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    /* width: 100%; */
    flex-direction: row;
    font-size: 16px;
    align-items: center;
}

.minicart-wrapper .minicart-items .product-item-details .details-qty{margin: 0px;
        padding: 5px 0px;
        align-items: center;
        display: flex;font-size: 15px;
        gap: 10px;}
.minicart-wrapper .minicart-items .product-item-details {padding-left: 100px;}
.minicart-wrapper .minicart-items .update-cart-item{font-size: 13px;background: none;border: 0;text-decoration: underline;}
.minicart-wrapper .product .actions{margin:-38px 0 0;}


.signin_verification_popup #generate_otp, .signin_verification_popup #resend{display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    width: auto;
    text-align: center;
    background: none;}

.signin_verification_popup #continue-social-customer-phone{display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    width: auto;
    text-align: center;
    background: #000;}


.page.messages{max-width: 1800px;margin: auto;padding-inline: 3%;}
 .rfqcontactus-index-index .page.messages{padding-inline: 0px;}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-logo {
    height: 20px;
}
.card-logo img{height: 100%;}
.product-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    padding-block: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.1));
}

.card-info {
    text-align: left;
    width: 100%;
    padding-bottom: 25px;
}

.price-text {
    font-size: 16px;
    line-height: 16px;
    color: #424242;
    padding-bottom: 5px;
}

.price-text span {
    color: var(--primary-color);
}

.vat-text {
    font-size: 16px;
    line-height: 16px;
    color: #424242;
}

.card-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-outline {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #ddd;
    color: #333;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: #f9f9f9;
}

.view-more-container {
    text-align: center;
    padding-top: 70px;
}

.btn-primary.btn-view_more {
    width: 210px;color: #fff;
}

.filter-btn {
    display: none;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .filter-label {
        display: none;
    }

    .tab-btn {
        padding: 12px;
        font-size: 12px;
        line-height: 16px;
        width: 100%;
        min-width: 130px;
    }

    .for-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }



    .filter-right {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 10000;
        justify-content: center;
        align-items: flex-end;
    }

    .filter-right.active {
        display: flex;
    }

    .filter-popup-content {
        background: var(--secondary-color);
        width: 100%;
        padding: 50px 20px 30px;
        border-radius: 20px 20px 0 0;
        position: relative;
        animation: slideUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .close-popup {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        color: var(--primary-color);
        font-weight: 500;
        padding: 0px;
    }

    .price-slider-widget {
        width: 100% !important;
    }

    .apply-filter-btn {
        width: 100%;
        margin-top: 25px;
        font-weight: 700;
        padding: 15px;
    }

    .filters-row {
        padding-bottom: 20px;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .price-text, .vat-text {
        font-size: 13px;
        line-height: 16px;
    }


    .card-actions {
        gap: 5px;
    }

    .btn-primary.filter-btn {
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #737373;
    }

    .view-more-container {
        text-align: center;
        padding-top: 30px;
    }
}

@media screen and (max-width: 400px) {
    .tab-btn {
        padding: 10px;
        font-size: 10px;
        min-width: 105px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-actions {
        flex-direction: column;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .filters-row {
        padding-bottom: 50px;
    }

    .products-grid {
        gap: 40px;
    }

    .price-text,
    .vat-text {
        font-size: 15px;
        line-height: 15px;
    }

    .tab-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .filter-right {
        padding: 8px 15px;
    }

    .price-slider-widget {
        width: 260px;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
    .products-grid {
        gap: 50px;
    }
}

/* Desktop Visibility Fix for Popup Components */
@media screen and (min-width: 992px) {

    .close-popup,
    .apply-filter-btn,
    .filter-mobile {
        display: none !important;
    }
}

/* Prevent scrolling when popup is open */
body.popup-open {
    overflow: hidden;
}


/* Financing Options Available */
/*.finance {
    background-color: #D0D7EB;
    text-align: center;
}*/
.finance-btn{text-align: center;}

.banner img {
    width: 100%;
    object-fit: cover;
}

.finance .main-heading {
    padding-bottom: 30px;
}

.icon-with-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-block: 25px 40px;
}

.icon-with-text .block {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #404040;
    font-size: 16px;
    line-height: 22px;margin: 0px;
}

.main_container.brand-logos {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
    flex-wrap: wrap;
}

.finance-btn a {
    width: 230px;
    margin-top: 50px;
    padding: 15px 30px;
}


@media (max-width: 991px) {
    .icon-with-text {
        gap: 15px;
        padding-block: 15px;
    }

    .icon-with-text .block {
        gap: 2px;
        font-size: 11px;
        line-height: 18px;
    }

    .brand-logos {
        gap: 20px 40px;
        justify-content: center;
        margin-top: 20px;
    }

    .brand-logos .logo img {
        width: 100px;
    }

    .finance-btn a {
        margin-top: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .finance-btn a {
        width: 200px;
        margin-top: 30px;
        padding: 10px 25px;
        font-size: 14px;
    }

    .brand-logos {
        gap: 15px;
        margin-top: 30px;
    }

    .brand-logos .logo {
        width: 105px;
    }
}

@media (min-width: 1281px) and (max-width: 1440px) {
    .brand-logos .logo {
        width: 120px;
    }
}

/* Geely Wallan Offers Section */
.offers-section {
    background: #F4F4F4;
    overflow: hidden;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.offers-left {
    width: 60%;
    position: relative;
    padding: 0;
}

.offers-slider {
    width: 100%;
    height: 100%;
}

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

.offer-slide img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42.66%, #000000 78.87%);

}

.offers-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 70px;
    background: #EDECEC;
}
/*.offers-right .offers-btn{width: auto;}*/

.offers-content {
    max-width: 500px;
}

.offers-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offers-text {
    font-size: 16px;
    line-height: 1.6;
    color: #404040;
    margin-bottom: 40px;
}

.offers-text p {
    margin-bottom: 20px;
}

.offers-text p:last-child {
    margin-bottom: 0;
}

.offers-right .offers-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    width: 250px;
    transition: all 0.3s ease;
}

.offers-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.offers-slider .slick-dots li {
    margin: 0;
    width: 10px;
    height: 10px;
    list-style: none;
}

.offers-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: var(--secondary-color);
    opacity: 0.5;
    border-radius: 50%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.offers-slider .slick-dots li.slick-active button {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .offers-text {
        display: none;
    }

    .offers-container {
        position: relative;
    }

    .offers-left,
    .offers-right {
        width: 100%;
    }

    .offers-right {
        padding: 20px;
        position: absolute;
        top: 5%;
        left: 5%;
        transform: translate(-5%, -5%);
        background: transparent;
        text-align: center;
    }

    .offers-content {
        max-width: 100%;
    }

    .offers-heading {
        font-size: 22px;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .offers-text p {
        color: var(--secondary-color);
    }

    .offers-right .offers-btn {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .offers-right {
        padding: 30px;
        top: 1%;
    }

    .offers-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .offers-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .offers-right {
        padding: 30px;
    }

    .offers-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .offers-text {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .offers-right .offers-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 200px;
    }
}

/* Customer Care Section */
.customer-care {
    background: var(--secondary-color);
}

.customer-care .main-heading {
    padding-bottom: 30px;
}

.customer-care-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

.customer-care-text p {
    margin-bottom: 5px;
    color: #404040;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.care-card {
    background: #EDECEC;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.care-card-inner {
    display: block;
}

.care-icon {
    margin-bottom: 50px;
}

.care-icon.mobile-icon {
    display: none;
}

.care-info .care-title {
    font-size: 20px;
    line-height: 22px;
    color: #242B3B;
    margin-bottom: 10px;
    font-family: 'Inter';
}

.care-info .care-desc {
    font-size: 16px;
    line-height: 24px;
    color: #535252;
    font-weight: 300;
}

.care-arrow {
    display: none;
}

@media (max-width: 991px) {
    .care-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .care-card {
        padding: 12px;
    }

    .care-icon {
        margin-bottom: 30px;
    }

    .care-info .care-title {
        font-size: 16px;
        line-height: 20px;
    }
}
.action.view:after{display: none !important;}
.action.order{display: none;}

@media (max-width: 767px) {
    .customer-care-text {
        text-align: center;
        font-size: 15px;
        margin-bottom: 30px;
    }
    .modal-popup .social-login-row .social-login .btn-social span{display: none;}
    .card-info .price-text span{display: inline-block;}
    .signed_out{padding: 20px;}
    .signed_out .title{font-size: 20px;
    padding-bottom: 20px;}
    .minicart-wrapper .product .actions {margin: 0px 0 0;}
    .care-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .care-card {
        background: transparent;
        border-radius: 0;
        padding: 25px 0;
        border-bottom: 1px solid #E5E5E5;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .care-card-inner {
        display: flex;
        align-items: center;
    }

    .care-icon {
        margin-bottom: 0;
    }

    .care-icon.desktop-icon {
        display: none;
    }

    .care-icon.mobile-icon {
        display: flex;
        align-items: center;
        margin-right: 20px;
    }

    .care-info {
        flex: 1;
        text-align: left;
    }

    .care-info .care-desc {
        display: none;
    }

    .care-info .care-title {
        margin-bottom: 0;
        font-size: 18px;
        color: #1A1A1A;
    }

    .care-arrow {
        display: flex;
        align-items: center;
        margin-left: 15px;
        color: #333;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .care-icon {
        margin-bottom: 25px;
    }

    .care-info .care-title {
        font-size: 16px;
        line-height: 20px;
    }

    .care-info .care-desc {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Desktop and Mobile Utility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Why Buy Section */
.why-buy-text-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 30px;
    text-align: center;
}

.why-buy-desc {
    font-size: 16px;
    line-height: 26px;
    color: #404040;
    margin-bottom: 25px;
}

.btn-primary.btn-black {
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 220px;
    display: inline-flex;
    justify-content: center;
}

.why-img {
    width: 100%;
    display: block;
}

.why-buy-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.wb-card {
    background: #F5F2EF;
    padding: 25px;
    border-radius: 8px;
    border: 0.5px solid #CBC1B8;
}

.wb-card:nth-child(3) svg path {
    fill: var(--secondary-color);
}

.wb-icon {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 5px;
}

.wb-title {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary-color);
    text-align: left;
    font-family: 'Inter';
}

.wb-title span.desktop-only {
    display: inline-block;
}

.wb-desc {
    font-size: 15px;
    line-height: 22px;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 0;
    font-weight: 300;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        width: fit-content;
        margin-inline: auto;
        padding-bottom: 30px;
    }

    .mobile-only .btn-primary {
        background: var(--secondary-color);
        color: var(--primary-color);
        border: 1px solid var(--secondary-color);
    }
    .mobile-only .btn-primary:visited{color: var(--primary-color);}

    .why-buy-banner {
        position: relative;
    }

    .why-buy-section .main_container {
        padding: 0;
    }

    .why-buy-banner::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(179.99deg, rgba(21, 18, 23, 0) 63.73%, #151217 78.47%);
    }

    .mobile-main-heading {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        color: var(--secondary-color);
        z-index: 10;
        font-size: 18px;
        line-height: 28px;
    }

    .why-buy-cards-wrapper {
        background: linear-gradient(359deg, rgba(0, 0, 0, 0) -52.97%, #151217 54.83%);
        padding: 20px;
        padding-top: 0;
    }

    .why-buy-cards {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: -90px;
        position: relative;
        z-index: 2;
    }

    .wb-card {
        background: transparent;
        border-radius: 0;
        padding: 0;
        border: none;
        display: block;
        position: relative;
    }

    .wb-icon {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        padding-top: 25px;
        padding-bottom: 5px;
    }

    .wb-icon svg path {
        stroke: var(--secondary-color);
    }

    .wb-title {
        color: var(--secondary-color);
        font-size: 16px;
        margin-bottom: 0;
    }

    .wb-info {
        padding-left: 39px;
        padding-bottom: 25px;
        position: relative;
    }

    .wb-info::before {
        content: '';
        position: absolute;
        left: 11.5px;
        top: 0;
        bottom: 0px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.3);
    }

    .wb-card:last-child .wb-info::before {
        display: none;
    }

    .wb-desc {
        text-align: left;
        color: #e0e0e0;
        font-size: 14px;
        line-height: 22px;
        margin: 0;
    }

    .mt-mobile-btn {
        padding-top: 30px;
        position: relative;
        z-index: 2;
    }

    .mobile-btn.bg-white {
        background: var(--secondary-color);
        color: var(--primary-color);
        border: none;
        display: flex;
        justify-content: center;
        width: 100%;
        font-weight: bold;
        padding: 15px;
        border-radius: 4px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {}

@media (min-width: 992px) and (max-width: 1280px) {
    .wb-title {
        font-size: 15px;
    }

    .wb-desc {
        font-size: 13px;
    }

    .wb-card {
        padding: 16px;
    }
}


/* =============================================
   Cookie Consent Bar
   ============================================= */
.message.global.cookie{background: none;}
.message.global.cookie.cookie-bar.main_container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    bottom: 20px;
    z-index: 9998;
    padding: 15px 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.message.global.cookie.cookie-bar.main_container .btn-primary{display: inline-block;
        padding: 16px 25px;
        font-size: 16px;
        line-height: 18px;
        font-weight: 400;
        border: 1px solid var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;background: var(--primary-color);
        color: var(--secondary-color);}



.cookie-bar.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: #ffffff;
    box-shadow: 0px 4px 16px 0px #00000040;
    border-radius: 8px;
    padding: 15px;
    width: 80%;
    margin-inline: 20px;
}
.signed_out .title{font-size: 36px;
    padding-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;}


.cookie-bar__text {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    width: 80%;
}

.cookie-bar__text a {
    color: #000;
    text-decoration: none;
}

.cookie-bar__text a:hover {
    text-decoration: underline;
}

.cookie-bar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    /* flex-shrink: 0; */
    flex: 1;
}

.cookie-bar__btn {
    max-width: 170px;
    width: 100%;
}


/* ---- Responsive ---- */

@media (min-width: 1281px) and (max-width: 1440px) {
    .cookie-bar__inner {
        flex-direction: column;
    }

    .cookie-bar__actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-bar__text {
        width: 70%;
    }
}

@media (max-width: 1280px) {
    .cookie-bar__inner {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-inline: 12px;
        padding-inline: 12px;
    }

    .cookie-bar__text {
        width: 100%;
        text-align: center;
    }


    .cookie-bar__actions {
        justify-content: center;
        width: 100%;
    }


}

@media (max-width: 768px) {

    .cookie-bar {
        margin-inline: 5px;
        padding: 5px;
    }

    .cookie-bar__inner {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-inline: 10px;
        padding-inline: 10px;
    }

    .cookie-bar__text {
        font-size: 12px;
        text-align: center;
        width: 100%;
    }

    .cookie-bar__actions {
        justify-content: center;
        width: 100%;
    }

    .cookie-bar__btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
.modal-popup.modal-slide._inner-scroll._show.share .modal-inner-wrap {
       margin: 5rem auto;
    max-width: max-content !important;
    min-width: auto;
    min-height: auto;
    top: unset;
    transform: unset;
    left: 0;
}


@media (max-width: 1023px) {
    .cms-index-index .header-left .logo img{filter: invert(0);}
    .section_padding.finance{text-align: center;}
    .main_container.brand-logos .logo{float: unset;margin: unset;max-width: unset;}
    .main_container.brand-logos{justify-content: center;}
    [data-pushbar-direction="right"][data-pushbar-id], [data-pushbar-direction="left"][data-pushbar-id]{max-width: 45%;}
    .share-modal {padding: 40px 10px 30px !important;}



}
