   /* متغیرهای رنگ */
        :root {
            --primary-color: #5d2d79;
            --primary-light: #7b4498;
            --primary-dark: #4a2361;
            --secondary-color: #48a652;
            --secondary-light: #5ab964;
            --secondary-dark: #3b8a44;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-400: #ced4da;
            --gray-500: #adb5bd;
        }

    @font-face {
    font-family: 'vazir';
    src: url('/assets/SiteTheme/font/vazirmatn/Vazirmatn-Regular.woff2') format('woff2');
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: Vazir, Arial, sans-serif;
    background-color: #f8f9fa;
    font-size: 16px;
}

 
        /* فیلتر و جستجو */
        .filters-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 25px;
            margin-bottom: 30px;
            position: sticky;
            top: 20px;
            z-index: 100;
        }

        .filters-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .filter-title {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-box {
            position: relative;
            min-width: 250px;
        }

        .search-input {
            border: 2px solid var(--gray-300);
            border-radius: 25px;
            padding: 8px 40px 8px 15px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(93, 45, 121, 0.25);
        }

        .search-btn {
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        /* دسته‌بندی - حالت دسکتاپ */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .filter-btn {
            background: var(--gray-200);
            color: var(--dark-color);
            border: 2px solid transparent;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .filter-btn:hover {
            background: var(--primary-light);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(93, 45, 121, 0.3);
        }

        .filter-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-dark);
        }

        .filter-btn .count {
            background: rgba(255,255,255,0.2);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
        }

        /* فیلتر اضافی */
        .additional-filters {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .sort-select {
            border: 2px solid var(--gray-300);
            border-radius: 8px;
            padding: 8px 12px;
            background: white;
            color: var(--dark-color);
            cursor: pointer;
        }

        .sort-select:focus {
            border-color: var(--primary-color);
            outline: none;
        }

        .view-toggle {
            display: flex;
            border: 2px solid var(--gray-300);
            border-radius: 8px;
            overflow: hidden;
        }

        .view-btn {
            background: white;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-btn.active {
            background: var(--primary-color);
            color: white;
        }

        /* گرید محصولات */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .products-grid.list-view {
            grid-template-columns: 1fr;
        }

        /* کارت محصول */
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: var(--gray-100);
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--secondary-color);
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-actions {
            position: absolute;
            top: 12px;
            left: 12px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            opacity: 0;
            transform: translateX(-15px);
            transition: all 0.3s ease;
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .action-btn {
            width: 35px;
            height: 35px;
            background: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 0.8rem;
        }

        .action-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .product-info {
            padding: 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            color: var(--gray-500);
            font-size: 0.85rem;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-title {
            color: var(--dark-color);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-features {
            display: flex;
            gap: 6px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: rgba(93, 45, 121, 0.1);
            color: var(--primary-color);
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .product-footer {
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--gray-200);
            display: flex;
            gap: 8px;
        }

        .product-btn {
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex: 1;
        }

        .view-btn-product {
            background: var(--gray-200);
            color: var(--dark-color);
        }

        .view-btn-product:hover {
            background: var(--gray-400);
        }

        .inquiry-btn-product {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
        }

        .inquiry-btn-product:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(93, 45, 121, 0.3);
        }

        /* نمای لیستی */
        .product-card.list-view {
            flex-direction: row;
            height: auto;
        }

        .product-card.list-view .product-image {
            width: 200px;
            height: 150px;
            flex-shrink: 0;
        }

        .product-card.list-view .product-info {
            padding: 20px;
        }

        /* انیمیشن لودینگ */
        .loading {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .loading.show {
            display: block;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--gray-300);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* پیام خالی بودن */
        .empty-message {
            text-align: center;
            padding: 60px 20px;
            color: var(--gray-500);
            display: none;
        }

        .empty-message.show {
            display: block;
        }

        .empty-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        /* ریسپانسیو */
        @media (max-width: 768px) {
            .page-header {
                padding: 25px 0;
                margin-bottom: 15px;
            }

            .page-title {
                font-size: 1.5rem;
            }

            .page-subtitle {
                font-size: 0.9rem;
            }

            .breadcrumb-section {
                padding: 10px 0;
                margin-bottom: 20px;
            }

            .breadcrumb {
                font-size: 0.8rem;
            }

            .filters-section {
                padding: 20px;
                margin-bottom: 20px;
                position: static;
            }

            .filters-header {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .search-box {
                min-width: auto;
                width: 100%;
            }

            /* دسته‌بندی در موبایل - dropdown */
            .category-filters {
                display: none;
            }

            .mobile-category-select {
                display: block;
                width: 100%;
                border: 2px solid var(--gray-300);
                border-radius: 8px;
                padding: 10px;
                background: white;
                color: var(--dark-color);
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .mobile-category-select:focus {
                border-color: var(--primary-color);
                outline: none;
            }

            .additional-filters {
                justify-content: space-between;
            }

            /* محصولات مربعی در موبایل */
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                margin-bottom: 30px;
            }

            .product-card {
                border-radius: 12px;
            }

            .product-image {
                height: 140px;
                aspect-ratio: 1;
            }

            .product-info {
                padding: 12px;
            }

            .product-title {
                font-size: 0.9rem;
                line-height: 1.3;
                -webkit-line-clamp: 2;
            }

            .product-category {
                font-size: 0.75rem;
                margin-bottom: 4px;
            }

            .product-features {
                gap: 4px;
                margin-bottom: 8px;
            }

            .feature-tag {
                font-size: 0.65rem;
                padding: 2px 6px;
            }

            .product-footer {
                padding-top: 8px;
                gap: 6px;
            }

            .product-btn {
                padding: 6px 10px;
                font-size: 0.75rem;
                gap: 4px;
            }

            .product-badge {
                top: 8px;
                right: 8px;
                padding: 3px 8px;
                font-size: 0.7rem;
            }

            .product-actions {
                top: 8px;
                left: 8px;
                gap: 4px;
            }

            .action-btn {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }

            /* حذف hover effects در موبایل */
            .product-card:hover {
                transform: none;
                box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            }

            .product-card:hover .product-image img {
                transform: none;
            }

            .product-actions {
                opacity: 1;
                transform: translateX(0);
                flex-direction: row;
                top: auto;
                bottom: 8px;
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 576px) {
            .additional-filters {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .view-toggle {
                align-self: center;
            }

            .product-image {
                height: 120px;
            }

            .product-info {
                padding: 10px;
            }

            .product-title {
                font-size: 0.85rem;
            }
        }

        /* دسکتاپ - مخفی کردن select موبایل */
        @media (min-width: 769px) {
            .mobile-category-select {
                display: none;
            }
        }

        /* انیمیشن ظاهر شدن محصولات */
        .product-card {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* تاخیر انیمیشن برای هر کارت */
        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.15s; }
        .product-card:nth-child(3) { animation-delay: 0.2s; }
        .product-card:nth-child(4) { animation-delay: 0.25s; }
        .product-card:nth-child(5) { animation-delay: 0.3s; }
        .product-card:nth-child(6) { animation-delay: 0.35s; }
        .product-card:nth-child(7) { animation-delay: 0.4s; }
        .product-card:nth-child(8) { animation-delay: 0.45s; }
        .product-card:nth-child(9) { animation-delay: 0.5s; }
        .product-card:nth-child(10) { animation-delay: 0.55s; }



.product-banner {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary-light));
    padding: 40px 0;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

    .product-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.product-banner-content {
    position: relative;
    z-index: 1;
}

.product-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.product-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* بخش فیلتر و جستجو - طراحی جدید */
.filter-container {
    margin-bottom: 40px;
}

.filter-row {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.filter-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

    .filter-title i {
        margin-left: 10px;
        font-size: 18px;
    }

.view-buttons {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .view-btn:hover {
        background: rgba(255,255,255,0.3);
    }

    .view-btn.active {
        background: white;
        color: var(--primary-color);
    }

.filter-body {
    padding: 25px;
}

.search-sort-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.search-box {
    flex: 1;
    position: relative;
}

    .search-box input {
        width: 100%;
        padding: 15px 20px 15px 50px;
        border: 1px solid var(--gray-300);
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s;
    }

        .search-box input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(93,45,121,0.1);
            outline: none;
        }

    .search-box i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-500);
        font-size: 18px;
    }

.sort-box {
    width: 250px;
    position: relative;
}

    .sort-box select {
        width: 100%;
        padding: 15px 20px;
        appearance: none;
        border: 1px solid var(--gray-300);
        border-radius: 10px;
        background: white;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
    }

        .sort-box select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(93,45,121,0.1);
            outline: none;
        }

    .sort-box::after {
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-500);
        font-size: 14px;
        pointer-events: none;
    }

/* طراحی جدید دسته‌بندی‌ها */
.categories-row {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.categories-header {
    background: var(--secondary-color);
    color: white;
    padding: 15px 25px;
}

.categories-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

    .categories-title i {
        margin-left: 10px;
        font-size: 18px;
    }

.categories-body {
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-item {
    flex: 1;
    min-width: 150px;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

    .category-link:hover {
        border-color: var(--secondary-color);
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        text-decoration: none;
        color: var(--secondary-color);
    }

    .category-link.active {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }

.category-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s;
}

.category-link:hover .category-icon {
    background: rgba(72,166,82,0.1);
}

.category-link.active .category-icon {
    background: rgba(255,255,255,0.2);
}

.category-info {
    flex: 1;
}

.category-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 16px;
}

.category-count {
    font-size: 13px;
    color: inherit;
    opacity: 0.8;
}

/* کارت محصول */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s;
    }

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(72,166,82,0.2);
    z-index: 1;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-desc {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 67px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

    .product-btn:hover {
        background: var(--primary-light);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(93,45,121,0.2);
        color: white;
        text-decoration: none;
    }

    .product-btn i {
        margin-right: 10px;
        font-size: 14px;
    }

/* لیست ویو */
.list-view .product-grid {
    grid-template-columns: 1fr;
}

.list-view .product-card {
    display: flex;
    flex-direction: row;
}

.list-view .product-image {
    width: 280px;
    height: auto;
}

.list-view .product-content {
    flex: 1;
}

.list-view .product-title,
.list-view .product-desc {
    height: auto;
    -webkit-line-clamp: unset;
}

.list-view .product-btn {
    width: fit-content;
}

/* پیجینگ */
.product-pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

    .product-pagination .page-item {
        margin: 0 5px;
    }

    .product-pagination .page-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-weight: 500;
        color: var(--primary-color);
        border: 1px solid var(--gray-300);
        transition: all 0.3s;
    }

        .product-pagination .page-link:hover {
            background: var(--gray-100);
            border-color: var(--primary-color);
        }

    .product-pagination .page-item.active .page-link {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
        box-shadow: 0 3px 10px rgba(93,45,121,0.2);
    }

/* پیام خالی */
.product-empty {
    background: white;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 30px 0;
}

    .product-empty i {
        font-size: 60px;
        color: var(--gray-400);
        margin-bottom: 20px;
    }

    .product-empty h3 {
        font-size: 24px;
        font-weight: 600;
        color: var(--primary-dark);
        margin-bottom: 15px;
    }

    .product-empty p {
        color: var(--gray-500);
        max-width: 500px;
        margin: 0 auto 25px;
    }

.product-empty-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

    .product-empty-btn:hover {
        background: var(--primary-light);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(93,45,121,0.2);
        color: white;
        text-decoration: none;
    }

    .product-empty-btn i {
        font-size: 16px;
        margin-left: 8px;
        color: white;
        margin-bottom: 0;
    }

/* ریسپانسیو */
@media (max-width: 992px) {
    .search-sort-row {
        flex-direction: column;
        gap: 15px;
    }

    .sort-box {
        width: 100%;
    }

    .list-view .product-card {
        flex-direction: column;
    }

    .list-view .product-image {
        width: 100%;
        height: 220px;
    }

    .categories-body {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .product-banner h1 {
        font-size: 2rem;
    }

    .filter-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .view-buttons {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .product-banner h1 {
        font-size: 1.8rem;
    }

    .filter-body {
        padding: 15px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}