.single-service .icon-wrapper img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}
.single-offer-product.verticle .promo-img {
    width: 100%;
    height: 680px !important;
    object-fit: cover !important;
}
.single-offer-product .promo-img {
    width: 100%;
    height: 328px !important;
    object-fit: cover !important;
}

.gs-footer-section .footer-row .left-info .social-links a i {
    color: black;
    transition: all 0.3s;
}

.gs-footer-section .footer-row .left-info .social-links a:hover i {
    color: white;
}

#cardNumber,
#securityCode,
#expirationDate {
    height: 60px;
    transition: color 0.25s, background-color 0.25s, border-color 0.25s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
    color: #505050;
    font-size: 14px;
    padding: 0px 18px;
}

#cardNumber,
#securityCode,
#expirationDate {
    margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
    .single-offer-product .promo-img {
        height: 200px !important;
    }
    .single-offer-product.verticle .promo-img {
        height: 400px !important;
    }
}

.sidebar-active-color {
    color: #f4bc40 !important;
}

/* Global loader overlay */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

/* Loader animation */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Keyframes for spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Show the loader */
#global-loader.active {
    visibility: visible;
    opacity: 1;
}

 #liveSearchResults {
        z-index: 1000;
        max-height: 70vh;
        overflow-y: auto;
        display: none;
        position: absolute;
        top: 100%; /* Push below the input group */
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 0 0 6px 6px;
    }


    .live-search-item {
        display: flex;
        padding: 10px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .live-search-item:hover {
        background-color: #f9f9f9;
    }

    .live-search-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 12px;
    }

    .live-search-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .live-search-name {
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .live-search-price {
        color: #888;
        font-size: 13px;
    }

    @media (max-width: 768px) {
        .live-search-image {
            width: 50px;
            height: 50px;
        }

        .live-search-name {
            font-size: 13px;
        }

        .live-search-price {
            font-size: 12px;
        }
    }

