.product_offers_main {
    background: #09246b;
    background: linear-gradient(135deg, #3200ff 0, rgb(163 13 13) 46%, #1c40f2 100%);
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 0;
    position: relative;
    margin: 2rem 0;
    flex-wrap: wrap;
}
/* Mobile-only: Ensure mobile menu has sufficient height */

/* Increase header height only on mobile */
@media (max-width: 991.98px) {

    .header-style-5 .container,
    .header-style-5 .row,
    .header-style-5 .sh-header-right,
    .header-style-5 {
        height: auto !important;
        /* Adjust this value as needed */
        display: flex;
        align-items: center;
    }

    /* Ensure content inside stays vertically centered */
    .header-style-5 .row {
        flex-wrap: nowrap;
    }

    /* Optional: Add more padding for touch-friendliness */
    .header-style-5 .logo-wrapper,
    .header-style-5 .sh-header-right button,
    .header-style-5 .mobile-menu-toggle {
        padding: 15px;
    }

    /* Make sure logo and buttons aren't compressed */
    .header-style-5 .logo {
        max-height: 40px;
        /* Prevent logo from growing too big */
    }
    .dark-light-switcher{
    height: 50px;
    }
        /* Global: Prevent horizontal scroll */
        html,
        body {
            overflow-x: hidden;
        }
    
        .container,
        .container-fluid {
            max-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }
}
/* Target footer subscribe form */
.footer-sb-form {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between input and button */
}

.footer-sb-form input[type="email"] {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: white;
    font-size: 14px;
}

.footer-sb-form button {
    height: 45px;
    min-height: 45px;
    padding: 0 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;

    /* Ensure it doesn't shrink */
    flex-shrink: 0;
}

/* Make sure button inherits line-height and box model */
.footer-sb-form button,
.footer-sb-form input {
    box-sizing: border-box;
    line-height: 1.4;
}
.footer-widget .footer-sb-form button{
    right: 0px;
}


