 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazir', 'Tahoma', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Slider */
        .main-slider {
            height: 100vh;
            position: relative;
        }

        .main-slider .swiper-slide {
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .main-slider .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .slide-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
        }

        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-content .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .slide-content .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
        }

        /* Categories Section */
        .categories-section {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #007bff, #0056b3);
        }

        .category-card {
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .category-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
        }

        .category-card .category-icon {
            font-size: 3rem;
            color: #007bff;
            margin-bottom: 15px;
        }

        .category-card h3 {
            font-size: 1.2rem;
            color: #333;
        }

        /* Amazing Offer Section */
        .amazing-offer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 0;
            color: white;
        }

        .timer {
            text-align: center;
            margin-bottom: 40px;
        }

        .timer h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 20px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .countdown-item .number {
            font-size: 2rem;
            font-weight: bold;
            display: block;
        }

        .countdown-item .label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Product Cards */
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin: 10px;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #333;
        }

        .product-info p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .price-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .final-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #28a745;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
        }

        .discount-badge {
            background: #dc3545;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
        }

        .stars {
            color: #ffc107;
        }

        .btn-primary {
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
        }

        .btn-unavailable {
            background: #6c757d;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: not-allowed;
        }

        /* Today's Offer & New Products */
        .today-offer, .new-products {
            padding: 60px 0;
            background: white;
        }

        .new-products {
            background: #f8f9fa;
        }

        /* Banner Section */
        .banner-section {
            padding: 40px 0;
            background: white;
        }

        .banner-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .banner-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 200px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .banner-item:hover {
            transform: scale(1.02);
        }

        .banner-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .banner-item:hover img {
            transform: scale(1.1);
        }

        /* Comments Section */
        .comments-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .comment-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 10px;
            text-align: center;
        }

        .comment-card .user-info {
            margin-bottom: 20px;
        }

        .comment-card .user-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .comment-card .comment-title {
            color: #007bff;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .comment-card .comment-text {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .comment-card .comment-date {
            color: #999;
            font-size: 0.9rem;
        }

        .recommended-badge {
            background: #28a745;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            margin-top: 10px;
            display: inline-block;
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .stat-card .stat-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffc107;
        }

        .stat-card .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }

        .stat-card .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: #007bff;
        }

        .swiper-pagination-bullet-active {
            background: #007bff;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .main-slider {
                height: 60vh;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .banner-grid {
                grid-template-columns: 1fr;
            }

            .countdown {
                gap: 10px;
            }

            .countdown-item {
                padding: 10px 15px;
            }

            .countdown-item .number {
                font-size: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-card {
                padding: 20px;
            }

            .stat-card .stat-number {
                font-size: 2rem;
            }

            .container {
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }