/* kartvizitler.css */

/* Sayfa Üst Başlıkları */
.kartvizit-title-container {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    background-color: #333; /* Koyu Gri Arka Plan */
}

.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: 700;
    color: #ff9800; /* Turuncu Vurgu */
    margin: 0;
}

/* Tablo Genel Stili */
.kartvizit-tables table {
    width: 90%; 
    margin: 2rem auto;
    border-collapse: collapse;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Tablo Başlık Satırı */
.kartvizit-tables .table-header-row th {
    background-color: #c0392b; /* Kırmızı Başlık */
    color: white;
    font-weight: 700;
    padding: 1rem 0.5rem;
    border: 1px solid #a93226;
    text-transform: uppercase;
}

/* Tablo Satırları */
.kartvizit-tables .table-row {
    background-color: #fcfcfc;
}

.kartvizit-tables td {
    padding: 1rem 0.5rem;
    border: 1px solid #ddd;
    vertical-align: middle;
}

/* Kod Kolonu */
.kartvizit-tables .kod-col {
    font-weight: 800;
    color: #333;
    background-color: #eee;
    width: 10%;
}

/* Özellik Kolonu */
.kartvizit-tables .ozellik-col {
    text-align: left;
    color: #555;
    font-weight: 500;
}

/* Fiyat Hücreleri */
.kartvizit-tables .price-cell {
    font-weight: 900;
    color: #375e38; /* Koyu Yeşil Fiyat */
    font-size: 1.2rem;
    width: 15%;
}

/* Normal Satır Vurgusu (CYP, CYM) */
.kartvizit-tables .highlight-green {
    background-color: #e8f5e9; /* Açık yeşil arka plan */
    color: #375e38 !important;
}

.kartvizit-tables .highlight-green-price {
    background-color: #e8f5e9;
}

/* Özel İşlem Vurguları */
.kartvizit-tables .highlight-red {
    color: #c0392b;
    font-weight: 700;
}

.kartvizit-tables .highlight-bold {
    font-weight: 900;
    color: #1e3a5f;
}

.kartvizit-tables .highlight-white {
    color: white;
    background-color: #333;
    padding: 0 5px;
    border-radius: 3px;
}

/* Özel Ürün Vurgusu (Sıvama, Özel Kesim, Kabartma vb.) */
.kartvizit-tables .special-item {
    background-color: #fff3e0; /* Açık turuncu/sarı arka plan */
}

.kartvizit-tables .special-price {
    background-color: #fff3e0;
    color: #c0392b; /* Kırmızı Fiyat */
}

/* PVC Satırı Vurgusu */
.kartvizit-tables .pvc-row {
    background-color: #f0f4f7;
    border: 2px solid #1e3a5f;
}

.kartvizit-tables .pvc-item {
    font-weight: 700;
    color: #1e3a5f;
}

.kartvizit-tables .pvc-price {
    color: #1e3a5f;
    font-size: 1.3rem;
    font-weight: 900;
}


/* EK NOTLAR */
.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-express {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

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

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .kartvizit-tables table {
        width: 100%;
        margin: 1rem auto;
    }
    
    .page-title-main {
        font-size: 1.8rem;
    }

    .kartvizit-tables th, .kartvizit-tables td {
        padding: 0.5rem 0.2rem;
        font-size: 0.75rem;
    }
    
    .kartvizit-tables .kod-col {
        width: 15%;
    }
    
    .kartvizit-tables .price-cell {
        font-size: 1rem;
        width: 20%;
    }
    
    .warning-text-large {
        font-size: 1.2rem;
    }
}



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