/* ============================================ */
/* PREVIOUS MOBILE STATIC BANNER STYLES */
/* Kept commented for easy rollback */
/* Note: Nested media queries removed to avoid CSS parsing errors */
/* ============================================ */

/* 
PREVIOUS CODE - Uncomment if you need to restore mobile static banner:

.mobile-static-banner {
    display: none;
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .mobile-static-banner {
        display: block !important;
        width: 100% !important;
        height: 700px !important;
        overflow: hidden !important;
        z-index: 1 !important;
    }
    
    .mobile-banner-content h1 {
        font-family: "Bai Jamjuree", sans-serif;
        font-size: 28px !important;
        font-weight: 400 !important;
        color: rgb(88, 70, 140) !important;
        line-height: 36px !important;
        margin: 0 0 15px 0 !important;
    }
    
    .mobile-banner-content p {
        font-family: "Bai Jamjuree", sans-serif;
        font-size: 18px !important;
        font-weight: 300 !important;
        color: rgb(113, 108, 128) !important;
        line-height: 25px !important;
        text-align: center !important;
        margin: 0 0 25px 0 !important;
    }
    
    .mobile-banner-img {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
    }
    
    .mobile-banner-content {
        position: absolute !important;
        z-index: 2 !important;
        left: 0 !important;
        right: 0 !important;
        top: 35% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    .mobile-static-banner {
        height: 700px !important;
        width: 100% !important;
    }
    
    .mobile-banner-content {
        top: 45% !important;
    }
    
    .mobile-banner-content h1 {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    
    .mobile-banner-content p {
        font-size: 13px !important;
        line-height: 18px !important;
    }
    
    .mobile-banner-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
}
*/

/* Decorative Elements (HOME PAGE AND PRODUCTS) */
.pattern-layer-one,
.pattern-layer-two,
.color-circle {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.pattern-layer-one {
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
}

.pattern-layer-two {
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
}

.color-circle {
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}



.pattern-layer-one,
.pattern-layer-two,
.color-circle {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
    z-index: 0 !important;
}

.pattern-layer-one {
    top: 10%;
    right: -20px;
}

.pattern-layer-two {
    bottom: 0;
    left: -30px;
}



