/* --- Anasayfa Son Ürünler Bölümü (YENİ TASARIM) --- */
.home-latest-products {
    padding: 6rem 0;
    background: #111827; /* Koyu arkaplan */
    position: relative;
    overflow: hidden;
}

.home-latest-products .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.home-latest-products .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.home-latest-products .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f97116;
    border-radius: 2px;
    box-shadow: 0 0 8px #f97116, 0 0 16px #f97116, 0 0 24px #ea580c;
}

.home-latest-products .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.home-latest-products .section-header p {
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

/* Ürün Grid Yapısı */
.product-grid-home {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

/* Ürün Kartı Stilleri (Koyu Tema) */
.product-card { 
    background-color: #1f2937; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid #374151; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); 
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; 
    display: flex; 
    flex-direction: column; 
}
.product-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2), 0 4px 6px -2px rgba(0,0,0,0.1);
    border-color: #f97116;
}
.product-image-container { 
    position: relative; 
    aspect-ratio: 5 / 4; 
    overflow: hidden; 
}
.product-image-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s ease;
}
.product-card:hover .product-image-container img {
    transform: scale(1.05);
}
.product-content { 
    padding: 1.5rem; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}
.product-title-link { 
    text-decoration: none; 
}
.product-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    color: #f9fafb; 
    margin-bottom: 0.75rem; 
    line-height: 1.4; 
    transition: color 0.2s ease; 
}
.product-title-link:hover .product-title { 
    color: #f97116; 
}
.product-description { 
    font-size: 0.95rem; 
    color: #9ca3af; 
    line-height: 1.6; 
    flex-grow: 1; 
    margin-bottom: 1.5rem; 
}
.product-inspect-btn {
    display: inline-block;
    align-self: flex-start;
    background-color: #f97116;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}
.product-inspect-btn .arrow { margin-left: 0.5rem; }
.product-inspect-btn:hover { 
    background-color: #fb923c; 
    box-shadow: 0 0 12px #f97116, 0 0 24px #f97116;
}


/* Tümünü Gör Butonu */
.view-all-container {
    text-align: center;
    margin-top: 4rem;
}
.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;
    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);
}
.view-all-btn:hover {
    background-color: #f97116;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 12px #f97116, 0 0 24px #f97116, 0 6px 20px rgba(249, 113, 22, 0.4);
    text-shadow: none;
}

.no-products-message {
    text-align: center;
    padding: 2rem;
    color: #9ca3af;
}

/* Responsive Ayarlar */
@media screen and (min-width: 640px) { .product-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 992px) { .product-grid-home { grid-template-columns: repeat(3, 1fr); } }
@media screen and (min-width: 1280px) { .product-grid-home { grid-template-columns: repeat(4, 1fr); } }
@media screen and (min-width: 1600px) { .product-grid-home { grid-template-columns: repeat(5, 1fr); } }

