/* --- Anasayfa Vitrin Kategorileri Bölümü --- */
.home-showcase-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
    overflow: hidden;
}

/* Dalgalı alt kenarlık efekti */
.home-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Piksel hatalarını önlemek için */
    left: 0;
    width: 100%;
    height: 80px; /* Dalga yüksekliği */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f9fafb' fill-opacity='1' d='M0,192L80,176C160,160,320,128,480,133.3C640,139,800,181,960,186.7C1120,192,1280,160,1360,144L1440,128L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}


.home-showcase-section .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* GÜNCELLENDİ: Daha Gösterişli Başlık Alanı */
.section-header-showcase {
    text-align: center;
    margin-bottom: 4rem; /* Boşluk artırıldı */
    position: relative;
    padding-bottom: 1.5rem;
}
/* Başlığın altına şık bir çizgi eklendi */
.section-header-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f97116;
    border-radius: 2px;
    /* GÜNCELLEME: Neon Işık Efekti */
    box-shadow: 0 0 8px #f97116, 0 0 16px #f97116, 0 0 24px #ea580c;
}

.section-header-showcase h2 {
    font-size: 2.8rem; /* Boyut büyütüldü */
    font-weight: 800;
    color: #ffffff; /* Renk güncellendi */
    margin-bottom: 0.75rem;
}

.section-header-showcase p {
    font-size: 1.1rem;
    color: #d1d5db; /* Renk güncellendi */
    max-width: 600px;
    margin: 0 auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.showcase-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    color: #1f2937;
}

.card-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #f97116;
    margin-top: auto; /* CTA'yı en alta yaslar */
    /* GÜNCELLEME: Neon Işık Efekti */
    text-shadow: 0 0 5px rgba(249, 115, 22, 0.7);
}

.card-cta .arrow {
    transition: transform 0.2s ease;
}

.showcase-card:hover .card-cta .arrow {
    transform: translateX(5px);
}

/* YENİ EKLENDİ: Tümünü Gör Butonu */
.showcase-view-all-container {
    text-align: center;
    margin-top: 4rem;
}
.showcase-view-all-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: transparent;
    color: #f97116;
    border: 2px solid #f97116;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    /* GÜNCELLEME: Neon Işık Efekti */
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5), inset 0 0 8px rgba(249, 115, 22, 0.4);
    text-shadow: 0 0 5px rgba(249, 115, 22, 0.5);
}
.showcase-view-all-btn:hover {
    background-color: #f97116;
    color: #fff;
    transform: translateY(-3px);
    /* GÜNCELLEME: Hover Neon Işık Efekti */
    box-shadow: 0 0 12px #f97116, 0 0 24px #f97116, 0 6px 20px rgba(249, 113, 22, 0.4);
    text-shadow: none;
}

