
    :root {
        --cat-bg: #ffffff;
        --cat-text: #0f172a;
        --cat-text-muted: #64748b;
        --cat-border: #e2e8f0;
        --cat-hover: #f1f5f9;
        --cat-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        --cat-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
        --cat-gradient-start: #2563eb;
        --cat-gradient-end: #1d4ed8;
        --cat-success: #16a34a;
        --cat-danger: #dc2626;
        --cat-warning: #f59e0b;
        --cat-gold: #fbbf24;
        --cat-card-bg: #ffffff;
        --cat-input-bg: #f8fafc;
        --cat-badge-bg: #f1f5f9;
        --cat-radius-lg: 20px;
        --cat-radius-md: 14px;
        --cat-radius-sm: 10px;
    }
    
    [data-theme="dark"] {
        --cat-bg: #0f172a;
        --cat-text: #f1f5f9;
        --cat-text-muted: #94a3b8;
        --cat-border: #1e293b;
        --cat-hover: #1e293b;
        --cat-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        --cat-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.5);
        --cat-card-bg: #1e293b;
        --cat-input-bg: #0f172a;
        --cat-badge-bg: #1e293b;
    }
    

    .breadcrumb-custom {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--cat-text-muted);
        margin-bottom: 24px;
        flex-wrap: wrap;
        padding: 8px 16px;
        background: var(--cat-card-bg);
        border-radius: var(--cat-radius-sm);
        border: 1px solid var(--cat-border);
    }
    .breadcrumb-custom a {
        color: var(--cat-text-muted);
        text-decoration: none;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .breadcrumb-custom a:hover {
        color: var(--cat-gradient-start);
    }
    .breadcrumb-custom .sep {
        color: var(--cat-border);
        font-size: 12px;
    }
    .breadcrumb-custom .current {
        color: var(--cat-gradient-start);
        font-weight: 600;
    }
    .breadcrumb-custom svg {
        width: 14px;
        height: 14px;
    }

    .category-header {
        background: var(--cat-card-bg);
        border: 1px solid var(--cat-border);
        border-radius: var(--cat-radius-lg);
        padding: 28px 32px;
        margin-bottom: 30px;
        box-shadow: var(--cat-shadow);
        transition: box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .category-header:hover {
        box-shadow: var(--cat-shadow-hover);
    }
    .category-header::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -15%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.04), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .category-header .category-icon-big {
        width: 60px;
        height: 60px;
        background: var(--cat-input-bg);
        border-radius: var(--cat-radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--cat-border);
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    .category-header .category-icon-big:hover {
        border-color: var(--cat-gradient-start);
        box-shadow: 0 0 24px rgba(37, 99, 235, 0.1);
    }
    .category-header .category-icon-big svg {
        width: 30px;
        height: 30px;
        stroke: var(--cat-gradient-start);
    }
    .category-header h1 {
        font-size: 26px;
        font-weight: 800;
        color: var(--cat-text);
        letter-spacing: -0.5px;
    }
    .category-header .sub-desc {
        color: var(--cat-text-muted);
        font-size: 14px;
    }
    .category-header .sub-desc strong {
        color: var(--cat-gradient-start);
        font-weight: 700;
    }
    
    .category-header .sub-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--cat-border);
        position: relative;
        z-index: 1;
    }
    .category-header .sub-categories a {
        padding: 6px 18px;
        border-radius: 50px;
        border: 1px solid var(--cat-border);
        background: var(--cat-input-bg);
        color: var(--cat-text-muted);
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: 'Vazirmatn', sans-serif;
    }
    .category-header .sub-categories a:hover {
        border-color: var(--cat-gradient-start);
        color: var(--cat-gradient-start);
        transform: translateY(-2px);
    }
    .category-header .sub-categories a.active {
        background: linear-gradient(135deg, var(--cat-gradient-start), var(--cat-gradient-end));
        color: #fff;
        border-color: var(--cat-gradient-start);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    }

    .filter-sidebar {
        background: var(--cat-card-bg);
        border: 1px solid var(--cat-border);
        border-radius: var(--cat-radius-lg);
        padding: 20px 22px;
        position: sticky;
        top: 90px;
        box-shadow: var(--cat-shadow);
        transition: box-shadow 0.3s ease;
    }
    .filter-sidebar:hover {
        box-shadow: var(--cat-shadow-hover);
    }
    .filter-sidebar .filter-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--cat-text);
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 2px solid var(--cat-border);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .filter-sidebar .filter-title svg {
        stroke: var(--cat-gradient-start);
        width: 20px;
        height: 20px;
    }
    
    .filter-sidebar .filter-group {
        margin-bottom: 18px;
    }
    .filter-sidebar .filter-group:last-child {
        margin-bottom: 0;
    }
    .filter-sidebar .filter-group .filter-label {
        display: block;
        font-weight: 600;
        font-size: 13px;
        color: var(--cat-text);
        margin-bottom: 6px;
    }
    
    .filter-sidebar .filter-group .price-inputs {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .filter-sidebar .filter-group .price-inputs input {
        flex: 1;
        padding: 8px 12px;
        border-radius: var(--cat-radius-sm);
        border: 1px solid var(--cat-border);
        background: var(--cat-input-bg);
        color: var(--cat-text);
        font-size: 13px;
        font-family: 'Vazirmatn', sans-serif;
        outline: none;
        transition: all 0.3s ease;
        width: 100%;
    }
    .filter-sidebar .filter-group .price-inputs input:focus {
        border-color: var(--cat-gradient-start);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06);
    }
    .filter-sidebar .filter-group .price-inputs input::placeholder {
        color: var(--cat-text-muted);
    }
    .filter-sidebar .filter-group .price-inputs span {
        color: var(--cat-text-muted);
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .filter-sidebar .filter-group .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .filter-sidebar .filter-group .checkbox-group .check-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: var(--cat-text);
        cursor: pointer;
        transition: color 0.3s ease;
        padding: 4px 0;
    }
    .filter-sidebar .filter-group .checkbox-group .check-label:hover {
        color: var(--cat-gradient-start);
    }
    .filter-sidebar .filter-group .checkbox-group .check-label input[type="radio"] {
        width: 16px;
        height: 16px;
        accent-color: var(--cat-gradient-start);
        cursor: pointer;
        flex-shrink: 0;
    }
    .filter-sidebar .filter-group .checkbox-group .check-label .badge-count {
        font-size: 11px;
        color: var(--cat-text-muted);
        background: var(--cat-input-bg);
        padding: 0 8px;
        border-radius: 10px;
        border: 1px solid var(--cat-border);
    }
    
    .filter-sidebar .filter-group .discount-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 14px;
        border-radius: var(--cat-radius-sm);
        border: 2px solid var(--cat-border);
        background: var(--cat-input-bg);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .filter-sidebar .filter-group .discount-toggle:hover {
        border-color: var(--cat-gradient-start);
    }
    .filter-sidebar .filter-group .discount-toggle.active {
        border-color: var(--cat-danger);
        background: rgba(220, 38, 38, 0.05);
    }
    .filter-sidebar .filter-group .discount-toggle .toggle-icon {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--cat-card-bg);
        border: 1px solid var(--cat-border);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    .filter-sidebar .filter-group .discount-toggle.active .toggle-icon {
        background: var(--cat-danger);
        border-color: var(--cat-danger);
        color: #fff;
    }
    .filter-sidebar .filter-group .discount-toggle .toggle-text {
        font-size: 13px;
        color: var(--cat-text);
        font-weight: 500;
    }
    .filter-sidebar .filter-group .discount-toggle.active .toggle-text {
        color: var(--cat-danger);
    }
    .filter-sidebar .filter-group .discount-toggle .toggle-badge {
        font-size: 10px;
        font-weight: 700;
        color: var(--cat-danger);
        background: rgba(220, 38, 38, 0.08);
        padding: 0 6px;
        border-radius: 4px;
    }
    
    .filter-sidebar .btn-filter-apply {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: var(--cat-radius-sm);
        background: linear-gradient(135deg, var(--cat-gradient-start), var(--cat-gradient-end));
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-family: 'Vazirmatn', sans-serif;
        margin-top: 8px;
    }
    .filter-sidebar .btn-filter-apply:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    }
    .filter-sidebar .btn-filter-apply:active {
        transform: scale(0.97);
    }
    
    .filter-sidebar .btn-filter-reset {
        width: 100%;
        padding: 10px;
        border-radius: var(--cat-radius-sm);
        border: 1px solid var(--cat-border);
        background: transparent;
        color: var(--cat-text-muted);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Vazirmatn', sans-serif;
        margin-top: 6px;
    }
    .filter-sidebar .btn-filter-reset:hover {
        border-color: var(--cat-danger);
        color: var(--cat-danger);
        background: rgba(220, 38, 38, 0.04);
    }
    
    .filter-sidebar .active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--cat-border);
    }
    .filter-sidebar .active-filters .filter-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        border-radius: 20px;
        background: rgba(37, 99, 235, 0.06);
        border: 1px solid rgba(37, 99, 235, 0.12);
        color: var(--cat-gradient-start);
        font-size: 11px;
        font-weight: 500;
    }
    .filter-sidebar .active-filters .filter-tag .remove {
        cursor: pointer;
        color: var(--cat-text-muted);
        transition: color 0.3s ease;
        font-weight: 700;
    }
    .filter-sidebar .active-filters .filter-tag .remove:hover {
        color: var(--cat-danger);
    }

    .sort-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 12px 20px;
        background: var(--cat-card-bg);
        border: 1px solid var(--cat-border);
        border-radius: var(--cat-radius-md);
        box-shadow: var(--cat-shadow);
        flex-wrap: wrap;
        gap: 10px;
        transition: box-shadow 0.3s ease;
    }
    .sort-bar:hover {
        box-shadow: var(--cat-shadow-hover);
    }
    .sort-bar .result-count {
        font-size: 14px;
        color: var(--cat-text-muted);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .sort-bar .result-count svg {
        width: 18px;
        height: 18px;
        stroke: var(--cat-gradient-start);
    }
    .sort-bar .result-count strong {
        color: var(--cat-text);
    }
    .sort-bar .sort-group {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .sort-bar .sort-group label {
        font-size: 13px;
        color: var(--cat-text-muted);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .sort-bar .sort-group label svg {
        width: 16px;
        height: 16px;
        stroke: var(--cat-text-muted);
    }
    .sort-bar .sort-group select {
        padding: 6px 12px;
        border-radius: var(--cat-radius-sm);
        border: 1px solid var(--cat-border);
        background: var(--cat-input-bg);
        color: var(--cat-text);
        font-size: 13px;
        font-family: 'Vazirmatn', sans-serif;
        outline: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .sort-bar .sort-group select:focus {
        border-color: var(--cat-gradient-start);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06);
    }
    .sort-bar .sort-group select option {
        background: var(--cat-card-bg);
        color: var(--cat-text);
    }
    

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .product-card {
        background: var(--cat-card-bg);
        border: 1px solid var(--cat-border);
        border-radius: var(--cat-radius-md);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: var(--cat-shadow);
    }
    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--cat-gradient-start), var(--cat-gradient-end), var(--cat-gradient-start));
        background-size: 200% 100%;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 5;
    }
    .product-card:hover::before {
        opacity: 1;
        animation: shimmer 2s infinite;
    }
    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }
    .product-card:hover {
        border-color: var(--cat-gradient-start);
        transform: translateY(-6px);
        box-shadow: var(--cat-shadow-hover);
    }
    
    .product-card .product-image {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--cat-input-bg);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    .product-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
    .product-card .product-image svg {
        width: 56px;
        height: 56px;
        opacity: 0.2;
        stroke: var(--cat-gradient-start);
        transition: all 0.4s ease;
    }
    .product-card:hover .product-image svg {
        opacity: 0.4;
        transform: scale(1.1);
    }
    
    .product-card .product-badges {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 3;
    }
    .product-card .product-badges .badge {
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 9px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.3px;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .badge-featured {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: #0f172a;
    }
    .badge-new {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #fff;
    }
    .badge-best {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        color: #fff;
    }
    .badge-sale {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        color: #fff;
        animation: pulseBadge 2s infinite;
    }
    @keyframes pulseBadge {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.06); }
    }
    
    .product-card .badge-stock {
        position: absolute;
        bottom: 10px;
        right: 10px;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 9px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        color: #fff;
        z-index: 3;
    }
    .product-card .badge-stock.in-stock {
        background: rgba(22, 163, 74, 0.85);
    }
    .product-card .badge-stock.out-of-stock {
        background: rgba(220, 38, 38, 0.85);
    }
    .product-card .badge-stock.preorder {
        background: rgba(245, 158, 11, 0.85);
    }
    
    .product-card .product-body {
        padding: 14px 16px 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .product-card .product-body .product-category {
        display: inline-block;
        background: var(--cat-input-bg);
        color: var(--cat-gradient-start);
        font-size: 10px;
        padding: 2px 10px;
        border-radius: 20px;
        font-weight: 600;
        margin-bottom: 6px;
        width: fit-content;
        border: 1px solid var(--cat-border);
    }
    .product-card .product-body .product-name {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 40px;
    }
    .product-card .product-body .product-name a {
        color: var(--cat-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .product-card .product-body .product-name a:hover {
        color: var(--cat-gradient-start);
    }
    
    .product-card .product-body .product-rating {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
    }
    .product-card .product-body .product-rating .stars {
        display: flex;
        gap: 1px;
        color: var(--cat-gold);
        font-size: 12px;
    }
    .product-card .product-body .product-rating .stars .star-empty {
        color: var(--cat-text-muted);
        opacity: 0.2;
    }
    .product-card .product-body .product-rating .count {
        font-size: 11px;
        color: var(--cat-text-muted);
    }
    
    .product-card .product-body .product-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid var(--cat-border);
        gap: 8px;
    }
    .product-card .product-body .product-footer .product-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .product-card .product-body .product-footer .product-price .price-old {
        font-size: 11px;
        color: var(--cat-text-muted);
        text-decoration: line-through;
    }
    .product-card .product-body .product-footer .product-price .price-new {
        font-size: 17px;
        font-weight: 800;
        color: var(--cat-gradient-start);
        line-height: 1.2;
    }
    .product-card .product-body .product-footer .product-price .price-free {
        font-size: 16px;
        font-weight: 700;
        color: var(--cat-success);
    }
    
    .product-card .product-body .product-footer .btn-buy {
        padding: 6px 14px;
        border-radius: var(--cat-radius-sm);
        font-size: 11px;
        font-weight: 600;
        background: linear-gradient(135deg, var(--cat-gradient-start), var(--cat-gradient-end));
        color: #fff;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        white-space: nowrap;
        font-family: 'Vazirmatn', sans-serif;
        box-shadow: 0 2px 12px rgba(37, 99, 235, 0.2);
    }
    .product-card .product-body .product-footer .btn-buy:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    }
    .product-card .product-body .product-footer .btn-buy:active {
        transform: scale(0.95);
    }
    .product-card .product-body .product-footer .btn-buy svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }
    
    .product-card .product-body .product-footer .btn-buy.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background: var(--cat-text-muted);
        box-shadow: none;
    }
    .product-card .product-body .product-footer .btn-buy.disabled:hover {
        transform: none;
        box-shadow: none;
    }
    .product-card .product-body .product-footer .btn-buy.out-of-stock-btn {
        background: var(--cat-danger);
        box-shadow: 0 2px 12px rgba(220, 38, 38, 0.2);
        opacity: 0.7;
        cursor: not-allowed;
    }
    .product-card .product-body .product-footer .btn-buy.out-of-stock-btn:hover {
        transform: none;
        box-shadow: none;
    }

    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .pagination a, .pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border-radius: var(--cat-radius-sm);
        border: 1px solid var(--cat-border);
        background: var(--cat-card-bg);
        color: var(--cat-text-muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        font-family: 'Vazirmatn', sans-serif;
    }
    .pagination a:hover {
        border-color: var(--cat-gradient-start);
        color: var(--cat-gradient-start);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    }
    .pagination .current {
        background: linear-gradient(135deg, var(--cat-gradient-start), var(--cat-gradient-end));
        color: #fff;
        border-color: var(--cat-gradient-start);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    }
    .pagination .disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: none !important;
    }
    

    .empty-state {
        text-align: center;
        padding: 80px 20px;
        color: var(--cat-text-muted);
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--cat-card-bg);
        border-radius: var(--cat-radius-lg);
        border: 1px solid var(--cat-border);
        box-shadow: var(--cat-shadow);
    }
    .empty-state .empty-icon {
        width: 120px;
        height: 120px;
        opacity: 0.15;
        margin-bottom: 20px;
        stroke: var(--cat-text-muted);
    }
    .empty-state h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--cat-text);
    }
    .empty-state p {
        font-size: 14px;
        color: var(--cat-text-muted);
        max-width: 400px;
        margin: 0 auto 16px;
        line-height: 1.8;
    }
    .empty-state .btn-empty {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 28px;
        border-radius: var(--cat-radius-sm);
        background: linear-gradient(135deg, var(--cat-gradient-start), var(--cat-gradient-end));
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-family: 'Vazirmatn', sans-serif;
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
    }
    .empty-state .btn-empty:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    }
    .empty-state .btn-empty svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
    }
    

    @media (max-width: 1024px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .category-header {
            padding: 24px;
        }
        .category-header h1 {
            font-size: 24px;
        }
    }
    
    @media (max-width: 768px) {
        .category-header {
            padding: 18px 20px;
        }
        .category-header h1 {
            font-size: 20px;
        }
        .category-header .category-icon-big {
            width: 48px;
            height: 48px;
        }
        .category-header .category-icon-big svg {
            width: 24px;
            height: 24px;
        }
        
        .filter-sidebar-wrap {
            width: 100% !important;
            flex-shrink: 0 !important;
        }
        .filter-sidebar {
            position: static;
            padding: 16px;
        }
        
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .product-card .product-image {
            height: 140px;
        }
        .product-card .product-body .product-name {
            font-size: 13px;
            min-height: 36px;
        }
        .product-card .product-body .product-footer .product-price .price-new {
            font-size: 15px;
        }
        .product-card .product-body .product-footer .btn-buy {
            padding: 4px 10px;
            font-size: 10px;
        }
        .product-card .product-body .product-footer .btn-buy svg {
            width: 12px;
            height: 12px;
        }
        
        .sort-bar {
            flex-direction: column;
            align-items: stretch;
            padding: 12px 16px;
        }
        .sort-bar .result-count {
            justify-content: center;
        }
        .sort-bar .sort-group {
            justify-content: center;
        }
        
        .empty-state {
            padding: 40px 16px;
        }
        .empty-state .empty-icon {
            width: 80px;
            height: 80px;
        }
        .empty-state h3 {
            font-size: 18px;
        }
        
        .pagination a, .pagination span {
            min-width: 34px;
            height: 34px;
            font-size: 12px;
            padding: 0 8px;
        }
    }
    
    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .product-card .product-image {
            height: 110px;
        }
        .product-card .product-body {
            padding: 10px 12px 12px;
        }
        .product-card .product-body .product-name {
            font-size: 12px;
            min-height: 32px;
        }
        .product-card .product-body .product-footer .product-price .price-new {
            font-size: 13px;
        }
        .product-card .product-body .product-footer .btn-buy {
            padding: 3px 8px;
            font-size: 9px;
        }
        .product-card .product-body .product-footer .btn-buy svg {
            width: 10px;
            height: 10px;
        }
        .product-card .product-badges .badge {
            font-size: 8px;
            padding: 2px 8px;
        }
        .product-card .badge-stock {
            font-size: 8px;
            padding: 2px 8px;
        }
        
        .filter-sidebar {
            padding: 12px;
        }
        .filter-sidebar .filter-group .price-inputs {
            flex-direction: row;
        }
        
        .sort-bar .result-count {
            font-size: 12px;
        }
        .sort-bar .sort-group select {
            font-size: 12px;
            padding: 4px 8px;
        }
        .sort-bar .sort-group label {
            font-size: 12px;
        }
    }