
        /* Breadcrumb */
        .breadcrumb { 
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            padding: 1rem 0; 
            margin-bottom: 2rem; 
            border-bottom: 1px solid #e0e0e0;
        }
        .breadcrumb ul { 
            list-style: none; 
            padding: 0; 
            margin: 0; 
            display: flex; 
            flex-wrap: wrap; 
            align-items: center; 
            gap: 0.5rem; 
        }
        .breadcrumb li { 
            display: flex; 
            align-items: center; 
            font-size: 0.9rem;
        }
        .breadcrumb li:not(:last-child):after { 
            content: "›"; 
            margin-left: 0.5rem; 
            color: #6c757d; 
        }
        .breadcrumb a { 
            color: #2c3e50; 
            text-decoration: none; 
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .breadcrumb a:hover { 
            color: #3498db; 
        }
        
        /* Header */
        .products-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
            position: relative;
            overflow: hidden;
        }
        .products-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
        }
        .products-header .container {
            position: relative;
            z-index: 1;
        }
        .products-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .products-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }
        .products-count {
            background: rgba(255, 255, 255, 0.2);
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Dil indicator */
        .language-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Product Cards */
        .products-grid {
            padding: 1rem 0;
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #eef2f7;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #3498db;
        }
        
        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 220px;
            background: #f8fafc;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        
        .product-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }
        
        .discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
        }
        
        .product-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-category {
            color: #3498db;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }
        
        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.4;
            flex-grow: 1;
            min-height: 50px;
        }
        
        .product-title a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .product-title a:hover {
            color: #3498db;
        }
        
        .product-description {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            flex-grow: 1;
            min-height: 70px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        .product-price-section {
            margin: 1rem 0;
            padding: 1rem 0;
            border-top: 1px dashed #e2e8f0;
            border-bottom: 1px dashed #e2e8f0;
        }
        
        .current-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .old-price {
            font-size: 1rem;
            color: #94a3b8;
            text-decoration: line-through;
            margin-top: 0.25rem;
        }
        
        .price-request {
            color: #3498db;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .product-actions {
            margin-top: auto;
        }
        
        .btn-view {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-view:hover {
            background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            color: white;
        }
        
        .btn-view i {
            font-size: 1.2rem;
        }
        
        /* Pagination */
        .pagination-container {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eef2f7;
        }
        
        .pagination {
            gap: 0.5rem;
        }
        
        .page-link {
            border: none;
            color: #64748b;
            padding: 0.75rem 1.25rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .page-link:hover {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            transform: translateY(-2px);
        }
        
        .page-item.active .page-link {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        
        /* Dil info box */
        .language-info {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-left: 4px solid #2196f3;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #1565c0;
        }
        
        .language-info i {
            margin-right: 8px;
        }
        
        /* No Products */
        .no-products {
            padding: 5rem 0;
            text-align: center;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 20px;
            margin: 2rem 0;
        }
        
        .no-products i {
            color: #cbd5e1;
            margin-bottom: 1.5rem;
        }
        
        .no-products h3 {
            color: #64748b;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .products-header h1 {
                font-size: 2rem;
            }
            
            .products-header p {
                font-size: 1rem;
            }
            
            .product-card {
                margin-bottom: 1.5rem;
            }
            
            .product-image-wrapper {
                height: 200px;
            }
            
            .product-title {
                min-height: auto;
            }
            
            .product-description {
                min-height: auto;
                -webkit-line-clamp: 2;
            }
            
            .pagination {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .language-indicator {
                position: relative;
                top: auto;
                right: auto;
                display: inline-block;
                margin-top: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .products-header {
                padding: 2rem 0;
            }
            
            .product-image-wrapper {
                height: 180px;
            }
            
            .product-body {
                padding: 1.25rem;
            }
            
            .current-price {
                font-size: 1.2rem;
            }
        }
 