
        .products_content_wrapper {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .products_header_section {
            margin-bottom: 60px;
            padding: 50px;
        }
        
        .products_main_title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .brand_highlight {
            color: #f8aa7a;
        }
        
        .products_subtitle {
            font-size: 1.4rem;
            color: #7f8c8d;
            margin-bottom: 25px;
            font-weight: 300;
        }
        
        .products_description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .products_slider_section {
            margin-bottom: 80px;
        }
        
        .section_header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section_header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section_header h2 i {
            color: #f8aa7a;
            margin-right: 15px;
        }
        
        .section_subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
        }
        
        /* Swiper Slider Styles */
        .products-slider {
            padding: 20px 0 60px;
        }
        
        .product_slide_card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .product_slide_card:hover {
            transform: translateY(-10px);
        }
        
        .product_image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }
        
        .product_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product_slide_card:hover .product_image img {
            transform: scale(1.1);
        }
        
        .product_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px;
        }
        
        .product_slide_card:hover .product_overlay {
            opacity: 1;
        }
        
        .product_price_badge {
            align-self: flex-end;
        }
        
        .product_price_badge .price {
            background: rgba(231, 76, 60, 0.9);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .product_actions {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .btn_view_product,
        .btn_buy_product {
            background: white;
            color: #f8aa7a;
            border: none;
            padding: 10px 15px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .btn_view_product:hover,
        .btn_buy_product:hover {
            background: #f8aa7a;
            color: white;
            transform: translateY(-2px);
        }
        
        .product_content {
            padding: 25px;
        }
        
        .product_content h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .product_description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .product_meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .product_price,
        .product_category {
            color: #7f8c8d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .product_price {
            font-weight: 600;
            color: #f8aa7a;
        }
        
        /* Categories Section */
        .products_categories_section {
            margin-bottom: 80px;
        }
        
        .category_card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .category_card:hover {
            transform: translateY(-10px);
        }
        
        .premium_category {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .accessible_category {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }
        
        .category_icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .category_icon i {
            font-size: 2rem;
        }
        
        .category_content h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .category_content p {
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .category_stats {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .stat_number {
            font-size: 2rem;
            font-weight: 700;
        }
        
        .stat_label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Products Grid */
        .products_grid_section {
            margin-bottom: 80px;
        }
        
        .products_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .product_card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .product_card:hover {
            transform: translateY(-5px);
        }
        
        .product_card .product_image {
            height: 220px;
        }
        
        .product_card .product_overlay {
            background: rgba(0,0,0,0.7);
        }
        
        .product_btn {
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            padding: 10px;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .product_btn:hover {
            background: white;
            transform: scale(1.1);
        }
        
        .product_card .product_content {
            padding: 20px;
        }
        
        .product_card .product_content h5 {
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        
        .product_brief {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .product_price_info {
            text-align: center;
        }
        
        .current_price {
            color: #f8aa7a;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .empty_products {
            text-align: center;
            padding: 80px 20px;
            color: #7f8c8d;
        }
        
        .empty_products i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #dee2e6;
        }
        
        .empty_products h3 {
            margin-bottom: 15px;
            color: #6c757d;
        }
        
        /* Stats Section */
        .products_stats_section {
            background: white;
            padding: 60px 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stats_container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat_card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .stat_icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f8aa7a, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .stat_icon i {
            font-size: 2rem;
            color: white;
        }
        
        .stat_content h3 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .stat_content p {
            color: #7f8c8d;
            font-weight: 500;
        }
        
        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: #f8aa7a;
            background: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            margin-top: -25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 18px;
            font-weight: 700;
        }
        
        .swiper-pagination-bullet {
            background: #f8aa7a;
            opacity: 0.3;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .products_main_title {
                font-size: 2.5rem;
            }
            
            .products_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .product_meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .stats_container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .product_actions {
                flex-direction: column;
                gap: 8px;
            }
        }
        

