
        body {
            background-color: #f5f5f5;
        }
        
        /* ===== HERO CONTAINER ===== */
        .hero-container {
            display: flex;
            width: 100%;
            max-width: 1200px;
            margin: 5px auto 0;
            gap: 10px;
        }
        
        /* ===== HERO SLIDER ===== */
        .hero-slider {
            position: relative;
            width: 70%;
            height: 350px;
            overflow: hidden;
            border-radius: 5px;
        }
        .swiper {
            width: 70%;
            height: 350px;
        }

        .slide {
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .slide-content {
            position: absolute;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            max-width: 350px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .slide-content h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .slide-content p {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .slide-btn {
             background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 3px;
            font-weight: 600;
            font-size: 0.8rem;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }

        .slide-btn:hover {
             background-color: var(--primary-color);
        }

        .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background-color 0.3s;
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background-color: white;
        } 

        .swiper-button-prev,
        .swiper-button-next {
            background-color: rgba(0,0,0,0.3);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
            margin: 0 10px;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background-color: rgba(0,0,0,0.6);
        }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 1rem;
            color: white;
        }

        .swiper-button-prev:after {
            content: "\f053";
        }

        .swiper-button-next:after {
            content: "\f054";
        }
        
        /* ===== RIGHT SIDE IMAGES ===== */
        .right-images {
            width: 30%;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .right-image {
            height: calc(25% - 7.5px);
            background-size: cover;
            background-position: center;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            flex: 1;
        }
        
        .right-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        }
        
        .right-image-content {
            position: absolute;
            bottom: 10px;
            left: 10px;
            color: white;
            z-index: 1;
        }
        
        .right-image-content h3 {
            font-size: 0.9rem;
            margin-bottom: 3px;
            font-weight: 600;
        }
        
        .right-image-content p {
            font-size: 0.7rem;
        }
        
        /* Quick Links Section */
        .section2 {
            padding: 15px 10px;
            display: flex;
            justify-content: space-evenly;
            flex-wrap: wrap;
            gap: 10px;
        }

        .section2 div {
            padding: 8px;
            display: flex;
            width: 140px;
            box-shadow: 0 1px 5px rgba(128, 128, 128, 0.3);
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 3px;
            background: white;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .section2 div:hover {
            transform: translateY(-3px);
        }

        .section2 div i {
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .section2 div p {
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Deals Section */
        .deals, .featured, .konga-mall {
            padding: 15px 10px;
            width: 90%;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            background-color: var(--primary-color);
            padding: 8px 15px;
            border-radius: 5px;
        }

        .section-header h2 {
            font-size: 1.2rem;
            color: white;
        }

        .see-all {
            color: white;
            font-weight: bold;
            text-decoration: none;
            font-size: 0.8rem;
        }

        /* Container styles with horizontal scroll */
        .deals-container, .products-container, .mall-container {
            display: flex;
            gap: 15px;
            padding: 15px 5px;
            background: white;
            border-radius: 5px;
            overflow-x: auto;
            scrollbar-width: thin; /* For Firefox */
            scroll-behavior: smooth; /* Smooth scrolling */
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        }

        /* Hide scrollbar for cleaner look (optional) */
        .deals-container::-webkit-scrollbar,
        .products-container::-webkit-scrollbar,
        .mall-container::-webkit-scrollbar {
            height: 5px;
        }

        .deals-container::-webkit-scrollbar-thumb,
        .products-container::-webkit-scrollbar-thumb,
        .mall-container::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }

        /* Product card styles with fixed width */
        .deal-card, .product-card {
            background-color: white;
            border-radius: 5px;
            padding: 10px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s;
            width: 250px; /* Fixed width */
            flex: 0 0 auto; /* Don't grow or shrink */
            min-height: 100%; /* Consistent height */
        }

        /* Product image container */
        .product-image {
            height: 130px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            border-radius: 3px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%; 
            object-fit: cover;
        }

        .product-info h3 {
            font-size: 0.8rem;
            margin-bottom: 8px;
            height: 36px;
            overflow: hidden;
            color: #333;
        }

        .price {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 4px;
        }

        .current-price {
            font-size: 0.9rem;
            font-weight: bold;
            color:var(--primary-color);
        }

        .old-price {
            font-size: 0.7rem;
            text-decoration: line-through;
            color: #999;
        }

        .discount {
            
            background-color: #ff5100;
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 0.6rem;
            font-weight: bold;
        }

        /* Product Actions */
        .product-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        .add-to-cart {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            flex-grow: 1;
            width: 100%;
            transition: background-color 0.3s;
        }

        .add-to-cart:hover {
            background: transparent;
            border:2px solid #1a3a5f;
            Color:#1a3a5f;
            transform: translateY(-3px);
        }

        .wishlist-btn {
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 18px;
            margin-left: 10px;
            transition: color 0.3s;
        }

        .wishlist-btn:hover {
            color: var(--primary-color);
        }

        /* Countdown Timer */
        .countdown-timer{
            font-size: 15px;
        }
        .time-remaining{
            font-size: 13px;
            margin-left:10px
        }

        /* Badges */
        .new-badge {
            position: absolute;
            top: 14px;
            right: 12px;
            background-color: #28a745; /* Green */
            color: white;
            padding: 3px 6px;
            border-radius: 3px;
            font-size: 13px;
            font-weight: bold;
            z-index: 10;
        }

        /* Services Section */
        .services {
            display: flex;
            justify-content: space-around;
            padding: 20px 10px;
            background-color: white;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
            border-top: 1px solid #eee;
        }

        .service-item {
            text-align: center;
            flex: 1;
            min-width: 160px;
        }

        .service-item i {
            font-size: 1.5rem;
            color:var(--primary-color);
            margin-bottom: 10px;
        }

        .service-item h3 {
            font-size: 0.9rem;
            margin-bottom: 5px;
            color: #333;
        }

        .service-item p {
            color: #666;
            font-size: 0.8rem;
        }

        @media (max-width: 992px) {
            .mainNav .center, .mainNav2 .center{
                width: 95%;
            }
            .hero-container {
                flex-direction: column;
            }
            
            .hero-slider, .right-images {
                width: 100%;
            }
            
            .right-images {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .right-image {
                width: calc(50% - 7.5px);
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            .hero-slider {
                height: 350px;
            }
            
            .slide-content {
                left: 30px;
                max-width: 300px;
            }
            
            .slide-content h2 {
                font-size: 1.5rem;
            }
            
            .slide-content p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero-slider {
                height: 300px;
            }
            
            .slide-content {
                left: 20px;
                max-width: 250px;
            }
            
            .slide-content h2 {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }
            
            .right-image {
                width: 100%;
            }
        }

        /* categroy */
        .mall-container {
            display: flex;
            gap: 25px;
            padding: 20px 10px;
            overflow-x: auto;
            scrollbar-width: thin;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            scroll-padding: 20px;
        }
        
        .mall-container::-webkit-scrollbar {
            height: 8px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }
        
        .mall-container::-webkit-scrollbar-thumb {
            background: linear-gradient(to right, #ff6b6b, #ff8e53);
            border-radius: 10px;
        }
        
        .mall-card {
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            width: 250px;
            scroll-snap-align: start;
            flex-shrink: 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        
        
        .mall-card .product-image {
            height: 150px;
            position: relative;
            overflow: hidden;
        }
        
        .mall-card .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
       
        
        .mall-card .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%); */
            z-index: 1;
        }
        
        .mall-card .category-count {
            position: absolute;
            top: 5px;
            right: 5px;
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }
        
        .mall-card .product-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .mall-card .product-info h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 700;
        }
        
        .mall-card .add-to-cart2 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 25px;
            background: #1a3a5f;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 8px;
            text-decoration: none;

            width: 100%;
            text-align: center;
        }
        
        .mall-card .add-to-cart2:hover {
            background: transparent;
            border:2px solid #1a3a5f;
            Color:#1a3a5f;
            transform: translateY(-3px);
        }
        
        .mall-card .view-products {
            display: block;
            text-align: center;
            margin-top: 15px;
            color: #666;
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .mall-card .view-products:hover {
            color: #ff6b6b;
        }