/* oto_paspasi.css */

/* Sayfa Üst Başlıkları */
.oto-paspasi-title-container {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    background-color: #c0392b; /* Kırmızı 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: #f1c40f; /* Sarı Vurgu */
    margin: 0;
}

/* İçerik Yanyana Yerleşim Kapsayıcısı */
.content-wrapper {
    display: flex;
    align-items: flex-start; /* Resim ve tabloyu üste hizala */
    gap: 30px;
    margin: 2rem 0;
}

/* Fiyat Tablosu Alanı */
.oto-paspasi-tables {
    flex: 1.2; /* Tablo daha fazla yer kaplasın */
    min-width: 300px;
}

.oto-paspasi-tables table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tablo Başlık Satırı */
.oto-paspasi-tables .table-header-row th {
    background-color: #333; /* Koyu Gri Başlık */
    color: white;
    font-weight: 700;
    padding: 1rem 0.5rem;
    border: 1px solid #222;
}

/* Kraft Sütunu Başlığı (Özel Renk) */
.oto-paspasi-tables .kraft-col {
    background-color: #a0522d; /* Kahverengi (Kraft rengi) */
    color: white;
}

/* Tablo Satırları */
.oto-paspasi-tables td {
    padding: 1rem 0.5rem;
    border: 1px solid #ddd;
    vertical-align: middle;
}

/* Adet Kolonu */
.oto-paspasi-tables .adet-col {
    font-weight: 900;
    color: #1e3a5f; /* Koyu Mavi Adet */
    background-color: #f7f7f7;
    width: 25%;
}

/* Fiyat Hücreleri */
.oto-paspasi-tables .price-cell {
    font-weight: 900;
    font-size: 1.3rem;
    width: 37.5%;
}

.oto-paspasi-tables .kraft-price {
    color: #a0522d; /* Kraft kahverengisi */
    background-color: #fff3e0;
}

.oto-paspasi-tables .hamur-price {
    color: #375e38; /* Koyu Yeşil */
    background-color: #f0f7f0;
}

/* Ek Not */
.ek-not-small {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #c0392b;
}


/* Resim Alanı */
.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;
    }

    .oto-paspasi-tables table {
        font-size: 0.9rem;
    }
    
    .oto-paspasi-tables th, .oto-paspasi-tables td {
        padding: 0.7rem 0.3rem;
    }
    
    .oto-paspasi-tables .price-cell {
        font-size: 1.1rem;
    }
    
    .main-image-container {
        order: -1; /* Resmi üste taşı */
        text-align: center;
    }
    
    .warning-text-large {
        font-size: 1.2rem;
    }
}



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