    /* PWA Test */
    /* Hide Home button in the browser */
    .pwa-only-button {
        display: none !important;
    }

    /* Show Home inside the PWA */
    @media (display-mode: standalone) {
        .pwa-only-button {
            display: inline-block !important;
        }

        /* Hide Install button in the PWA */
        #installWebAppID {
            display: none !important;
        }
    }

    /* PWA Test End */

    /* Container for the split layout */
    .slide-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 500px;
        /* Match the height you set in HTML */
        padding: 0 10%;
        gap: 40px;
        /* background: linear-gradient(180deg, #0c1e2c 0%, #091620 100%); */
        background-image: url(../images/promos-bg.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* Text Side */
    .slide-text {
        flex: 1;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        font-size: 80px;
        font-weight: 900;
        line-height: 1;
        color: #e9cb8b;
        margin: 0;
    }

    .swiper-slide__title {
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #fff;
    }

    .slide-description {
        font-size: 16px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Image Side */
    .slide-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide-image img {
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    }

    .slide-title {
        color: white;
    }


    .installGuide {
        margin-top: 80px;
    }

    .tabs-navigation {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin: 20px 0;
    }

    .tab-btn {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 10px 15px;
        transition: 0.3s;
        border-bottom: 3px solid transparent;
    }

    .tab-btn-active {
        border-bottom: 3px solid #e9cb8b;
        /* Adjust to match your theme red */
        font-weight: bold;
    }

    .tab-content {
        display: none;
        width: 100%;
    }

    .tab-content-active {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile guide */
    .spacer-top {
        margin-top: 15px;
    }

    .spacer-bottom {
        margin-bottom: 15px;
    }

    .step-text {
        color: white;
    }

    .steps-container {
        display: flex;
        flex-direction: row;
        gap: 15px;
        padding: 20px 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .steps-container::-webkit-scrollbar {
        display: none;
    }

    .step-card {
        flex: 0 0 80vw;
        max-width: 280px;
        height: 380px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        background-image: url(../images/promos-bg.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .steps-container::before,
    .steps-container::after {
        content: '';
        flex: 0 0 10vw;
    }

    .carousel-inner {
    overflow: hidden;
}

    @media (min-width: 992px) {
        .steps-container {
            overflow-x: visible;
            scroll-snap-type: none;
            justify-content: center;
            flex-wrap: wrap;
        }

        .step-card {
            flex: 0 0 200px;
            width: 200px;
            margin-bottom: 20px;
            height: 300px;
            scroll-snap-align: none;
        }

        .steps-container::before,
        .steps-container::after {
            display: none;
        }
    }

    .step-img-box {
        width: 100%;
        margin-top: auto;
    }

    .step-img-box img {
        width: 100%;
        max-height: 300px;
        object-fit: contain;
    }