/* oto_yag_karti.css */

/* Sayfa Üst Başlıkları */
.oto-yag-karti-title-container {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    background-color: #375e38; /* Koyu Yeşil Başlık */
}

.page-title-main {
    font-size: 2.5rem;
    font-weight: 900;
    color: white; 
    margin-bottom: 0.2rem;
}

.page-subtitle-main {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ff9800; /* Turuncu Vurgu */
    margin: 0;
}

/* İçerik Yanyana Yerleşim Kapsayıcısı */
.content-wrapper {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 30px;
    margin: 3rem 0;
}

/* Fiyat Detay Alanı (Sol) */
.price-details-container {
    flex: 1.2;
    padding: 20px;
    background-color: #fce4ec; /* Açık Pembe/Kırmızı Arka Plan */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.price-box .kod {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c0392b; /* Kırmızı Kod */
    border-bottom: 3px solid #c0392b;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.price-box .ozellik {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 5px 0;
}

.price-box .fiyat {
    font-size: 2.5rem;
    font-weight: 900;
    color: #375e38; /* Koyu Yeşil Fiyat */
    margin-top: 20px;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
}


/* Resim Alanı (Sağ) */
.main-image-container {
    flex: 2; /* Resim daha fazla yer kaplasın */
    text-align: right;
}

.main-image-container .main-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/* ORTAK ALT NOTLAR STİLİ */
.alt-notlar {
    text-align: center;
    padding: 2rem 0 3rem;
    line-height: 1.5;
}

.warning-text-large {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c0392b; /* Kırmızı renk */
    margin-bottom: 0.5rem;
}

.warning-text-small {
    font-size: 0.9rem;
    color: #2b547d;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column; /* Alt alta diz */
        gap: 20px;
    }
    
    .page-title-main {
        font-size: 1.8rem;
    }

    .price-details-container {
        order: 1; /* Fiyatı Resmin altına taşı */
        padding: 15px;
    }
    
    .main-image-container {
        order: -1; /* Resmi üste taşı */
        text-align: center;
    }
    
    .price-box .fiyat {
        font-size: 2rem;
    }
    
    .price-box .kod {
        font-size: 1.2rem;
    }
    
    .price-box .ozellik {
        font-size: 1rem;
    }
    
    .warning-text-large {
        font-size: 1.2rem;
    }
}


<script>
    function toggleMenu() {
        const sidebar = document.querySelector('.sidebar');
        sidebar.classList.toggle('open');
    }
</script>