.dynamic-block-container { margin-top: 3rem; margin-bottom: 3rem; padding: 20px 0; }
.dynamic-block-container h2 { font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; }
.dynamic-block-container .alt-baslik { font-size: 1.1rem; color: #777; margin-bottom: 2rem; }
.dynamic-block-clickable { cursor: pointer; overflow: hidden; border-radius: 12px; }

/* FEATURE CARD STİLLERİ */
.feature-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 20px; }
.feature-card { padding: 20px; border: 1px solid #ddd; border-radius: 8px; text-align: center; }
.feature-card i { font-size: 2.5rem; color: var(--bs-primary, #0d6efd); }

/* CATEGORY SHOWCASE STİLLERİ */
.category-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin-bottom: 20px; }
.category-card { background-color: #f8f9fa; padding: 15px; border-radius: 8px; text-align: center; transition: all 0.2s; text-decoration: none !important; }
.category-card:hover { background-color: #e9ecef; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-2px); }
.category-image-wrapper { width: 80px; height: 80px; margin: 0 auto 10px; }
.category-image-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid white; box-shadow: 0 0 5px rgba(0,0,0,0.1); }
.category-count { font-size: 0.75rem; color: #6c757d; }

/* SPOTLIGHT STİLLERİ */
.spot-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Dikey hizalama için gerekli */
    height: 100%;
    border-radius: 12px;
}
.spot-slider {
    display: flex;
    transition: transform 0.5s ease;
    /* Dikey hizalama için gerekli */
    height: 100%; 
}
.spot-slide {
    flex: 0 0 100%; 
    max-width: 100%;
    display: flex; 
    align-items: center; /* Dikeyde ortala */
    justify-content: center; /* Yatayda ortala */
    /* Dikey hizalama için gerekli */
    height: 100%;
}
.spot-slider-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}
.spot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}
.spot-indicator.active { background-color: #000; }
.spotlight-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Dikey hizalama için gerekli */
    min-height: 450px;
}
.spotlight-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.spot-image-wrapper { 
    /* Yatay pay: %45'e ayarlandı */
    flex: 0 0 45%; 
    max-width: 45%;
    text-align: center; 
    /* Dikey hizalama için sabitlendi */
    height: 400px; 
}
.spot-image { 
    width: 100%; 
    /* Dikey hizalama için %100'e korundu */
    height: 100%; 
    max-width: 300px; 
    border-radius: 12px; 
    object-fit: contain; 
}
.spot-content { 
    /* Yatay pay: Kalan %55'e ayarlandı */
    flex: 1 1 55%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    gap: 1rem; 
    /* İçerik sola hizalandı */
    align-items: flex-start;
    text-align: start;
}
.spot-title { font-size: 1.5rem; font-weight: 700; color: #222; margin: 0; }
.spot-content p.lead { font-size: 1rem; color: #555; margin: 0; }
.spot-button { padding: 12px 26px; font-weight: 600; border-radius: 8px; text-decoration: none; background: #1ea55d; color: #fff; display: inline-block; width: fit-content; transition: all 0.3s ease; }
.spot-button:hover { opacity: 0.9; transform: translateY(-2px); }
.spot-badge { 
    position: absolute; 
    top: 16px; 
    left: 16px; 
    display: inline-block; 
    padding: 6px 14px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    border-radius: 8px; 
    /* Z-index sorunu çözüldü */
    z-index: 30;
}
.spot-price-container {
    display: flex;
    align-items: center;
    /* Masaüstü ve mobil (min-width) için sola hizalama */
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
}
.spotlight-card .original-price { font-size: 1.1rem; }
.spotlight-card .discounted-price { font-size: 2.2rem; }
.spotlight-card .standard-price { font-size: 2.2rem; color: #000000; }
@media (min-width: 768px) { 
    .spot-price-container { justify-content: start; } 
    .spot-content { align-items: flex-start; } 
}
@media (max-width: 768px) {
    .spotlight-card { flex-direction: column; text-align: center; }
    .spot-content { align-items: center; }
    
    /* Mobil kontrol noktası ortalama düzeltildi */
    .spot-slider-controls { 
        position: static; 
        transform: none; 
        margin-top: 10px;
        width: 100%;
        justify-content: center; /* Mobil görünümde ortalama */
    }
}

/* Parallax Banner CSS */
.parallax-banner-container {
    /* Kaydırma efekti için gerekli kısımlar */
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover; 
    position: relative;
    overflow: hidden; 
}
.parallax-section {
    background-attachment: fixed; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.parallax-content {
    z-index: 2; 
    position: relative;
    max-width: 90%;
}
.parallax-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.parallax-content {
    z-index: 2; 
    position: relative;
    max-width: 90%;
}

.parallax-content .text-shadow-dark {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.parallax-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.parallax-content .text-shadow-dark {
    text-shadow: 1px 1px 3px rgba(1,1,1,.4);
}