        /* ===== CSS RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #6B7280;
            --primary-dark: #4B5563;
            --secondary-color: #10B981;
            --accent-color: #F59E0B;
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --text-light: #9CA3AF;
            --bg-primary: #FFFFFF;
            --bg-secondary: #F9FAFB;
            --bg-accent: #F3F4F6;
            --border-color: #E5E7EB;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --radius-sm: 8px;
            --radius-md: 12px;
.table-headers {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1.2fr;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.header-cell {
    padding: 18px 15px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-cell:last-child {
    border-right: none;
}

.header-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.header-cell:hover::before {
    left: 100%;
}

.header-cell:hover {
    background: rgba(255, 255, 255, 0.1);
}

            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        html {
            scroll-behavior: smooth;
            /* Kaydırma çubuklarını gizle */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* Internet Explorer 10+ */
        }
        
        html::-webkit-scrollbar {
            display: none; /* WebKit */
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-secondary);
            overflow-x: hidden;
            /* Kaydırma çubuklarını gizle */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* Internet Explorer 10+ */
        }
        
        body::-webkit-scrollbar {
            display: none; /* WebKit */
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* ===== LOADING SCREEN ===== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .loading-screen.hide {
            opacity: 0;
            visibility: hidden;
        }
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .main-wrapper {
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .main-wrapper.show {
            opacity: 1;
        }
        /* ===== FIXED WHATSAPP BUTTON ===== */
        .fixed-whatsapp-btn {
            position: fixed;
            bottom: 20px;
            left: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 20px;
            background: #25D366;
            color: white;
            text-decoration: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            z-index: 1000;
            box-shadow: var(--shadow-lg);
            border: none;
            cursor: pointer;
        }
        
        .fixed-whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
            text-decoration: none;
            color: white;
        }
        
        .fixed-whatsapp-btn i {
            font-size: 1.1rem;
        }
        
        /* ===== HERO CURRENCY INFO ===== */
        .hero-currency-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: currency-blink 2s ease-in-out infinite;
        }
        
        @keyframes currency-blink {
            0% {
                opacity: 1;
                color: #000;
            }
            50% {
                opacity: 0.3;
                color: #000;
            }
            100% {
                opacity: 1;
                color: #000;
            }
        }
        .hero-currency-info .currency-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white !important;
        }
        .hero-currency-info .currency-label {
            font-weight: 500;
            font-size: 1.2rem;
            color: white !important;
        }
        .hero-currency-info .currency-item .rate {
            color: white !important;
            font-weight: 700;
            font-size: 1.4rem;
        }
        .search-container {
            display: none;
        }
        .search-toggle {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.25rem;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .search-toggle:hover {
            color: var(--primary-color);
            background: var(--bg-accent);
        }
        .search-bar {
            position: absolute;
            top: 100%;
            right: 0;
            width: 300px;
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
        }
        .search-bar.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }
        .search-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: #EF4444;
            color: white;
            text-decoration: none;
            border-radius: var(--radius-md);
            font-weight: 500;
            font-size: 0.875rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #DC2626;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2);
        }
        .btn-secondary {
            background: var(--secondary-color);
        }
        .btn-secondary:hover {
            background: #059669;
        }
        .btn-whatsapp {
            background: #25D366;
            color: white;
            width: 100%;
            justify-content: center;
            padding: 14px 20px !important;
            font-weight: 600 !important;
            font-size: 0.9rem !important;
            border-radius: var(--radius-md);
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-whatsapp:hover {
            background: #1DB954;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            text-decoration: none;
        }

        /* ===== KART GÖRÜNÜMÜ BUTON BOYUTLARI EŞITLEME ===== */
        /* Cihaz Özellikleri butonu - hem masaüstü hem mobil */
        .product-card a[style*="background: var(--secondary-color)"],
        .product-card a[href*="epey"],
        .product-details a[href*="epey"],
        .products-grid a[href*="epey"] {
            padding: 14px 20px !important;
            font-size: 0.9rem !important;
            font-weight: 600 !important;
            margin-bottom: 10px !important;
        }
        /* ===== HERO SECTION ===== */
        .hero-section {
            padding: 20px 0 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            text-align: center; /* Metinleri yatayda ortala */
        }
        .hero-content {
            /* display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 400px; kaldırıldı */
            text-align: center; /* Metinleri ortala */
        }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-content p {
            font-size: 1.125rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .hero-feature {
            text-align: center;
            padding: 25px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            
            /* İçeriği ortalamak için eklendi */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 150px; /* İçeriğin dikeyde ortalanması için yeterli yükseklik */
        }
        .hero-feature:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .hero-feature i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            opacity: 0.9;
            display: block;
        }
        .hero-feature h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0; /* Açıklamalar kaldırıldığı için margin sıfırlandı */
        }
        /* .hero-feature p kaldırıldı */
        /* ===== MAIN CONTENT ===== */
        .main-content {
            padding: 60px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
        }
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        /* ===== FILTERS SECTION ===== */
        .filters-section {
            margin-bottom: 40px;
        }
        .filters-container {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            background: white;
            padding: 25px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        .brand-filters {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .brand-filter {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            text-decoration: none;
            color: #EF4444;
            background: white;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid #EF4444;
            cursor: pointer;
            /* Button specific styles */
            outline: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1), 0 1px 2px rgba(220, 38, 38, 0.1);
        }
        .brand-filter:hover {
            background: #EF4444;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2);
        }
        .brand-filter.active {
            background: #EF4444;
            color: white;
            border-color: #DC2626;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2);
        }

        /* Brand filter styles - icons removed */
        
        /* Warning text pulse effect */
        .warning-text {
            animation: text-pulse 1.5s ease-in-out infinite;
        }
        
        @keyframes text-pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Brand specific colors */
        .brand-apple { color: #007AFF; }
        .brand-samsung { color: #1428A0; }
        .brand-xiaomi { color: #FF6900; }
        .brand-redmi { color: #FF6900; }
        .brand-huawei { color: #FF0000; }
        .brand-google { color: #4285F4; }
        .brand-honor { color: #0070F3; }
        .brand-oppo { color: #1BA784; }
        .brand-oneplus { color: #EB0028; }
        .brand-realme { color: #F7CA00; }
        .brand-vivo { color: #667EEA; }
        .brand-poco { color: #F7CA00; }
        .brand-infinix { color: #04D4AA; }
        .brand-tecno { color: #007BFF; }

        /* Brand filter hover effects for images */
        .brand-filter:hover img {
            transform: scale(1.05);
        }

        .brand-filter img {
            transition: transform 0.3s ease;
        }
        .sort-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .sort-container label {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
        }
        .modern-select {
            position: relative;
            display: inline-block;
        }
        .sort-select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding: 12px 40px 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            background: white;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            cursor: pointer;
            transition: var(--transition);
            min-width: 180px;
            box-shadow: var(--shadow-sm);
        }
        .sort-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }
        .sort-select:hover {
            border-color: var(--primary-color);
        }
        .modern-select::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 12px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid var(--text-secondary);
            pointer-events: none;
            transition: var(--transition);
        }
        .modern-select:hover::after {
            border-top-color: var(--primary-color);
        }
        /* Custom select dropdown styling */
        .sort-select option {
            padding: 12px 16px;
            background: white;
            color: var(--text-primary);
            font-weight: 500;
        }
        .sort-select option:hover {
            background: var(--bg-accent);
        }
        /* ===== PRODUCTS GRID ===== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .product-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid var(--border-color);
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .product-header {
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: white;
            padding: 20px 15px;
            text-align: center;
            position: relative;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-title {
            font-size: 1rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: 0.5px;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
            color: white !important;
        }
        .product-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: var(--transition);
        }
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 6px 12px;
            border-radius: var(--radius-md);
            font-size: 0.75rem;
            font-weight: 600;
        }
        .product-details {
            padding: 25px;
        }
        .product-info-grid {
            display: grid;
            gap: 15px;
            margin-bottom: 25px;
        }
        .product-info-item {
            display: grid;
            grid-template-columns: 120px 1fr;
            align-items: start;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            gap: 15px;
        }
        .product-info-item:last-child {
            border-bottom: none;
        }
        .product-info-label {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
            white-space: nowrap;
            min-width: 120px;
            flex-shrink: 0;
        }
        .product-info-value {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-align: left;
            word-wrap: break-word;
            line-height: 1.4;
            overflow-wrap: break-word;
        }
        .status-icon {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        .status-icon.inactive {
            color: var(--text-light);
        }
        .product-pricing {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: var(--radius-md);
            margin-bottom: 20px;
            text-align: center;
        }
        .price-usd {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        .price-tl {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--secondary-color);
        }
        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-primary);
            padding: 60px 0 30px;
            border-top: 1px solid var(--border-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            align-items: start;
        }
        .footer-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .footer-section h3,
        .footer-section h4 {
            color: var(--text-primary);
            margin: 0 0 20px 0;
            font-weight: 600;
            font-size: 1.1rem;
            line-height: 1.4;
            height: 1.54em;
            display: flex;
            align-items: center;
        }
        .footer-section h3 {
            font-size: 1.1rem;
        }
        .footer-section h4 {
            font-size: 1.1rem;
        }
        .footer-section p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
            text-align: left;
        }
        .footer-section ul {
            list-style: none;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            text-align: left;
        }
        .footer-section ul li i {
            color: var(--secondary-color);
            width: 16px;
            flex-shrink: 0;
        }
        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-section ul li a:hover {
            color: var(--primary-color);
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .social-links a.whatsapp {
            background: #25D366;
        }
        .social-links a.facebook {
            background: #1877F2;
        }
        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            opacity: 0.9;
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
        }
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-bottom p {
            color: var(--text-secondary);
            margin: 0;
        }
        .footer-links {
            display: flex;
            gap: 20px;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-color);
        }
        /* ===== SCROLL TO TOP ===== */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.25rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
            z-index: 1000;
        }
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .scroll-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }
        /* ===== GLOBAL MOBILE RED STYLING ===== */
        /* Mobilde tüm butonları kırmızı yapmak için global kurallar */
        @media (max-width: 768px) {
            /* Marka filtre butonları kırmızı - mobil */
            .brand-filter {
                background: #F3F4F6 !important;
                color: var(--text-secondary) !important;
                border: 2px solid #EF4444 !important;
            }
            
            .brand-filter:hover,
            .brand-filter.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            /* Görünüm butonları kırmızı - mobil */
            .view-toggle-btn {
                background: white !important;
                color: #EF4444 !important;
                border: 2px solid #EF4444 !important;
            }
            
            .view-toggle-btn:hover,
            .view-toggle-btn.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            /* Sıralama butonları kırmızı - mobil */
            .sort-btn {
                background: white !important;
                color: #EF4444 !important;
                border: 2px solid #EF4444 !important;
            }
            
            .sort-btn:hover,
            .sort-btn.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            /* Genel .btn sınıfı kırmızı - mobil */
            .btn {
                background: #EF4444 !important;
                color: white !important;
            }
            
            .btn:hover {
                background: #DC2626 !important;
                color: white !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
        
        /* ===== RESPONSIVE DESIGN ===== */
            /* Fixed WhatsApp button mobil */
            .fixed-whatsapp-btn {
                bottom: 15px;
                left: 15px;
                padding: 12px 16px;
                font-size: 0.8rem;
            }
            
            /* Hero currency info mobil */
            .hero-currency-info {
                padding: 12px 20px;
                margin-bottom: 15px;
            }
            
            .hero-currency-info .currency-label {
                font-size: 1rem;
            }
            
            .hero-currency-info .currency-item .rate {
                font-size: 1.2rem;
            }
            
            /* Görünüm kontrollerini gizleme - kullanıcı seçim hakkı korunuyor */
            .view-controls {
                padding: 15px !important;
                margin-bottom: 20px !important;
            }
            
            .view-toggle-buttons {
                gap: 8px !important;
            }
            
            .view-toggle-btn {
                padding: 10px 14px !important;
                font-size: 0.8rem !important;
            }
            
            
            /* Kart görünümü mobilde de kullanılabilir */
            .products-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
                margin-top: 20px !important;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .hero-section {
                padding: 15px 0 40px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content h1 img {
                height: 35vw !important;
                max-height: 280px !important;
                min-height: 200px !important;
                max-width: 90vw !important;
                width: auto !important;
                object-fit: contain !important;
            }
            .hero-content p {
                font-size: 1rem;
            }
            
            /* Hero features daha iyi düzenleme - efektleri azalt */
            .hero-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                margin-top: 30px;
            }
            
            .hero-feature {
                padding: 15px 10px;
                min-height: 120px;
                /* Mobilde efektleri azalt */
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(255, 255, 255, 0.15) !important;
                border: 1px solid rgba(255, 255, 255, 0.3) !important;
            }
            .hero-feature:hover {
                background: rgba(255, 255, 255, 0.2) !important;
                transform: translateY(-4px) !important;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
            }
            .hero-feature i {
                font-size: 1.8rem;
            }
            .hero-feature h3 {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            /* Filtreler mobil uyumlu */
            .filters-container {
                flex-direction: column;
                align-items: stretch;
                padding: 15px;
            }
            .brand-filters {
                justify-content: center;
                gap: 8px;
            }
            
            .brand-filter {
                padding: 10px 14px;
                font-size: 0.8rem;
            }
            
            /* Mobil marka filtre butonları kırmızı stil */
            .brand-filter:hover {
                background: #EF4444 !important;
                color: white !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .brand-filter.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .sort-container {
                justify-content: center;
            }
            .sort-select {
                min-width: 200px;
            }
            
            /* Kart görünümü mobil optimizasyonu */
            .product-header {
                padding: 15px 10px;
                min-height: 60px;
            }
            .product-title {
                font-size: 0.85rem;
                white-space: normal;
                overflow: visible;
                text-overflow: unset;
            }
            .product-details {
                padding: 15px;
            }
            
            .product-info-item {
                grid-template-columns: 120px 1fr;
                gap: 10px;
                padding: 8px 0;
            }
            
            .product-info-label {
                min-width: 120px;
                font-size: 0.8rem;
            }
            
            .product-info-value {
                font-size: 0.8rem;
            }
            
            /* Footer responsive */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            .footer-section {
                align-items: center;
                text-align: center;
            }
            .footer-section h3,
            .footer-section h4 {
                height: auto;
                justify-content: center;
                text-align: center;
            }
            .footer-section p {
                text-align: center;
            }
            .footer-section ul li {
                justify-content: center;
                text-align: center;
            }
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
        }
        /* ===== KÜÇÜK MOBILE EKRANLAR İÇİN KIRMIZI STİLLER ===== */
        @media (max-width: 480px) {
            /* Marka filtre butonları kırmızı - küçük mobil */
            .brand-filter {
                background: #F3F4F6 !important;
                color: var(--text-secondary) !important;
                border: 2px solid #EF4444 !important;
            }
            
            .brand-filter:hover,
            .brand-filter.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            /* Görünüm butonları kırmızı - küçük mobil */
            .view-toggle-btn {
                background: white !important;
                color: #EF4444 !important;
                border: 2px solid #EF4444 !important;
            }
            
            .view-toggle-btn:hover,
            .view-toggle-btn.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            /* Sıralama butonları kırmızı - küçük mobil */
            .sort-btn {
                background: white !important;
                color: #EF4444 !important;
                border: 2px solid #EF4444 !important;
            }
            
            .sort-btn:hover,
            .sort-btn.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            /* Genel .btn sınıfı kırmızı - küçük mobil */
            .btn {
                background: #EF4444 !important;
                color: white !important;
            }
            
            .btn:hover {
                background: #DC2626 !important;
                color: white !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            /* Hero section optimizasyonu */
            .hero-section {
                padding: 10px 0 30px;
            }
            
            .hero-content h1 {
                font-size: 1.5rem;
            }
            
            .hero-content h1 img {
                height: 40vw !important;
                max-height: 250px !important;
                min-height: 180px !important;
                max-width: 85vw !important;
                width: auto !important;
                object-fit: contain !important;
            }
            
            .hero-content p {
                font-size: 0.9rem;
                margin: 0 auto 30px;
            }
            
            /* Hero features tek sütun - efektleri tamamen kaldır */
            .hero-features {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-top: 25px;
            }
            
            .hero-feature {
                padding: 12px 8px;
                min-height: 100px;
                /* Küçük ekranlarda efektleri tamamen kaldır */
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(255, 255, 255, 0.1) !important;
                border: 1px solid rgba(255, 255, 255, 0.2) !important;
                transition: none !important;
            }
            
            .hero-feature:hover {
                background: rgba(255, 255, 255, 0.15) !important;
                transform: none !important;
                box-shadow: none !important;
            }
            
            .hero-feature i {
                font-size: 1.5rem;
            }
            
            .hero-feature h3 {
                font-size: 0.85rem;
            }
            
            /* Brand filters dikey düzenleme */
            .brand-filters {
                flex-direction: column;
                width: 100%;
                gap: 6px;
            }
            .brand-filter {
                justify-content: center;
                text-align: center;
                padding: 8px 12px;
                font-size: 0.75rem;
            }
            
            /* 480px altında mobil marka filtre butonları kırmızı stil */
            .brand-filter:hover {
                background: #EF4444 !important;
                color: white !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .brand-filter.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            /* Kart görünümü tek sütun */
            .products-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .product-card {
                margin: 0 5px;
            }
            
            /* Search bar tam genişlik */
            .search-bar {
                width: calc(100vw - 40px);
                max-width: 280px;
                right: -5px;
            }
            
            /* Sort select tam genişlik */
            .sort-select {
                width: 100%;
                min-width: unset;
            }
            
            /* Kart içeriği daha kompakt */
            .product-info-item {
                grid-template-columns: 100px 1fr;
                gap: 8px;
                padding: 8px 0;
            }
            
            .product-info-label {
                min-width: 100px;
                font-size: 0.75rem;
            }
            
            .product-info-value {
                font-size: 0.75rem;
                line-height: 1.2;
            }
            
            /* Fiyat alanları daha küçük */
            .price-usd {
                font-size: 1.4rem;
            }
            
            .price-tl {
                font-size: 1.1rem;
            }
            
            /* WhatsApp butonu daha küçük */
            .btn-whatsapp {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            
            /* Container padding azaltma */
            .container {
                padding: 0 10px;
            }
            
            /* Filters container daha kompakt */
            .filters-container {
                padding: 12px;
            }
            
            /* View controls daha küçük */
            .view-toggle-btn {
                padding: 8px 12px !important;
                font-size: 0.75rem !important;
            }
            
            /* 480px altında mobil görünüm butonları kırmızı stil */
            .view-toggle-btn:hover {
                background: #EF4444 !important;
                color: white !important;
                border-color: #EF4444 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .view-toggle-btn.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .sort-btn:hover {
                background: #EF4444 !important;
                color: white !important;
                border-color: #EF4444 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .sort-btn.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
        }
        /* ===== ACCESSIBILITY ===== */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        .keyboard-navigation *:focus {
            outline: 2px solid var(--primary-color) !important;
            outline-offset: 2px !important;
        }
        /* ===== PRINT STYLES ===== */
        @media print {
            .header,
            .footer,
            .scroll-to-top,
            .btn-whatsapp {
                display: none !important;
            }
            .main-content {
                padding: 0 !important;
            }
            .product-card {
                break-inside: avoid;
                box-shadow: none !important;
                border: 1px solid #ddd !important;
            }
        }

        /* ===== VIEW TOGGLE SECTION ===== */
        .view-toggle-section {
            margin-bottom: 30px;
        }
        
        .view-toggle-container {
            background: white;
            padding: 25px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .view-toggle-buttons {
            display: flex;
            gap: 12px;
        }
        
        .view-toggle-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: white;
            color: #EF4444;
            border: 2px solid #EF4444;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            outline: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1), 0 1px 2px rgba(220, 38, 38, 0.1);
        }
        
        .view-toggle-btn:hover {
            background: #EF4444;
            color: white;
            border-color: #EF4444;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2);
        }
        
        .view-toggle-btn.active {
            background: #EF4444 !important;
            color: white !important;
            border-color: #DC2626 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
        }
        
        .sort-buttons {
            display: flex;
            gap: 12px;
        }
        
        .sort-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            background: white;
            color: #EF4444;
            border: 2px solid #EF4444;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            outline: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1), 0 1px 2px rgba(220, 38, 38, 0.1);
        }
        
        .sort-btn:hover {
            background: #EF4444;
            color: white;
            border-color: #EF4444;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2);
        }
        
        .sort-btn.active {
            background: #EF4444 !important;
            color: white !important;
            border-color: #DC2626 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
        }

        /* ===== ULTRA MODERN TABLE VIEW STYLES ===== */
        .products-table-container {
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            border: none;
            overflow: visible;
        }
        
        .table-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 25px;
            text-align: center;
            position: sticky;
            top: 70px;
            z-index: 100;
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius-lg);
            margin-bottom: 0.5px;
        }
        
        .table-title {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .table-wrapper {
            overflow: visible;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .table-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        .products-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 8px 0;
            font-size: 0.9rem;
            border: none;
            background: transparent;
            table-layout: fixed;
        }
        
        .table-header-cell {
            background: var(--primary-color);
            color: white;
            padding: 18px 15px;
            text-align: center;
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            position: sticky;
            top: 155px;
            z-index: 90;
            box-shadow: none;
            border-radius: 0;
            width: 14.28%; /* 100% / 7 kolonlar = eşit genişlik */
            transition: var(--transition);
            cursor: pointer;
        }
        
        .table-header-cell:hover {
            background: var(--primary-dark);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .brand-header-row {
            background: transparent;
            position: sticky;
            top: 155.5px;
            z-index: 80;
        }
        
        .brand-header {
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: var(--primary-dark);
            border-radius: 0;
            box-shadow: var(--shadow-md);
            border: none;
        }
        
        /* Ultra Modern Row Styling */
        .product-row {
            transition: var(--transition);
            border: none;
        }
        
        .product-row td {
            border: none;
            background: white;
            box-shadow: none;
            padding: 20px 15px;
            position: relative;
            border-radius: 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .product-row:hover td {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(67, 56, 202, 0.05));
            transform: none;
            box-shadow: none;
        }
        
        .product-name-cell {
            text-align: left;
            width: 14.28%;
        }
        
        .product-name-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
            justify-content: flex-start;
        }
        
        .product-name-content strong {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1rem;
            white-space: normal;
            word-wrap: break-word;
            line-height: 1.3;
        }
        
        .storage-info {
            background: var(--accent-color);
            color: white;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
            margin-left: 0;
            display: inline-block;
            align-self: flex-start;
        }
        
        .kayit-cell {
            text-align: center;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.875rem;
            width: 14.28%;
        }
        
        .status-cell {
            text-align: center;
            width: 14.28%;
        }
        
        .status-icon-green {
            color: var(--secondary-color);
            font-size: 1.5rem;
        }
        
        .status-icon-red {
            color: #EF4444;
            font-size: 1.5rem;
        }
        
        .price-cell {
            text-align: center;
            font-weight: 700;
            width: 14.28%;
        }
        
        .price-usd-cell {
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        
        .price-tl-cell {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        /* ===== VIEW CONTENT TRANSITIONS ===== */
        .view-content {
            transition: all 0.3s ease;
        }
        
        .view-content.fade-out {
            opacity: 0;
            transform: translateY(20px);
        }
        
        .view-content.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE TABLE DESIGN ===== */
        @media (max-width: 768px) {
            .view-toggle-container {
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
            }
            
            .view-toggle-buttons,
            .sort-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .view-toggle-btn,
            .sort-btn {
                flex: 1;
                min-width: 140px;
                justify-content: center;
                font-size: 0.8rem;
                padding: 12px 16px;
            }
            
            /* Mobil sıralama butonları kırmızı stil */
            .sort-btn:hover {
                background: #EF4444 !important;
                color: white !important;
                border-color: #EF4444 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .sort-btn.active {
                background: #EF4444 !important;
                color: white !important;
                border-color: #DC2626 !important;
                box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
            }
            
            .table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .products-table {
                min-width: 900px;
                font-size: 0.8rem;
            }
            
            .table-header-cell {
                padding: 12px 8px;
                font-size: 0.75rem;
            }
            
            .product-name-cell,
            .kayit-cell,
            .status-cell,
            .price-cell {
                padding: 15px 8px;
            }
            
            .product-name-content strong {
                font-size: 0.9rem;
            }
            
            .storage-info {
                font-size: 0.8rem;
            }
            
            .kayit-cell {
                font-size: 0.8rem;
                min-width: 150px;
            }
            
            .status-icon-green,
            .status-icon-red {
                font-size: 1.2rem;
            }
            
            .price-cell {
                font-size: 0.9rem;
                min-width: 100px;
            }
        }
        
        @media (max-width: 480px) {
            .view-toggle-buttons,
            .sort-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .view-toggle-btn,
            .sort-btn {
                width: 100%;
                min-width: unset;
            }
            
            .products-table {
                min-width: 800px;
                font-size: 0.75rem;
            }
            
            .table-title {
                font-size: 1.2rem;
            }
            
            .table-header {
                padding: 20px 15px;
            }
        }
        
        /* ===== WHATSAPP TABLE BUTTON ===== */
        .whatsapp-cell {
            text-align: center;
            width: 14.28%;
        }
        
        .btn-whatsapp-table {
            background: #25D366;
            color: white;
            padding: 10px 16px;
            font-weight: 600;
            border-radius: var(--radius-md);
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.875rem;
            white-space: nowrap;
        }
        
        .btn-whatsapp-table:hover {
            background: #1DB954;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            text-decoration: none;
            color: white;
        }
        
        /* ===== RESPONSIVE WHATSAPP BUTTON ===== */
        @media (max-width: 768px) {
            .whatsapp-cell {
                padding: 15px 8px;
                min-width: 120px;
            }
            
            .btn-whatsapp-table {
                padding: 8px 12px;
                font-size: 0.8rem;
                gap: 4px;
            }
        }
        
        @media (max-width: 480px) {
            .whatsapp-cell {
                min-width: 100px;
            }
            
            .btn-whatsapp-table {
                padding: 6px 10px;
                font-size: 0.75rem;
            }
        }

/* ===== MODERN TABLE VIEW STYLES ===== */
.products-table-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
}

.table-header {
    padding: 25px 0;
    text-align: center;
    margin-bottom: 30px;
}

.table-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.table-title i {
    margin-right: 12px;
    color: var(--accent-color);
}

.brand-block {
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 30px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.brand-title:hover::before {
    left: 100%;
}

.brand-products {
    padding: 0;
}

.product-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1.2fr;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
    min-height: 70px;
    align-items: center;
}

.product-item:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02), rgba(var(--secondary-rgb), 0.02));
    transform: translateX(3px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.product-info {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.product-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.product-storage {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.product-kayit {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.product-status {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.text-success {
    color: #27ae60;
    filter: drop-shadow(0 2px 4px rgba(39, 174, 96, 0.3));
}

.text-danger {
    color: #e74c3c;
    filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.3));
}

.product-price {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-usd {
    font-weight: 700;
    font-size: 1.1rem;
    color: #3498db;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.price-tl {
    font-weight: 700;
    font-size: 1.1rem;
    color: #27ae60;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.product-order {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-btn:hover {
    background: linear-gradient(135deg, #128c7e, #0d7377);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.order-btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-item {
        grid-template-columns: 1.8fr 0.8fr 0.8fr 0.8fr 0.9fr 0.9fr 1fr;
    }
    
    .product-info {
        padding: 15px 20px;
    }
    
    .product-kayit,
    .product-status,
    .product-price,
    .product-order {
        padding: 15px 10px;
    }
}

/* ===== LIST VIEW HEADER STYLES ===== */
.list-header {
    background: var(--primary-color) !important;
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr; /* 5 sütun: Cihaz, Kayıt, Kutu, Fiyat, Sipariş */
    gap: 15px;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg) !important;
    position: sticky;
    top: 70px;
    z-index: 200 !important;
}

.product-list-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr; /* 5 sütun: Cihaz, Kayıt, Kutu, Fiyat, Sipariş */
    gap: 15px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-list-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

/* ===== RESPONSIVE LIST VIEW ===== */
@media (max-width: 1200px) {
    .list-header {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 12px;
        font-size: 0.8rem;
        padding: 12px 15px;
        background: var(--primary-color) !important;
        z-index: 200 !important;
        box-shadow: var(--shadow-lg) !important;
    }
    
    .product-list-item {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 12px;
        padding: 12px 15px;
    }
    
    .list-item-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    .btn-whatsapp-table {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Desktop-only elementleri mobilde gizle (görsel ve güncelleme) */
    .desktop-only {
        display: none !important;
    }
    
    /* Liste başlığı - 5 sütunlu düzenleme (Fiyat ve Sipariş ayrı) */
    .list-header {
        grid-template-columns: 2fr 1.2fr 0.8fr 1fr 1fr !important;
        gap: 6px;
        padding: 10px 8px;
        text-align: center;
        position: sticky;
        top: 60px;
        display: grid !important;
        font-size: 0.7rem;
        background: var(--primary-color) !important;
        z-index: 200 !important;
        box-shadow: var(--shadow-lg) !important;
    }
    
    .list-header > div {
        display: block;
        font-size: 0.7rem;
        padding: 4px 2px;
        font-weight: 600;
    }
    
    /* Liste öğeleri - 5 sütunlu düzenleme */
    .product-list-item {
        grid-template-columns: 2fr 1.2fr 0.8fr 1fr 1fr !important;
        gap: 6px;
        padding: 10px 8px;
        display: grid !important;
        min-height: 60px;
    }
    
    /* Mobilde fiyat alanını küçült */
    .list-item-price {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        text-align: center !important;
    }
    
    .list-item-price > div:first-child {
        font-size: 0.8rem !important;
    }
    
    .list-item-price > div:last-child {
        font-size: 0.7rem !important;
    }
    
    /* Mobilde sipariş butonunu küçült */
    .list-item-order {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .btn-whatsapp-table {
        padding: 6px 8px !important;
        font-size: 0.65rem !important;
        gap: 3px !important;
    }
    
    /* İçerik alanı optimizasyonu */
    .list-item-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
    }

    .list-item-content h3 {
        font-size: 0.85rem !important;
        margin: 0;
        line-height: 1.2;
        font-weight: 600;
        color: var(--text-primary);
    }

    .list-item-content span {
        font-size: 0.7rem !important;
        padding: 2px 6px;
        background: var(--primary-color);
        color: white;
        border-radius: 4px;
    }

    /* Kayıt alanı - tek satırda gösterim */
    .list-item-kayit {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.65rem;
        text-align: center;
        color: var(--text-secondary);
        line-height: 1.1;
        padding: 4px 2px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
    }
    
    /* Kutu durumu check iconları */
    .list-item-kutu-check {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.1rem;
    }
    
    /* Güncelleme sütununu mobilde gizle */
    .list-item-guncelleme-check {
        display: none !important;
    }

    /* Mobilde birleşik fiyat/sipariş alanı */
    .list-item-price-action {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-align: center;
    }

    .list-item-price-action > div:first-child {
        font-size: 0.85rem !important;
        font-weight: 700;
        color: var(--primary-color);
    }

    .list-item-price-action > div:nth-child(2) {
        font-size: 0.65rem !important;
        color: var(--text-secondary);
    }

    .btn-whatsapp-small {
        padding: 4px 6px !important;
        font-size: 0.6rem !important;
        border-radius: 4px !important;
        margin-top: 2px;
    }
    
    /* Stok durumu badge'leri */
    .badge {
        font-size: 0.6rem !important;
        padding: 3px 6px !important;
    }
}

@media (max-width: 480px) {
    /* 5 sütunlu düzenleme - Çok küçük ekranlar için */
    .list-header {
        padding: 8px 6px;
        font-size: 0.65rem;
        grid-template-columns: 1.8fr 1fr 0.6fr 0.8fr 0.8fr !important;
        gap: 4px;
        background: var(--primary-color) !important;
        z-index: 200 !important;
        box-shadow: var(--shadow-lg) !important;
    }
    
    .product-list-item {
        padding: 8px 6px;
        gap: 4px;
        grid-template-columns: 1.8fr 1fr 0.6fr 0.8fr 0.8fr !important;
    }
    
    /* Çok küçük ekranlarda fiyat alanını daha da küçült */
    .list-item-price > div:first-child {
        font-size: 0.7rem !important;
    }
    
    .list-item-price > div:last-child {
        font-size: 0.6rem !important;
    }
    
    /* Çok küçük ekranlarda sipariş butonu */
    .btn-whatsapp-table {
        padding: 4px 6px !important;
        font-size: 0.6rem !important;
        gap: 2px !important;
    }
    
    .list-item-content h3 {
        font-size: 0.75rem !important;
        line-height: 1.1;
    }
    
    .list-item-content span {
        font-size: 0.6rem !important;
        padding: 1px 4px;
    }

    /* Kayıt alanı - çok küçük ekranlarda daha kompakt */
    .list-item-kayit {
        font-size: 0.6rem !important;
        padding: 2px 1px;
        line-height: 1.0;
    }

    /* Sadece kutu iconları - güncelleme gizli */
    .list-item-kutu-check {
        font-size: 1rem !important;
    }
    
    .list-item-guncelleme-check {
        display: none !important;
    }

    /* Fiyat alanı */
    .list-item-price-action > div:first-child {
        font-size: 0.75rem !important;
    }

    .list-item-price-action > div:nth-child(2) {
        font-size: 0.6rem !important;
    }

    .btn-whatsapp-small {
        padding: 3px 5px !important;
        font-size: 0.55rem !important;
    }
    
    .badge {
        font-size: 0.55rem !important;
        padding: 2px 4px !important;
    }
}

@media (max-width: 768px) {
    .brand-block {
        margin-bottom: 25px;
        border-radius: 12px;
    }
    
    .brand-title {
        padding: 15px 20px;
        font-size: 1.2rem;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .product-info,
    .product-kayit,
    .product-status,
    .product-price,
    .product-order {
        border-bottom: 1px solid #f1f3f4;
        text-align: left;
        justify-content: flex-start;
        padding: 12px 20px;
    }
    
    .product-info {
        padding: 15px 20px;
    }
    
    .product-storage {
        margin-top: 5px;
    }
    
    .order-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Yeni badge stilleri */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    gap: 4px;
}

.badge-danger {
    background: #EF4444; /* Kırmızı */
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.badge-warning {
    background: #F59E0B; /* Turuncu */
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Desktop ve mobil metin kontrolü */
.mobile-break {
    display: none;
}

.desktop-text {
    display: inline;
}

/* Mobil badge optimizasyonu */
@media (max-width: 768px) {
    .badge {
        font-size: 0.65rem !important;
        padding: 4px 8px !important;
        gap: 3px;
        border-radius: 6px;
        letter-spacing: 0.3px;
    }
    
    .badge i {
        font-size: 0.8rem;
    }
    
    /* Mobilde iki satır, desktop'ta tek satır */
    .mobile-break {
        display: inline;
        line-height: 1.1;
    }
    
    .desktop-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .badge {
        font-size: 0.6rem !important;
        padding: 3px 6px !important;
        gap: 2px;
        border-radius: 4px;
        letter-spacing: 0.2px;
    }
    
    .badge i {
        font-size: 0.7rem;
    }
}

/* Liste görünümünde fiyat/sipariş alanı için stil */
.list-item-price-order {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.list-item-price-order > div:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.list-item-price-order > div:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.list-item-price-order .badge {
    margin-top: 5px;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    backdrop-filter: blur(5px); /* Blur background */
    -webkit-backdrop-filter: blur(5px);
    padding-top: 60px; /* Location of the box */
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    background-color: var(--bg-primary);
    margin: 5% auto; /* 15% from the top and centered */
    padding: 30px;
    border: 1px solid var(--border-color);
    width: 90%; /* Could be more or less, depending on screen size */
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: slideInTop 0.3s forwards;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-content h3 {
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.modal-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.modal-content ul li {
    margin-bottom: 5px;
}

.close-button {
    color: var(--text-light);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    transition: var(--transition);
}

.close-button:hover,
.close-button:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
    padding-right: 17px; /* Prevent content shifting when scrollbar disappears */
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    .modal-content h2 {
        font-size: 1.5rem;
    }
    .modal-content h3 {
        font-size: 1.1rem;
    }
    .close-button {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}

/* ===== MOBILE FILTERING STYLES ===== */
.mobile-hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
}

/* Mobil filtreleme aktif olduğunda grid düzenini optimize et */
.mobile-filtering-active .products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 20px !important;
    align-items: start !important;
}

.mobile-filtering-active .products-list {
    display: block !important;
}

.mobile-filtering-active .product-list-item.mobile-hidden {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.mobile-filtering-active .product-card.mobile-hidden {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Mobil cihazlarda grid optimizasyonu */
@media (max-width: 768px) {
    .mobile-filtering-active .products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .mobile-filtering-active .product-card:not(.mobile-hidden) {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px !important;
    }
    
    .mobile-filtering-active .product-list-item:not(.mobile-hidden) {
        display: grid !important;
        margin-bottom: 10px !important;
    }
}


/* ===== MOBIL OVERRIDE - MARKA BUTONU STİLİ ===== */
@media screen and (max-width: 768px) {
    /* Mobilde tüm butonlar marka buton stili - beyaz arka plan, kırmızı border */
    .brand-filter,
    .view-toggle-btn,
    .sort-btn {
        background: white !important;
        color: #EF4444 !important;
        border: 2px solid #EF4444 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
    
    /* Aktif ve hover durumlarında kırmızı arka plan, beyaz yazı */
    .brand-filter:hover,
    .brand-filter.active,
    .view-toggle-btn:hover,
    .view-toggle-btn.active,
    .sort-btn:hover,
    .sort-btn.active {
        background: #EF4444 !important;
        color: white !important;
        border-color: #DC2626 !important;
        box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
    }
    
    /* Genel btn sınıfı - farklı stil */
    .btn:not(.btn-whatsapp):not(.btn-whatsapp-table) {
        background: #EF4444 !important;
        color: white !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }
}

@media screen and (max-width: 480px) {
    /* Küçük ekranlar için aynı marka buton stili */
    .brand-filter,
    .view-toggle-btn,
    .sort-btn {
        background: white !important;
        color: #EF4444 !important;
        border: 2px solid #EF4444 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
    
    /* Aktif ve hover durumlarında kırmızı arka plan, beyaz yazı */
    .brand-filter:hover,
    .brand-filter.active,
    .view-toggle-btn:hover,
    .view-toggle-btn.active,
    .sort-btn:hover,
    .sort-btn.active {
        background: #EF4444 !important;
        color: white !important;
        border-color: #DC2626 !important;
        box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
    }
}

/* JavaScript değişiklikleri için basit override */
body .brand-filter.active,
body .view-toggle-btn.active,
body .sort-btn.active {
    background: #EF4444 !important;
    color: white !important;
    border-color: #DC2626 !important;
}

/* Tıklama sonrası kalan renkleri temizleme - TÜM PSEUDO-STATES */
.brand-filter:focus,
.view-toggle-btn:focus,
.sort-btn:focus,
.brand-filter:active,
.view-toggle-btn:active,
.sort-btn:active,
.brand-filter:visited,
.view-toggle-btn:visited,
.sort-btn:visited,
.brand-filter:focus-visible,
.view-toggle-btn:focus-visible,
.sort-btn:focus-visible,
.brand-filter:focus-within,
.view-toggle-btn:focus-within,
.sort-btn:focus-within {
    background: white !important;
    color: #EF4444 !important;
    border: 2px solid #EF4444 !important;
    outline: none !important;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1), 0 1px 2px rgba(220, 38, 38, 0.1) !important;
}

/* Aktif durumdaki butonlar için özel override */
.brand-filter.active:focus,
.view-toggle-btn.active:focus,
.sort-btn.active:focus,
.brand-filter.active:active,
.view-toggle-btn.active:active,
.sort-btn.active:active,
.brand-filter.active:visited,
.view-toggle-btn.active:visited,
.sort-btn.active:visited,
.brand-filter.active:focus-visible,
.view-toggle-btn.active:focus-visible,
.sort-btn.active:focus-visible,
.brand-filter.active:focus-within,
.view-toggle-btn.active:focus-within,
.sort-btn.active:focus-within {
    background: #EF4444 !important;
    color: white !important;
    border: 2px solid #DC2626 !important;
    outline: none !important;
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3), 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
}

/* Tarayıcı default stillerini tamamen override etme */
.brand-filter,
.view-toggle-btn,
.sort-btn {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-focus-ring-color: transparent !important;
    -moz-focus-inner: 0 !important;
}

.brand-filter::-moz-focus-inner,
.view-toggle-btn::-moz-focus-inner,
.sort-btn::-moz-focus-inner {
    border: 0 !important;
    padding: 0 !important;
    outline: none !important;
}

/* WebKit ve Blink için özel kurallar */
.brand-filter::-webkit-any-link,
.view-toggle-btn::-webkit-any-link,
.sort-btn::-webkit-any-link {
    color: #EF4444 !important;
    text-decoration: none !important;
}

.brand-filter.active::-webkit-any-link,
.view-toggle-btn.active::-webkit-any-link,
.sort-btn.active::-webkit-any-link {
    color: white !important;
}

/* Son çare: tüm durumlar için zorla override */
.brand-filter[style*="color"],
.view-toggle-btn[style*="color"],
.sort-btn[style*="color"],
.brand-filter[style*="background"],
.view-toggle-btn[style*="background"],
.sort-btn[style*="background"] {
    background: white !important;
    color: #EF4444 !important;
    border: 2px solid #EF4444 !important;
}

.brand-filter.active[style*="color"],
.view-toggle-btn.active[style*="color"],
.sort-btn.active[style*="color"],
.brand-filter.active[style*="background"],
.view-toggle-btn.active[style*="background"],
.sort-btn.active[style*="background"] {
    background: #EF4444 !important;
    color: white !important;
    border: 2px solid #DC2626 !important;
}

/* Sıralama butonundaki yeşil icon renklerini zorla kırmızıya çevirme */
.sort-btn i,
.sort-btn .status-icon-green,
.sort-btn [class*="status-icon"],
.sort-btn [class*="green"],
.sort-btn .fas,
.sort-btn .fa {
    color: #EF4444 !important;
}

.sort-btn.active i,
.sort-btn.active .status-icon-green,
.sort-btn.active [class*="status-icon"],
.sort-btn.active [class*="green"],
.sort-btn.active .fas,
.sort-btn.active .fa {
    color: white !important;
}

/* Tüm butonlarda yeşil renkleri temizle */
.brand-filter *,
.view-toggle-btn *,
.sort-btn * {
    color: inherit !important;
}

/* Secondary color override - yeşil renkleri kırmızıya çevir */
.sort-btn .status-icon-green {
    color: #EF4444 !important;
}

.sort-btn.active .status-icon-green {
    color: white !important;
}

/* CSS variable override - butonlar içinde */
.sort-btn {
    --secondary-color: #EF4444 !important;
}

.sort-btn.active {
    --secondary-color: white !important;
}

/* ===== SADECE BUTON ÖZELLİ ÇÖZÜM: GLOBAL OVERRIDE KALDIRILDI ===== */
/* Sadece butonlarda yeşil renkleri kırmızıya çevirme */

/* Butonlardaki yeşil renkleri override et */
.brand-filter .status-icon-green,
.view-toggle-btn .status-icon-green,
.sort-btn .status-icon-green,
.brand-filter [class*="status-icon-green"],
.view-toggle-btn [class*="status-icon-green"],
.sort-btn [class*="status-icon-green"],
.brand-filter [class*="green"]:not(.hero-section *),
.view-toggle-btn [class*="green"]:not(.hero-section *),
.sort-btn [class*="green"]:not(.hero-section *) {
    color: #EF4444 !important;
}

/* Butonlardaki aktif durumda beyaz */
.brand-filter.active .status-icon-green,
.view-toggle-btn.active .status-icon-green,
.sort-btn.active .status-icon-green,
.brand-filter.active [class*="status-icon-green"],
.view-toggle-btn.active [class*="status-icon-green"],
.sort-btn.active [class*="status-icon-green"],
.brand-filter.active [class*="green"],
.view-toggle-btn.active [class*="green"],
.sort-btn.active [class*="green"] {
    color: white !important;
}

/* Hero section - tüm yazılar ve ikonlar beyaz */
.hero-section,
.hero-content,
.hero-features,
.hero-feature,
.hero-content h1,
.hero-content p,
.hero-feature h3,
.hero-currency-info,
.hero-currency-info *,
.currency-item,
.currency-label,
.rate {
    color: white !important;
}

/* Hero section - tüm elementler beyaz */
.hero-section * {
    color: white !important;
}

/* Hero section FontAwesome ikonları da beyaz */
.hero-section .hero-feature i,
.hero-section i,
.hero-feature i,
.hero-content i,
.hero-section .fas,
.hero-section .fa,
.hero-feature .fas,
.hero-feature .fa {
    color: white !important;
}

/* Sadece butonları hedefleyen spesifik override - sadece butonlarda CSS variable */
.brand-filter {
    --secondary-color: #EF4444 !important;
}
.view-toggle-btn {
    --secondary-color: #EF4444 !important;
}
.sort-btn {
    --secondary-color: #EF4444 !important;
}

/* Buton normal durumu */
.brand-filter,
.view-toggle-btn,
.sort-btn {
    color: #EF4444 !important;
}

/* Buton aktif durumu */
.brand-filter.active,
.view-toggle-btn.active,
.sort-btn.active {
    color: white !important;
}

/* Buton içerikleri inherit - sadece butonlarda */
.brand-filter *,
.view-toggle-btn *,
.sort-btn * {
    color: inherit !important;
}
    
    /* ===== MOBIL KART BAŞLIKLARI VE MODEL ADLARI ===== */
    @media only screen and (max-width: 768px) {
        /* Kart başlıkları kırmızı - mobil */
        .product-header,
        .product-card .product-header,
        .products-grid .product-header {
            background: linear-gradient(135deg, #EF4444, #DC2626) !important;
            background-color: #EF4444 !important;
            color: white !important;
        }
        
        /* Model adları beyaz - mobil */
        .product-title,
        .product-header .product-title,
        .product-card .product-title,
        .product-card .product-header .product-title,
        .products-grid .product-title {
            color: white !important;
            font-weight: 700 !important;
        }
    }

@media only screen and (max-width: 480px) {
    /* Küçük ekranlar için aynı kurallar */
    .product-header,
    .product-card .product-header,
    .products-grid .product-header {
        background: linear-gradient(135deg, #EF4444, #DC2626) !important;
        background-color: #EF4444 !important;
        color: white !important;
    }
    
    .product-title,
    .product-header .product-title,
    .product-card .product-title,
    .product-card .product-header .product-title,
    .products-grid .product-title {
        color: white !important;
        font-weight: 700 !important;
    }
}

/* ===== MOBIL KART BUTON BOYUTLARI EŞITLEME ===== */
@media only screen and (max-width: 768px) {
    /* Kart görünümündeki butonları masaüstü ile aynı boyutta - mobil */
    .product-card a[style*="background: var(--secondary-color)"],
    .product-card a[href*="epey"],
    .product-details a[href*="epey"],
    .products-grid a[href*="epey"] {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 10px !important;
    }
    
    /* WhatsApp butonu sadece boyut eşitlemesi - renk korunuyor */
    .btn-whatsapp {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 10px !important;
    }
}

@media only screen and (max-width: 480px) {
    /* Küçük ekranlar için de masaüstü boyutları */
    .product-card a[style*="background: var(--secondary-color)"],
    .product-card a[href*="epey"],
    .product-details a[href*="epey"],
    .products-grid a[href*="epey"] {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 10px !important;
    }
    
    /* WhatsApp butonu küçük ekranlarda sadece boyut eşitlemesi - renk korunuyor */
    .btn-whatsapp {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        margin-bottom: 10px !important;
    }
}
