/* Global Layout & Grid System */
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
}

.content-area {
    min-width: 0; /* Flex/Grid taşmalarını önler */
}

.sidebar-area {
    width: 350px;
}

@media (max-width: 1024px) {
    .sidebar-area {
        width: 100%;
    }
}

/* Home Sections */
.home-category-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--primary-red);
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.section-title {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 700;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Modals & Overlays (Plain text görünümünü engellemek için) */
.cookie-banner, .push-modal, .custom-lightbox {
    position: fixed;
    z-index: 9999;
    display: none; /* Varsayılan gizli */
}

.cookie-banner.show, .push-modal.show, .push-modal.active, .custom-lightbox.active {
    display: block;
}

.cookie-banner {
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-red);
}

.push-modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.custom-lightbox {
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center; justify-content: center;
}
