#fw-section-custom-html-8b0f695d-7933-43a6-bad1-3334f41d291f {

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }
        
        .banner-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-right: 16px;
            padding-left: 16px;
            padding-top: 48px;
            padding-bottom: 48px;
        }

        @media (min-width: 640px) {
            .banner-container {
                padding-right: 32px;
                padding-left: 32px;
            }
        }

        @media (min-width: 1280px) {
            .banner-container {
                padding-right: 0px;
                padding-left: 0px;
            }
        }
        
        .sale-banner {
            display: flex;
            width: 100%;
            border-radius: 16px;
            background-color: #0d1117;
            border: 3px solid rgb(18, 34, 46);
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .banner-content {
            display: flex;
            width: 100%;
            align-items: center;
        }
        
        .banner-text-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            position: relative;
            z-index: 2;
        }
        
        .sale-label {
            background-color: #38bdf8;
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 16px;
            box-shadow: 0 4px 6px rgba(56, 189, 248, 0.2);
        }
        
        .new-arrivals-text {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            text-align: center;
            line-height: 1.2;
        }
        
        .on-sale-text {
            font-size: 22px;
            font-weight: 600;
            color: #38bdf8;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .banner-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            text-align: center;
            max-width: 90%;
        }
        
        .shop-button {
            display: inline-flex;
            align-items: center;
            background-color: transparent;
            border: 2px solid #38bdf8;
            color: #38bdf8;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .shop-button:hover {
            background-color: #38bdf8;
            color: #0d1117;
        }
        
        .shop-button-icon {
            margin-left: 8px;
        }
        
        .banner-image-container {
            flex: 0 0 35%;
            position: relative;
            padding: 20px;
        }
        
        .image-frame {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 12px;
            border: 3px solid #30363d;
            position: relative;
            transition: border-color 0.3s ease;
        }
        
        .banner-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .sale-banner:hover .banner-image {
            transform: scale(1.05);
        }
        
        .decorative-element {
            position: absolute;
            background: #38bdf8;
            opacity: 0.1;
            z-index: 1;
        }
        
        .element-1 {
            width: 150px;
            height: 150px;
            top: -50px;
            left: -50px;
            border-radius: 30px;
            transform: rotate(45deg);
        }
        
        .element-2 {
            width: 100px;
            height: 100px;
            bottom: -30px;
            right: 30%;
            border-radius: 50%;
        }
        
        @media (max-width: 768px) {
            .banner-content {
                flex-direction: column;
            }
            
            .banner-text-container {
                padding: 25px 20px 15px 20px;
            }
            
            .new-arrivals-text {
                font-size: 26px;
            }
            
            .on-sale-text {
                font-size: 20px;
            }
            
            .banner-description {
                margin: 0 auto 20px auto;
            }
            
            .banner-image-container {
                width: 100%;
                padding: 0 20px 25px 20px;
            }
            
            .image-frame {
                height: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .new-arrivals-text {
                font-size: 22px;
            }
            
            .on-sale-text {
                font-size: 18px;
            }
            
            .banner-description {
                font-size: 14px;
            }
            
            .image-frame {
                height: 180px;
            }
        }
}