/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.125rem;
    color: #6c757d;
    margin: 0;
}

/* Filter Bar */
.filter-bar {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out;
}

.category-filter {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.25rem 0.25rem;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-btn:hover {
    border-color: var(--theme_primary);
    color: var(--theme_primary);
}

.category-btn.active {
    background: var(--theme_primary);
    border-color: var(--theme_primary);
    color: white;
}

.filter-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.filter-actions > * {
    flex-shrink: 0;
}

.filter-right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sort-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 42px;
    height: 42px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.view-btn:hover {
    border-color: var(--theme_primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--theme_primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.view-btn.active {
    border-color: var(--theme_primary);
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.result-count {
    color: #4b5563;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.sort-select {
    min-width: 220px;
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4b5563;
    background: white url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%234b5563" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e') no-repeat right 0.75rem center/16px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sort-select:hover {
    border-color: var(--theme_primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233b82f6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
}

.sort-select:focus {
    outline: none;
    border-color: var(--theme_primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233b82f6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
}

.sort-select option {
    padding: 0.5rem;
    color: #1f2937;
    background: white;
}

/* Nice-Select Override Styles */
.nice-select.sort-select {
    min-width: 220px;
    padding: 0.625rem 2.5rem 0.625rem 1rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4b5563 !important;
    background: white !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    height: auto !important;
    line-height: 1.5 !important;
}

.nice-select.sort-select:hover {
    border-color: var(--theme_primary) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.nice-select.sort-select.open,
.nice-select.sort-select:focus {
    border-color: var(--theme_primary) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.nice-select.sort-select::after {
    border-bottom: 2px solid #4b5563 !important;
    border-right: 2px solid #4b5563 !important;
    width: 8px;
    height: 8px;
    right: 1rem;
    transition: all 0.3s;
}

.nice-select.sort-select:hover::after,
.nice-select.sort-select.open::after {
    border-bottom-color: var(--theme_primary) !important;
    border-right-color: var(--theme_primary) !important;
}

.nice-select.sort-select .current {
    color: #4b5563;
    font-weight: 500;
}

.nice-select.sort-select .list {
    border-radius: 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08) !important;
    border: 2px solid #e5e7eb !important;
    margin-top: 0.5rem;
    width: 100% !important;
}

.nice-select.sort-select .option {
    padding: 0.75rem 1rem !important;
    font-size: 0.9375rem;
    color: #4b5563 !important;
    transition: all 0.2s;
    line-height: 1.5 !important;
    min-height: auto !important;
}

.nice-select.sort-select .option:hover,
.nice-select.sort-select .option.focus {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%) !important;
    color: var(--theme_primary) !important;
}

.nice-select.sort-select .option.selected {
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%) !important;
    color: white !important;
    font-weight: 600;
}

/* Sidebar Widget - Modern Category Menu */
.modern-category-sidebar {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    animation: fadeInUp 0.5s ease-out;
}

.modern-category-sidebar .widget-header {
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.modern-category-sidebar .widget-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(15deg);
}

.modern-category-sidebar .widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.modern-category-sidebar .widget-title i {
    font-size: 1.25rem;
    opacity: 0.9;
}

.category-menu {
    padding: 0.75rem;
}

.category-menu ul {
    margin: 0;
}

.category-menu ul li {
    margin-bottom: 0.35rem;
    animation: fadeInUp 0.4s ease-out backwards;
}

/* Staggered animation for category items */
.category-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.category-menu ul li:nth-child(2) { animation-delay: 0.15s; }
.category-menu ul li:nth-child(3) { animation-delay: 0.2s; }
.category-menu ul li:nth-child(4) { animation-delay: 0.25s; }
.category-menu ul li:nth-child(5) { animation-delay: 0.3s; }
.category-menu ul li:nth-child(6) { animation-delay: 0.35s; }
.category-menu ul li:nth-child(n+7) { animation-delay: 0.4s; }

.category-menu ul li:last-child {
    margin-bottom: 0;
}

.category-menu-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid transparent;
    background: white;
    position: relative;
    overflow: hidden;
}

.category-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--theme_primary);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-menu-item:hover::before {
    transform: scaleY(1);
}

.category-menu-item:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 100%);
    color: var(--theme_primary);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.category-menu-item.active {
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%);
    color: white;
    border-color: var(--theme_primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3), 0 2px 4px rgba(59, 130, 246, 0.2);
    transform: translateX(2px);
}

.category-menu-item.active::before {
    transform: scaleY(1);
    background: white;
}

.category-menu-item .category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    margin-right: 0.75rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.category-menu-item .category-icon i {
    font-size: 0.875rem;
    color: #6b7280;
    transition: all 0.3s;
}

.category-menu-item:hover .category-icon {
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%);
    transform: rotate(8deg) scale(1.05);
}

.category-menu-item:hover .category-icon i {
    color: white;
}

.category-menu-item.active .category-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.category-menu-item.active .category-icon i {
    color: white;
}

.category-menu-item .category-name {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.category-menu-item .category-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s;
    flex-shrink: 0;
}

.category-menu-item .category-arrow i {
    font-size: 1rem;
}

.category-menu-item:hover .category-arrow,
.category-menu-item.active .category-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-item__card {
    display: flex;
    flex-direction: row;
}

.products-grid.list-view .product-item__images {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.products-grid.list-view .product-item__info {
    padding: 1.5rem;
    flex-grow: 1;
}

.products-grid.list-view .add-to-cart-btn {
    position: relative;
    transform: translateY(0);
    margin-top: auto;
}

/* Product Item */
.product-item {
    display: block;
    animation: fadeInUp 0.6s ease-out backwards;
}

/* Staggered animation for product items */
.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.15s; }
.product-item:nth-child(3) { animation-delay: 0.2s; }
.product-item:nth-child(4) { animation-delay: 0.25s; }
.product-item:nth-child(5) { animation-delay: 0.3s; }
.product-item:nth-child(6) { animation-delay: 0.35s; }
.product-item:nth-child(n+7) { animation-delay: 0.4s; }

.product-item__card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-item__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Product Images */
.product-item__images {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-item__images .img-front {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.product-item__images .img-back {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-item__card:hover .img-front {
    opacity: 0;
    transform: scale(1.1);
}

.product-item__card:hover .img-back {
    opacity: 1;
    transform: scale(1.05);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.badge-sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.badge-hot {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Quick Actions */
.quick-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-item__card:hover .quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    text-decoration: none;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%);
    color: white;
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
    border-color: transparent;
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0.875rem;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    letter-spacing: 0.3px;
}

.product-item__card:hover .add-to-cart-btn {
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 -6px 16px rgba(0,0,0,0.15);
}

/* Product Info */
.product-item__info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: #6b7280;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.625rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: #1f2937;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: var(--theme_primary);
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.rating-count {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--theme_primary);
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.price-old {
    font-size: 1.0625rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

/* Stock Status */
.product-stock {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-top: auto;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.product-stock.in-stock {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #047857;
    border: 1px solid #6ee7b7;
}

.product-stock.low-stock {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    border: 1px solid #fcd34d;
}

.product-stock.out-of-stock {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #b91c1c;
    border: 1px solid #f87171;
}

.product-stock i {
    font-size: 0.5rem;
    margin-right: 0.125rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.no-results i {
    opacity: 0.3;
    background: linear-gradient(135deg, var(--theme_primary) 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-results h3 {
    color: #1f2937;
    font-weight: 700;
    margin-top: 1rem;
}

.no-results p {
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .filter-actions {
        justify-content: flex-start;
        gap: 0.75rem;
    }
    
    .sort-select,
    .nice-select.sort-select {
        min-width: 200px;
    }
    
    /* Sol menü tablet görünümünde tam genişlik */
    .modern-category-sidebar {
        margin-bottom: 2rem;
    }
    
    .modern-category-sidebar .widget-header {
        padding: 1.25rem;
    }
   
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .filter-bar {
        padding: 1rem;
    }
    
    .filter-actions {
        gap: 0.75rem;
    }
    
    .filter-right-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-select,
    .nice-select.sort-select {
        min-width: 160px;
        font-size: 0.875rem;
        padding: 0.5rem 2rem 0.5rem 0.75rem !important;
    }
    
    .view-btn {
        width: 38px;
        height: 38px;
    }
    
    .result-count {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
        width: 100%;
        text-align: center;
    }
    
    .category-filter {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Sol menü mobilde daha kompakt */
    .modern-category-sidebar {
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .modern-category-sidebar .widget-header {
        padding: 1rem 1.25rem;
    }
    
    .modern-category-sidebar .widget-title {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .category-menu {
        padding: 0.5rem;
    }
    
    .category-menu-item {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }
    
    .category-menu-item .category-icon {
        width: 28px;
        height: 28px;
        margin-right: 0.625rem;
    }
    
    .category-menu-item .category-icon i {
        font-size: 0.8125rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .product-item__images {
        height: 220px;
    }
    
    .product-item__info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .price-current {
        font-size: 1.25rem;
    }
    
    .quick-actions {
        opacity: 1;
        transform: translateX(0);
    }
    
    .add-to-cart-btn {
        transform: translateY(0);
        position: relative;
        margin-top: 1rem;
    }
    
    .products-grid.list-view .product-item__card {
        flex-direction: column;
    }
    
    .products-grid.list-view .product-item__images {
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .filter-actions > * {
        width: 100%;
    }
    
    .filter-right-group {
        flex-direction: column;
        width: 100%;
        order: 2;
    }
    
    .view-toggle {
        justify-content: center;
        order: 1;
        width: 100%;
    }
    
    .sort-wrapper {
        width: 100%;
        order: 2;
    }
    
    .sort-select,
    .nice-select.sort-select {
        width: 100%;
        min-width: auto;
    }
    
    .result-count {
        text-align: center;
        order: 1;
        width: 100%;
    }
    
    /* Sol menü çok küçük ekranlarda */
    .modern-category-sidebar {
        border-radius: 10px;
    }
    
    .modern-category-sidebar .widget-header {
        padding: 0.875rem 1rem;
    }
    
    .modern-category-sidebar .widget-title {
        font-size: 0.9375rem;
    }
    
    .category-menu-item {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .category-menu-item:hover {
        transform: translateX(2px);
    }
    
    .category-menu-item .category-icon {
        width: 26px;
        height: 26px;
        margin-right: 0.5rem;
    }
}
