/* Modern Ürün Kartları */
.modern-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 12px 32px;
}

/* Masaüstü için 4 sütunlu görünüm */
@media (min-width: 992px) {
    .modern-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        padding: 0 24px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.modern-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modern-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-product-card:hover .product-image {
    transform: scale(1.08);
}

.modern-product-card.fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

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

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.product-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.product-favorite-btn svg {
    stroke: #666;
    transition: all 0.3s ease;
}

.product-favorite-btn:hover svg {
    stroke: #ff4757;
    fill: #ff4757;
}

.product-favorite-btn.heartbeat {
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.product-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-name {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    font-family: "League Spartan";
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-name:hover {
    color: #007bff;
}

.product-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-current-price {
    color: #007bff;
    font-size: 18px;
    font-weight: 700;
    font-family: "League Spartan";
}

.product-add-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FE6601 0%, #ff8534 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(254, 102, 1, 0.3);
    flex-shrink: 0;
}

.product-add-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(254, 102, 1, 0.5);
}

.product-add-btn svg {
    stroke: white;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-state-icon svg {
    stroke: #999;
}

.empty-state-title {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    font-family: "League Spartan";
    margin: 0 0 12px 0;
}

.empty-state-text {
    color: #666;
    font-size: 15px;
    font-family: Jost;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.empty-state-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: "League Spartan";
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.empty-state-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

@media (max-width: 576px) {
    .modern-products-grid {
        gap: 12px;
        padding: 0 12px 24px;
    }
    
    .modern-product-card {
        border-radius: 14px;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
    
    .product-favorite-btn {
        width: 32px;
        height: 32px;
    }
    
    .product-favorite-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .product-info {
        padding: 12px;
        gap: 8px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-current-price {
        font-size: 16px;
    }
    
    .product-add-btn {
        width: 32px;
        height: 32px;
    }
    
    .product-add-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .empty-state {
        padding: 40px 20px;
    }
    
    .empty-state-icon {
        width: 64px;
        height: 64px;
    }
    
    .empty-state-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .empty-state-title {
        font-size: 18px;
    }
    
    .empty-state-text {
        font-size: 14px;
    }
}

/* ==================== SEO İçerik Bölümü ==================== */
.section-main-ver.mb-0.pb-5 {
    padding-top: 20px;
}

.seo-content-section {
    margin-top: 40px;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'League Spartan', sans-serif;
}

.seo-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    font-family: 'Jost', sans-serif;
}

.seo-content-text p {
    margin-bottom: 20px;
}

.seo-content-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 16px;
    font-family: 'League Spartan', sans-serif;
}

.seo-content-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.seo-content-text li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

.seo-content-text li span {
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.regions-seo-content {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.city-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'League Spartan', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-section h4 svg {
    color: #007bff;
}

.city-section > p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.districts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.districts-list span {
    display: inline-block;
    padding: 6px 12px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.districts-more {
    color: #718096;
    font-style: italic;
}

.seo-content-note {
    margin-top: 30px;
    margin-bottom: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
    padding: 16px;
    background: #e6f2ff;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

/* Bölge Linkleri */
.region-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.region-link {
    display: inline-block;
    padding: 10px 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #2d3748;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.region-link:hover {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Masaüstü için bölge grid */
@media (min-width: 992px) {
    .regions-seo-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil responsive */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 30px 16px;
        margin-top: 30px;
        border-radius: 12px;
    }
    
    .seo-content-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .seo-content-text {
        font-size: 15px;
    }
    
    .seo-content-text h3 {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .city-section {
        padding: 16px;
    }
    
    .city-section h4 {
        font-size: 16px;
    }
    
    .districts-list {
        gap: 6px;
    }
    
    .districts-list span {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .region-links {
        gap: 8px;
    }
    
    .region-link {
        font-size: 13px;
        padding: 8px 12px;
    }
}

