/* Mobile Under Development Blocker */
.gp-mobile-blocker {
    display: none;
}

@media (max-width: 921px) {
    .gp-mobile-blocker {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        z-index: 99999999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
        text-align: center;
        font-family: 'Inter', sans-serif;
    }

    .gp-mobile-blocker-content {
        max-width: 320px;
    }

    .gp-mobile-blocker-icon {
        font-size: 48px;
        color: #d32029;
        /* Vepa Red */
        margin-bottom: 24px;
        animation: pulse 2s infinite;
    }

    .gp-mobile-blocker h1 {
        font-size: 24px;
        font-weight: 700;
        color: #2b2b2b;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .gp-mobile-blocker p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        50% {
            transform: scale(1.1);
            opacity: 0.8;
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Hide the bottom navigation and some common elements when blocker is active */
    .mobile-bottom-nav,
    #ast-mobile-header,
    .mobile-category-tabs-wrapper,
    .mobile-slider-container {
        display: none !important;
    }

    /* Prevent scrolling */
    body {
        overflow: hidden !important;
    }
}