/* ==========================================================================
   Anlık Fırsatlar - Premium Light Theme Global Stylesheet (2026 Edition)
   ========================================================================== */

:root {
    --bg-color: #f6f8fc;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --border-color: rgba(15, 23, 42, 0.06);
    --border-hover: rgba(255, 153, 0, 0.5);
    
    /* Brand Colors */
    --primary-color: #ff9900;       /* Amazon Orange */
    --primary-glow: rgba(255, 153, 0, 0.25);
    --success-color: #059669;       /* Pulsing Green (Slate Friendly) */
    --success-glow: rgba(5, 150, 105, 0.3);
    --danger-color: #dc2626;
    
    /* Text Colors */
    --text-main: #0f172a;           /* Deep Slate (Charcoal) */
    --text-muted: #475569;         /* Muted Slate Gray */
    --text-dark: #94a3b8;          /* Light Cool Gray */

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-anchor: none !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Arka Plan Yumuşak Pastel Glow Efektleri (Light Theme Friendly) */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.glow-1 {
    background: radial-gradient(circle, rgba(255, 153, 0, 0.1) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    right: -100px;
}

.glow-2 {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(0,0,0,0) 70%);
    bottom: 20%;
    left: -200px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    text-transform: uppercase;
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

/* Canlı Yayın Rozeti */
.live-badge {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 50px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--success-color);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success-color);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

/* Arama Çubuğu */
.search-section {
    flex: 1;
    max-width: 500px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.search-box input {
    width: 100%;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 42px;
    padding: 0 16px 0 48px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.search-box input:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.search-box input:focus + .search-icon {
    fill: var(--primary-color);
}

.clear-search {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.clear-search:hover {
    color: var(--text-main);
}

/* Autocomplete Arama Önerileri Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    z-index: 1000;
    overflow: hidden;
    display: none;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-dropdown.show {
    display: flex;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
}

.search-dropdown-item:last-of-type {
    border-bottom: none;
}

.search-dropdown-item:hover {
    background: rgba(15, 23, 42, 0.03);
}

.search-dropdown-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
    background: #ffffff;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.search-dropdown-placeholder-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #f8fafc;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.search-dropdown-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.search-dropdown-title {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-dark);
}

.search-dropdown-price {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2px;
}

.search-dropdown-all {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--bg-card);
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.search-dropdown-all:hover {
    background: var(--primary-glow);
}

.search-dropdown-msg {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* Arama İçi Spinner */
.search-spinner {
    position: absolute;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 153, 0, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: search-spin 0.6s linear infinite;
    display: none;
}

@keyframes search-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Kategori Navigasyon Şeridi (Category Navigation Wrapper & Ok Butonları) */
.category-nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 24px 0 12px 0;
    width: 100%;
}

.category-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 4px 12px 4px; /* Kaydırma çubuğu için alt boşluk */
    scrollbar-width: none; /* Firefox için gizle */
    -ms-overflow-style: none; /* IE için gizle */
    scroll-behavior: smooth; /* Yumuşak kaydırma */
    width: 100%;
}

.category-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari için gizle */
}

.scroll-arrow {
    position: absolute;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    outline: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-tap-highlight-color: transparent;
}

.scroll-arrow.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-arrow:hover {
    background: #ffffff;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px var(--primary-glow);
    transform: translateY(-50%) scale(1.1); /* Konumu koruyarak büyüt */
}

.scroll-arrow-left {
    left: -19px;
}

.scroll-arrow-right {
    right: -19px;
}

/* Dokunmatik cihazlarda okları gizle (Kullanıcı parmakla kaydırır) */
@media (pointer: coarse) {
    .scroll-arrow {
        display: none !important;
    }
}

.category-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none; /* SEO uyumlu a etiketlerindeki varsayılan alt çizgiyi kaldırır */
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.01);
    outline: none;
}

.category-btn:hover {
    background: #f8fafc;
    border-color: rgba(255, 153, 0, 0.4);
    color: var(--text-main);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7700 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* İstatistik Şeridi */
.stats-bar {
    margin: 12px 0 24px 0; /* Boşluklar kategorilere göre ayarlandı */
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
}

.status-online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
}

.status-online::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--success-color);
    border-radius: 50%;
}

.status-offline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--danger-color);
}

.status-offline::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--danger-color);
    border-radius: 50%;
}

/* Grid Layout */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Fırsat Kartı (Card) */
.deal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-bounce);
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.deal-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08), 0 0 20px rgba(255, 153, 0, 0.03);
}

/* Yeni Fırsat Giriş Animasyonu */
@keyframes slideInFromTop {
    0 {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.deal-card.new-deal-animation {
    animation: slideInFromTop 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Kart Görseli */
.card-image-wrapper {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: var(--transition-smooth);
}

.deal-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Görseli Olmayan Ürünler İçin */
.card-image-wrapper.no-image {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

/* Mağaza Rozeti (Amazon) */
.store-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 153, 0, 0.12);
    border: 1px solid rgba(255, 153, 0, 0.25);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #e67e22;
    backdrop-filter: blur(10px);
}

/* Fiyat Geçmişi Rozeti */
.history-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 153, 0, 0.12);
    border: 1px solid rgba(255, 153, 0, 0.25);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    text-decoration: none;
}

.history-badge:hover {
    background: #e67e22;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.history-badge svg {
    display: block;
    transition: transform 0.3s ease;
}

.history-badge:hover svg {
    transform: translate(1px, -1px);
}

/* Kart Gövdesi */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Ürün Eklenme Zamanı (Meta) */
.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.deal-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.clock-icon {
    width: 12px;
    height: 12px;
    color: var(--text-dark);
}

.absolute-time {
    margin-left: auto;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Güncel/Alev Efektli Rozet */
.hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
    border: 1px solid rgba(255, 69, 0, 0.35);
    color: #ff5500;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: hot-pulse 2s infinite ease-in-out;
}

@keyframes hot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(255, 69, 0, 0.15);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 12px rgba(255, 69, 0, 0.4);
    }
}

.hot-badge .flame-icon {
    font-size: 11px;
    animation: flame-burn 1.5s infinite alternate ease-in-out;
    display: inline-block;
}

@keyframes flame-burn {
    0% { transform: scale(1) rotate(-4deg); }
    100% { transform: scale(1.2) rotate(4deg); }
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 12px; /* Margin adjusted for badges */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 67.5px;
}

/* Fırsat Rozetleri (Badges Container) */
.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

/* Base Badge Style */
.card-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid transparent;
    line-height: 1.2;
}

/* Badge Types Colors */
.badge-stock {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.badge-seller {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.badge-campaign {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

.badge-coupon {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.badge-condition {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.15);
    color: #475569;
}

.badge-promo {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

.badge-discount {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
    font-weight: 700;
}

.badge-oldprice {
    background: rgba(100, 116, 139, 0.08);
    border-color: rgba(100, 116, 139, 0.15);
    color: #64748b;
    text-decoration: line-through;
}


/* Kart Alt Kısmı */
.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-value {
    font-size: 18px;
    font-weight: 800;
    color: #e67e22; /* Amazon Orange Darker for high contrast on light bg */
    white-space: nowrap;
}

/* Fırsata Git Butonu */
.buy-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7700 100%);
    color: #ffffff;                 /* Pure white text for premium readability */
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px var(--primary-glow);
    cursor: pointer;
}

.buy-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px var(--primary-glow);
    filter: brightness(1.05);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.buy-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Fırsat Yok / Arama Bulunamadı */
.no-deals {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.no-deals-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-deals h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.no-deals p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    margin-top: auto;
    font-size: 13.5px;
    color: var(--text-muted);
    overflow-anchor: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Sol Sütun - Marka & Hakkında */
.footer-about .footer-logo {
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 4px;
}

.footer-about .footer-desc {
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.footer-socials .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-socials .social-icon:hover {
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.footer-socials .social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.footer-socials .social-icon.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
}

.footer-socials .social-icon.x-twitter:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-socials .social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(204, 35, 102, 0.25);
}

/* Orta Sütun - Linkler */
.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 13px;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Sağ Sütun - En Son Fırsatlar */
.footer-latest-deals ul {
    gap: 12px;
}

.footer-latest-deals ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 13px;
}

.footer-latest-deals ul li a:hover {
    color: var(--primary-color);
}

.footer-latest-deals .deal-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    flex-grow: 1;
}

.footer-latest-deals .deal-price {
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-top: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 11px;
    color: var(--text-dark);
    margin-top: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 80px 0; /* Alt bar için boşluk */
    }
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column ul li a:hover {
        transform: none;
    }
    .footer-latest-deals ul li a {
        justify-content: center;
    }
    .footer-latest-deals .deal-title {
        flex-grow: 0;
    }
}


/* ==========================================================================
   Responsive Tasarım & Mega Menü, Mobil Çekmece & Alt Navigasyon (WebView Optimizasyonu)
   ========================================================================== */

/* Header Butonları */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    outline: none;
}

.hamburger-btn:hover {
    background: rgba(15, 23, 42, 0.04);
}

.desktop-mega-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
    margin-left: auto; /* Arama çubuğunun soluna yanaşmasını sağlar */
    box-sizing: border-box;
}

.desktop-mega-trigger:hover,
.desktop-mega-trigger.active {
    background: #ffffff;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.desktop-mega-trigger .chevron-icon {
    transition: transform 0.3s ease;
}

.desktop-mega-trigger.active .chevron-icon {
    transform: rotate(180deg);
}

/* Desktop Mega Menü */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: calc(100% - 48px);
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 1px rgba(15, 23, 42, 0.1);
    padding: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-group-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: left;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
    text-decoration: none;
}

.mega-menu-item:hover,
.mega-menu-item.active {
    background: rgba(255, 153, 0, 0.08);
    color: #e67e22;
    padding-left: 14px;
}

.mega-menu-item .item-emoji {
    font-size: 16px;
}

/* Mobil Kayar Çekmece (Drawer) */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    box-shadow: 20px 0 40px rgba(15, 23, 42, 0.06);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.mobile-drawer.open {
    transform: translateX(290px);
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    outline: none;
    line-height: 1;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
}

.drawer-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-left: 8px;
}

.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: 48px; /* Dokunmatik hedef */
    outline: none;
    text-decoration: none;
}

.drawer-item:hover,
.drawer-item.active {
    background: rgba(255, 153, 0, 0.08);
    color: #e67e22;
}

.drawer-item .item-emoji {
    font-size: 18px;
}

/* Mobil Alt Navigasyon (Bottom Nav) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.03);
    z-index: 999;
    display: none; /* Masaüstünde gizle */
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom); /* iOS Çentik Koruması */
    box-sizing: content-box;
}

.bottom-nav-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    height: 64px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-btn svg {
    transition: transform 0.2s ease;
}

.bottom-nav-btn:hover svg,
.bottom-nav-btn.active svg {
    transform: scale(1.1);
}

.bottom-nav-btn.active {
    color: var(--primary-color);
}

/* ==========================================================================
   Ek Mobil ve WebView Optimizasyonları (Media Queries)
   ========================================================================= */

@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* Alt navigasyon çubuğu için gövdeye boşluk */
    }

    .hamburger-btn {
        display: flex;
    }

    .desktop-mega-trigger {
        display: none; /* Mobilde gizle */
    }

    .header-container {
        flex-direction: row !important; /* Logoyu ve hamburgeri yan yana tut */
        align-items: center !important;
        justify-content: space-between;
        padding: 14px 16px;
    }

    .logo-section {
        width: auto;
        justify-content: flex-start;
        gap: 12px;
    }

    /* Mobilde arama alanını header'da daraltıyoruz, alt barda arama butonu olacak */
    .search-section {
        display: none; /* Alternatif arama için */
    }

    .search-section.show-mobile-search {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 16px;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        z-index: 998;
        animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

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

    .stats-bar {
        margin-top: 16px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }

    .mega-menu {
        display: none !important;
    }

    .bottom-nav {
        display: grid; /* Mobilde göster */
    }
    
    /* Mobil dokunmatik hassasiyeti artırıcı kurallar */
    button, a {
        touch-action: manipulation;
    }
}

/* ==========================================================================
   Dinamik Sayfalama & Yükleme Spinner Tasarımları
   ========================================================================== */
.load-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    overflow-anchor: none;
}

.load-more-btn {
    background: #ffffff;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(255, 153, 0, 0.08);
    font-family: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7700 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px) scale(1.02);
}

.load-more-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Pulsing Üç Nokta Spinner */
.loading-spinner {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 46px;
}

.spinner-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: spinnerBounce 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes spinnerBounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.3;
    } 
    40% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ==========================================================================
   Ürün Detay Sayfası & Yapay Zeka İncelemesi Tasarımları
   ========================================================================== */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 24px;
    margin-bottom: 50px;
}

.detail-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-image-section {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.detail-image-section img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.detail-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-main-card .product-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    height: auto;
    display: block;
    margin: 0;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-price-box {
    background: #f8fafc;
    border: 1.5px dashed rgba(255, 153, 0, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.detail-price-box .price-value {
    font-size: 28px;
    font-weight: 800;
}

.detail-buy-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7700 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px var(--primary-glow);
    cursor: pointer;
    text-align: center;
}

.detail-buy-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 24px var(--primary-glow);
    filter: brightness(1.05);
}

/* AI İnceleme Kartı (Premium Glassmorphism) */
.ai-review-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    height: fit-content;
}

/* AI Kart Parlaması */
.ai-review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.4) 0%, rgba(255, 255, 255, 0) 40%, rgba(16, 185, 129, 0.2) 100%);
    z-index: -1;
    pointer-events: none;
}

.ai-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 153, 0, 0.1);
    padding-bottom: 14px;
}

.ai-review-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 750;
    color: var(--text-main);
}

.ai-review-badge {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(255, 153, 0, 0.25);
    color: #e67e22;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ai-review-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 500;
    text-align: justify;
}

.ai-review-content p {
    margin-bottom: 12px;
}

.ai-review-content p:last-child {
    margin-bottom: 0;
}

/* Benzer Fırsatlar Alanı */
.related-deals-section {
    margin-top: 20px;
    margin-bottom: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.related-deals-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ürün Detay Mobil Uyum */
@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .detail-main-card {
        padding: 20px;
        gap: 16px;
    }
    
    .detail-image-section {
        padding: 10px;
    }
    
    .detail-image-section img {
        max-height: 250px;
    }
    
    .detail-main-card .product-title {
        font-size: 18px;
        margin: 0;
    }
    
    .detail-price-box {
        padding: 12px 16px;
    }
    
    .detail-price-box .price-value {
        font-size: 22px;
    }
    
    .ai-review-card {
        padding: 20px;
    }
}

/* ==========================================================================
   Ürün Detay Sayfası Yeni Grid ve Sidebar Stilleri (Son Fırsatlar)
   ========================================================================== */
/* Ana Ürün Detay Yerleşimi - Tam Genişlik */
.product-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 12px;
    margin-bottom: 50px;
}

.detail-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-body-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}


/* Sticky Sidebar */
.detail-sidebar {
    height: fit-content;
    position: sticky;
    top: 96px; /* Header yüksekliği + boşluk */
    z-index: 10;
}

.sidebar-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.sidebar-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-deals-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-deal-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 14px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.sidebar-deal-item:hover {
    background: #f8fafc;
    border-color: rgba(255, 153, 0, 0.12);
    transform: translateX(4px);
}

.sidebar-deal-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 4px;
}

.sidebar-deal-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sidebar-deal-img.no-image {
    background: #f1f5f9;
}

.sidebar-deal-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    flex-grow: 1;
}

.sidebar-deal-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    font-size: 11px;
}

.sidebar-deal-price {
    font-weight: 800;
    color: #e67e22;
}

.sidebar-deal-time {
    color: var(--text-dark);
    font-size: 10px;
}

/* Tablet & Mobil Uyum */
@media (max-width: 992px) {
    .product-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .detail-sidebar {
        position: static;
    }
}

/* Sosyal Paylaşım Butonları (Hover Animasyonları) */
.share-btn {
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.share-btn:hover {
    transform: translateY(-3px) scale(1.12);
    filter: brightness(1.08);
}

/* Kategori Altı SEO Tanıtım ve Makale Kartı */
.category-seo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.02);
}

.category-seo-content {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.category-seo-content p {
    margin-bottom: 16px;
}

.category-seo-content p:last-child {
    margin-bottom: 0;
}

.category-seo-content strong {
    color: var(--text-main);
    font-weight: 700;
}

.category-seo-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.category-seo-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-seo-content li {
    color: var(--text-muted);
}

/* ==========================================================================
   Tarayıcı Bildirim Zil Butonu & İlgili Tasarımlar
   ========================================================================== */
.notification-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
    user-select: none;
    box-sizing: border-box;
}

.notification-btn:hover {
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-main);
    transform: scale(1.05);
}

.notification-btn.active {
    background: rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.3);
    color: var(--primary-color);
    animation: pulse-bell 2s infinite;
}

.notification-btn.active:hover {
    background: rgba(255, 153, 0, 0.15);
    color: #ff7700;
}

.notification-btn.denied {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.15);
    color: var(--danger-color);
}

.notification-btn.denied:hover {
    transform: none;
}

/* Pulsing effect for active notifications */
@keyframes pulse-bell {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 153, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
    }
}

/* Kırmızı bildirim noktası / rozeti */
.bell-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: var(--danger-color);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: none;
}

.notification-btn.active .bell-badge {
    display: block;
}

/* Mobilde zil butonunun sığması için */
@media (max-width: 768px) {
    .notification-btn {
        width: 36px;
        height: 36px;
    }
    
    /* Mobilde live-badge'i biraz daha daraltarak zil butonuna yer açalım */
    .live-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* ==========================================================================
   Tarayıcı Bildirim Filtreleme Popover Paneli
   ========================================================================== */
.notification-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.notification-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 290px;
    max-height: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 0 1px rgba(15, 23, 42, 0.1);
    padding: 16px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: popoverFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.notification-popover.open {
    display: flex;
}

@keyframes popoverFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.popover-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.popover-body {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 280px;
    padding-right: 4px;
}

/* Custom Scrollbar for Popover */
.popover-body::-webkit-scrollbar {
    width: 4px;
}
.popover-body::-webkit-scrollbar-track {
    background: transparent;
}
.popover-body::-webkit-scrollbar-thumb {
    background: var(--text-dark);
    border-radius: 10px;
}

.popover-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    user-select: none;
}

.popover-row:hover {
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-main);
}

.popover-row input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Mobilde popover konumlaması */
@media (max-width: 768px) {
    .notification-popover {
        right: -40px; /* Butonun sağ hizasını biraz esnetelim taşmasın */
        width: 260px;
    }
}

/* Detay Sayfası Eski/Süresi Dolan Fırsat Bildirimi */
.expired-overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100;
    padding: 20px;
}

.expired-warning-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
    color: #ffffff;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: warning-bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.expired-warning-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.expired-warning-card p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.6;
    opacity: 0.95;
}

.expired-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    padding: 0;
}

.expired-close-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes warning-bounce {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   Price History Styles
   ========================================================================== */
.price-history-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    height: fit-content;
    margin-top: 24px;
}

.price-history-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.3) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 153, 0, 0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

.price-history-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 24px;
    align-items: start;
}

.price-history-table-container {
    max-height: 280px;
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.3);
}

.price-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.price-history-table th {
    background: rgba(255, 153, 0, 0.05);
    color: var(--text-muted);
    font-weight: 700;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 153, 0, 0.1);
}

.price-history-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    color: var(--text-main);
}

.price-history-table tr:last-child td {
    border-bottom: none;
}

.price-history-table td.price-cell {
    font-weight: 700;
    color: var(--primary-color);
}

.price-history-chart-container {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 16px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.price-history-chart-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.chart-filters {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.chart-filter-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
}

.chart-filter-btn:hover {
    background: rgba(255, 153, 0, 0.05);
    border-color: rgba(255, 153, 0, 0.3);
    color: var(--primary-color);
}

.chart-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.price-stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.price-stat-row {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.price-stat-row.current-price-row {
    background: rgba(255, 153, 0, 0.06);
    border-color: rgba(255, 153, 0, 0.2);
}

.price-stat-row .stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 700;
}

.price-stat-row .stat-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
}

.price-stat-row.current-price-row .stat-value {
    color: var(--primary-color);
}

.price-stat-summary {
    grid-column: span 3;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: #065f46;
    text-align: center;
    line-height: 1.4;
}

.toggle-table-btn {
    display: none;
}

@media (max-width: 768px) {
    .price-history-card {
        padding: 16px !important;
        border-radius: 18px !important;
    }
    .price-history-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .toggle-table-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: rgba(255, 153, 0, 0.08);
        border: 1px solid rgba(255, 153, 0, 0.15);
        color: var(--primary-color);
        padding: 10px 16px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.2s ease;
        margin-bottom: 8px;
        font-family: 'Outfit', sans-serif;
    }
    .toggle-table-btn .arrow-icon {
        transition: transform 0.2s ease;
    }
    .toggle-table-btn.expanded .arrow-icon {
        transform: rotate(180deg);
    }
    .price-history-table-container {
        display: none;
        max-height: 200px;
        margin-bottom: 12px;
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 12px;
    }
    .price-history-table-container.show {
        display: block !important;
    }
    .price-history-chart-container {
        height: 220px !important;
        padding: 8px !important;
    }
    .price-history-table th,
    .price-history-table td {
        padding: 8px !important;
        font-size: 13px !important;
    }
    .price-stats-panel {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .price-stat-row {
        padding: 8px 4px !important;
    }
    .price-stat-row .stat-label {
        font-size: 8px !important;
    }
    .price-stat-row .stat-value {
        font-size: 12px !important;
    }
    .price-stat-summary {
        grid-column: span 3 !important;
        font-size: 11.5px !important;
        padding: 10px !important;
    }
}




/* ==========================================================================
   Email Subscriber Box Styles (Anlık Fırsatlar)
   ========================================================================== */
.price-subscriber-box {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(255, 153, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin: 20px 0;
}

.subscriber-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.subscriber-text {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.subscriber-form {
    display: flex;
    gap: 8px;
    width: 100%;
}

.subscriber-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.subscriber-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.subscriber-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    padding: 10px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.subscriber-btn:hover {
    background: #e08800;
    transform: translateY(-1px);
}

.subscriber-btn:disabled {
    background: var(--text-dark);
    cursor: not-allowed;
    transform: none;
}

.subscriber-message {
    font-size: 12px;
    margin-top: 8px;
    font-weight: 600;
}

.subscriber-success-state {
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 480px) {
    .subscriber-form {
        flex-direction: column;
    }
    .subscriber-btn {
        justify-content: center;
    }
}

/* ==========================================================================
   Topluluk Oylaması (Sıcak/Değmez) Buton Stilleri
   ========================================================================== */

.card-vote-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    margin-top: 4px;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

[data-theme="dark"] .vote-btn {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.vote-btn:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.1);
}

[data-theme="dark"] .vote-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.vote-btn.vote-hot:hover, .vote-btn.vote-hot.active {
    background: rgba(255, 69, 0, 0.08);
    border-color: rgba(255, 69, 0, 0.25);
    color: #ff4500;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.06);
}

.vote-btn.vote-cold:hover, .vote-btn.vote-cold.active {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
    color: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.06);
}

.vote-btn.active {
    transform: scale(1.05);
    font-weight: 700;
}

.vote-btn.vote-hot.active {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
    border-color: rgba(255, 69, 0, 0.4);
}

.vote-btn.vote-cold.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.4);
}

.vote-count {
    font-variant-numeric: tabular-nums;
}

/* Tıklama Sıçrama Animasyonu */
@keyframes vote-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.22); }
}

.vote-btn.bounce {
    animation: vote-bounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Detay Sayfası Özel */
.detail-vote-btn {
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

/* Vote and Share Panel Alignment */
.vote-share-panel {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
    padding-top: 20px;
    width: 100%;
}

[data-theme="dark"] .vote-share-panel {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.detail-vote-section,
.share-section-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    border: none !important;
}

.detail-vote-section > span,
.share-section-detail > span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

.detail-vote-bar {
    display: inline-flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.share-section-detail div {
    display: inline-flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    width: 100%;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .detail-body-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    .vote-share-panel {
        flex-direction: column;
        gap: 24px;
    }
    .detail-vote-section {
        border-bottom: 1px dashed rgba(15, 23, 42, 0.08) !important;
        padding-bottom: 20px !important;
    }
    [data-theme="dark"] .detail-vote-section {
        border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    }
}

/* AI Review Collapsible Styles */
.ai-review-content-wrapper {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ai-review-content-wrapper.collapsed .ai-review-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ai-review-content-wrapper.collapsed .ai-review-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, var(--bg-card), transparent);
    pointer-events: none;
}

.ai-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px auto 0 auto;
    background: rgba(255, 153, 0, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(255, 153, 0, 0.2);
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.ai-toggle-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.2);
}

.ai-toggle-btn svg {
    transition: transform 0.3s ease;
}

}

/* Breadcrumb Styles */
.breadcrumb {
    margin: 28px 0 8px 0;
    font-size: 13px;
    font-weight: 500;
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
    color: var(--text-muted);
}
.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}
.breadcrumb-item a:hover {
    color: var(--primary-color);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 8px;
    color: var(--border-color);
    font-weight: 400;
}
.breadcrumb-item.active {
    color: var(--text-main);
    font-weight: 700;
}

/* ==========================================================================
   Gerçek İndirim Rozeti ve Tooltip Tasarımları
   ========================================================================== */
.genuine-discount-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.08); /* Hafif yeşil arka plan */
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981; /* Canlı yeşil */
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 12px;
    vertical-align: middle;
    gap: 4px;
    position: relative;
    user-select: none;
    line-height: 1;
}

.genuine-discount-badge .check-icon {
    flex-shrink: 0;
    display: inline-flex;
}

.genuine-discount-badge .tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    cursor: pointer;
    position: relative;
    margin-left: 2px;
}

/* CSS Tooltip Tasarımı */
.genuine-discount-badge .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #0f172a; /* Koyu slate arka plan */
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1010;
    bottom: 130%; /* Üstünde göster */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s, visibility 0.2s;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    pointer-events: none;
}

.genuine-discount-badge .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

.genuine-discount-badge:hover .tooltip-text,
.genuine-discount-badge .tooltip-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Ürün Kartları İçin Gerçek İndirim Rozeti */
.genuine-card-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-left: 6px;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* ==========================================================================
   Mobil Cihazlar İçin 2 Sütunlu (Yan Yana) Ürün Kartı Düzeni (max-width: 576px)
   ========================================================================== */
@media (max-width: 576px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-bottom: 40px;
    }
    
    .deal-card {
        border-radius: 16px;
    }
    
    .card-image-wrapper {
        padding-top: 70%;
    }
    
    .card-image-wrapper img {
        padding: 8px;
    }
    
    .card-body {
        padding: 12px;
    }
    
    .card-meta {
        gap: 4px;
        margin-bottom: 6px;
        flex-wrap: wrap;
    }
    
    .deal-time, 
    .absolute-time {
        font-size: 9px;
    }
    
    .product-title {
        font-size: 12px;
        line-height: 1.4;
        height: 50.4px; /* 3 satır (12px * 1.4 * 3 = 50.4px) */
        -webkit-line-clamp: 3;
        margin-bottom: 8px;
    }
    
    .card-badges {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .card-badge {
        font-size: 9px;
        padding: 3px 6px;
        border-radius: 6px;
    }
    
    .card-vote-bar {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .card-vote-bar .vote-btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .card-footer {
        gap: 6px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .price-section {
        margin-bottom: 2px;
        text-align: left;
    }
    
    .price-value {
        font-size: 15px;
    }
    
    .buy-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .genuine-card-badge {
        font-size: 8px;
        padding: 1px 4px;
        margin-left: 0;
        margin-top: 2px;
    }
    
    .history-badge {
        top: 8px;
        right: 8px;
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   Benzer Fırsatlar Sayfa Grid Optimizasyonu (5 Sütunlu)
   ========================================================================== */
@media (min-width: 769px) {
    .related-deals-section .deals-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 16px !important;
    }
    .related-deals-section .deal-card .card-title {
        font-size: 13px !important;
        line-height: 1.4 !important;
        height: 36.4px !important; /* 2 satır */
    }
    .related-deals-section .deal-card .price-value {
        font-size: 15px !important;
    }
    .related-deals-section .deal-card .card-body {
        padding: 12px !important;
    }
    .related-deals-section .deal-card .card-footer {
        padding: 10px 12px !important;
    }
}









