/* afisler.css */

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

.page-title-main {
    font-size: 2rem;
    font-weight: 900;
    color: #c0392b; /* Kırmızı */
    margin-bottom: 0.2rem;
}

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

/* Tabloların Yan Yana Durması İçin Kapsayıcılar */
.top-tables-row, .bottom-tables-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.price-table-group {
    flex: 1; /* Eşit genişlikte olmaları için */
}

/* Tablo Başlıkları */
.afis-price-tables .table-header {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 0.5rem;
    text-align: center;
    margin-top: 1rem;
    border-radius: 8px 8px 0 0;
    position: relative;
}

/* Başlık Renkleri */
.header-orange { background: #ff9800; } 
.header-blue { background: #0d47a1; }
.header-green { background: #4caf50; }
.header-pink { background: #e91e63; }

/* Yeni Rozeti */
.badge-yeni {
    background: white;
    color: #c0392b;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 900;
    margin-left: 10px;
}

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

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

/* Başlık Satırı (105GR, 115GR vb.) */
.afis-price-tables .table-weight-row th {
    background: #f1f1f1;
    color: #555;
    font-weight: 600;
}

/* Adet Kolonu */
.afis-price-tables .adet-col {
    font-weight: 700;
    color: white;
    background-color: #777; /* Gri arka plan */
    width: 15%;
}

/* Fiyat Hücreleri */
.afis-price-tables .price-cell {
    font-weight: 700;
    color: #1e3a5f; /* Koyu Mavi Fiyat */
    position: relative;
    background-color: #fcfcfc;
}

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

/* 50x70 1.Hamur Alt Notu */
.table-footer-note {
    background-color: #f7f7f7;
    color: #555;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #ddd;
    border-top: none;
    font-size: 0.9rem;
    border-radius: 0 0 8px 8px;
}

/* EKSPRES BÖLÜMÜ */
.express-section {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #fff3e0;
    border: 3px solid #ff9800;
    border-radius: 8px;
    margin-top: 2rem;
}

.express-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.express-baski {
    font-size: 1.6rem;
    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;
}

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

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

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

/* ======================================= */
/* AFİŞ GÖRSELİ BOYUT DÜZENLEMESİ (YENİ EKLENEN) */
/* ======================================= */

/* 1. KAPSAYICIYI SINIRLA VE ORTALA */
.main-image-container {
    max-width: 550px !important; 
    height: auto !important; 
    margin: 10px auto !important; 
    display: block !important; 
}

/* 2. İÇİNDEKİ GÖRSELİ KAPSAYICIYA UYMAYA ZORLA */
.main-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}


/* ======================================= */
/* MOBİL UYUMLULUK */
/* ======================================= */
@media (max-width: 768px) {
    .page-title-main {
        font-size: 2rem;
    }
    
    /* Tabloları alt alta diz */
    .top-tables-row, .bottom-tables-row {
        flex-direction: column;
        gap: 10px;
    }

    /* Daha küçük fontlar */
    .afis-price-tables th, .afis-price-tables td {
        padding: 0.4rem 0.1rem;
        font-size: 0.75rem;
    }
    
    .afis-price-tables .table-header {
        font-size: 1rem;
    }
    
    .badge-yeni {
        font-size: 0.7rem;
    }

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

    /* Mobil cihazlarda kapsayıcıyı %95 ile sınırla (YENİ EKLENEN) */
    .main-image-container {
        max-width: 95% !important; 
    }
}