/* brosurler.css */

/* Sayfa Üst Başlıkları */
.page-title-container {
    text-align: center;
    padding: 1rem 0;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1e3a5f;
    margin-bottom: 0.2rem;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.web-address {
    color: #c0392b;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
}

/* Tablo Başlıkları için Genel Stil */
.brosur-price-tables .table-header {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem;
    text-align: center;
    margin-top: 1.5rem;
}

.brosur-price-tables .header-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
}

/* Renk Tanımlamaları */
.header-green { background: #4caf50; }        /* 115 GR EKO */
.header-orange { background: #ff9800; }       /* 115 GR PRO */
.header-blue { background: #2196f3; }         /* 130 GR EKO */
.header-orange-dark { background: #e65100; }  /* 130 GR PRO */
.header-blue-dark { background: #007bff; }    /* MAT SELEFONLU */
.header-brown { background: #795548; }        /* EL İLANI */

/* Tüm Tablolar İçin Genel Stil */
.brosur-price-tables table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: center;
}

.brosur-price-tables th, .brosur-price-tables td {
    padding: 0.6rem 0.2rem;
    border: 1px solid #ddd;
}

/* Boyut Başlıkları (A6, A7, A5 vb.) */
.brosur-price-tables .table-size-row th {
    background: #f1f1f1;
    color: #555;
    font-weight: 600;
}

/* Adet Kolonu */
.brosur-price-tables .adet-col {
    font-weight: 700;
    color: #1e3a5f;
    background-color: #f7f7f7;
    width: 15%;
}

/* Fiyat Hücreleri */
.brosur-price-tables .price-cell {
    font-weight: 700;
    color: #c0392b; /* Kırmızı Fiyat */
    position: relative;
}

/* Kod Metni (Fiyatın Altındaki Küçük Kod) */
.brosur-price-tables .kod {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #888;
    line-height: 1;
    margin-top: 0.2rem;
}

/* KIRIM FİYATLARI Barı */
.krim-fiyatlari-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff3e0;
    border: 1px solid #ffcc80;
    padding: 0.5rem;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
}

.krim-header {
    font-weight: 700;
    color: #ff9800;
    padding-right: 1rem;
}

.krim-item span {
    font-weight: 700;
    color: #e65100;
}

/* Express Notu */
.express-notu {
    background-color: #e8f5e9;
    border: 3px solid #4caf50;
    color: #333;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.express-bold {
    font-size: 1.2rem;
    font-weight: 900;
    color: #c0392b; /* Kırmızı */
}

/* ORTAK ALT NOTLAR STİLİ */
.alt-notlar {
    text-align: center;
    padding: 1rem 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) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .brosur-price-tables .table-header {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .brosur-price-tables .header-subtext {
        font-size: 0.8rem;
    }

    .brosur-price-tables th, .brosur-price-tables td {
        padding: 0.4rem 0.1rem;
        font-size: 0.7rem;
    }
    
    .brosur-price-tables .kod {
        font-size: 0.6rem;
    }

    /* KIRIM FİYATLARI'nı alt alta diz */
    .krim-fiyatlari-bar {
        flex-wrap: wrap;
        justify-content: flex-start;
        font-size: 0.8rem;
    }

    .krim-header {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .krim-item {
        flex-basis: 50%;
        text-align: center;
        padding: 0.2rem 0;
    }

    .warning-text-large {
        font-size: 1.2rem;
    }
}



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