        /* ========== GENEL STİLLER ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }
        
        body {
            background: #f8f9fa;
        }
        
        /* ========== ÜRÜN KARTI STİLLERİ ========== */
        .product-card {
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        
        .product-card:hover {
            border-color: #0d6efd;
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(13, 110, 253, 0.1);
        }
        
        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            background: #fff;
            padding: 12px;
        }
        
        .product-image {
            aspect-ratio: 1/1;
            object-fit: contain;
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            width: 100%;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        /* İndirim Badge */
        .discount-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: #fff;
            padding: 4px 10px;
            font-weight: 800;
            font-size: 12px;
            border-radius: 20px;
            z-index: 5;
            letter-spacing: -0.3px;
            box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
        }
        
        /* Stok Badge */
        .stock-badge {
            position: absolute;
            bottom: 12px;
            left: 12px;
            padding: 4px 10px;
            font-size: 10px;
            font-weight: 700;
            border-radius: 20px;
            z-index: 5;
        }
        
        .stock-in {
            background: #d1e7dd;
            color: #0f5132;
        }
        
        .stock-out {
            background: #f8d7da;
            color: #842029;
        }
        
        /* Ürün Başlığı */
.product-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
    color: #0d6efd;
}

.product-title a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s;
}

.product-title a:hover {
    color: #0a58ca;
    text-decoration: underline;
}
        
        /* Yıldız ve Puan */
        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .stars {
            display: inline-flex;
            gap: 2px;
        }
        
        .stars i {
            font-size: 11px;
            margin-right: 1px;
        }
        
        .rating-value {
            font-size: 11px;
            font-weight: 600;
            color: #ffc107;
        }
        
        .review-count {
            font-size: 10px;
            color: #6c757d;
        }
        
        /* Fiyat */
        .price-box {
            margin-top: 8px;
        }
        
        .old-price {
            font-size: 12px;
            color: #dc3545;
            text-decoration: line-through;
            opacity: 0.7;
        }
        
        .current-price {
            font-size: 18px;
            font-weight: 800;
            color: #0d6efd;
        }
        
        .current-price small {
            font-size: 11px;
            font-weight: 500;
        }
        
        /* Sepete Ekle Butonu */
        .add-to-cart-btn {
            background: #0d6efd;
            color: #fff;
            border: none;
            border-radius: 25px;
            padding: 6px 12px;
            font-size: 11px;
            font-weight: 600;
            transition: all 0.2s;
            width: 100%;
        }
        
        .add-to-cart-btn:hover {
            background: #0b5ed7;
            transform: scale(1.02);
        }
        
        .add-to-cart-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
        }
        
        /* ========== FİLTRE SIDEBAR ========== */
        .filter-sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            position: sticky;
            top: 20px;
        }
        
        .filter-title {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #0d6efd;
            display: inline-block;
        }
        
        .filter-group {
            margin-bottom: 20px;
        }
        
        .filter-group label {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }
        
        .price-inputs {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .price-inputs input {
            width: 50%;
            padding: 6px 10px;
            font-size: 12px;
            border: 1px solid #dee2e6;
            border-radius: 8px;
        }
        
        .rating-filter .rating-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            cursor: pointer;
            font-size: 12px;
        }
        
        .rating-filter .rating-option:hover {
            background: #f8f9fa;
        }
        
        /* ========== SIRALAMA ========== */
        .sort-select {
            padding: 8px 15px;
            border: 1px solid #dee2e6;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 500;
            background: #fff;
            cursor: pointer;
        }
        
        /* ========== SAYFALAMA ========== */
        .pagination {
            gap: 5px;
        }
        
        .page-link {
            border-radius: 10px !important;
            border: 1px solid #dee2e6;
            color: #0d6efd;
            font-weight: 500;
            padding: 8px 14px;
            font-size: 13px;
        }
        
        .page-item.active .page-link {
            background: #0d6efd;
            border-color: #0d6efd;
            color: #fff;
        }
        
        .page-item.disabled .page-link {
            color: #adb5bd;
        }
        
        /* ========== MOBİL ========== */
        @media (max-width: 768px) {
            .product-title {
        font-size: 12px;
        line-height: 1.3;
            }
            
            .current-price {
                font-size: 15px;
            }
            
            .filter-sidebar {
                position: fixed;
                top: 0;
                left: -280px;
                width: 280px;
                height: 100%;
                z-index: 1050;
                transition: left 0.3s ease;
                border-radius: 0;
                overflow-y: auto;
                box-shadow: 2px 0 20px rgba(0,0,0,0.1);
            }
            
            .filter-sidebar.show {
                left: 0;
            }
            
            .filter-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 1040;
                display: none;
            }
            
            .filter-overlay.show {
                display: block;
            }
            
            .mobile-filter-btn {
                display: flex;
                align-items: center;
                gap: 8px;
                background: #fff;
                border: 1px solid #dee2e6;
                border-radius: 25px;
                padding: 8px 16px;
                font-size: 12px;
                font-weight: 600;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-filter-btn, .filter-overlay {
                display: none;
            }
        }
        
        /* ========== ANİMASYONLAR ========== */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .product-card {
            animation: fadeIn 0.4s ease forwards;
        }
        
        .cursor-pointer {
            cursor: pointer;
        }