/* assets/css/pricing.css */

.pricing-section {
    padding-top: 80px; /* Upraveno pro lepší návaznost */
    margin-bottom: 60px;
    text-align: center;
}

.pricing-section .tag-line {
    margin-bottom: 24px;
}

.pricing-section h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--secondary);
}

/* HLAVNÍ KONTEJNER CENÍKU */
.pricing-container {
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0; /* Padding odstraněn, aby header vyplnil celou šířku */
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    max-width: 1400px; /* Shodné s .grid-layout */
    width: 100%;
    overflow: hidden; /* Aby rohy headeru respektovaly radius */
}

.price-table-wrapper {
    overflow-x: auto; /* Umožní scrollování tabulky na mobilu */
    width: 100%;
}

.modern-table {
    width: 100%;
    border-collapse: collapse; /* Změna na collapse pro čisté linky */
    border-spacing: 0;
    text-align: left;
    min-width: 600px; /* Zajištění čitelnosti na mobilu */
}

/* HLAVIČKA TABULKY - ZELENÁ (podle C1.png) */
.modern-table th {
    background: #6fbf73; /* Specifická zelená z obrázku, nebo použij var(--primary) */
    background: var(--primary); 
    padding: 20px 32px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none; /* V obrázku není uppercase */
    letter-spacing: 0.5px;
    border-bottom: none;
}

/* ŘÁDKY A BUŇKY */
.modern-table td {
    padding: 24px 32px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table tbody tr:hover td {
    background: var(--gray-50);
}

/* ODDĚLOVACÍ SEKCE - ZELENÁ (podle C1.png/C2.png) */
.table-section-header td {
    background: #8bc34a; /* Světlejší zelená z designu */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-transform: none;
    padding: 18px 32px;
    letter-spacing: 0.5px;
    text-align: left;
}

/* DATA V TABULCE */
.tarif-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tarif-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
}

.tarif-duration {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    white-space: nowrap;
}

.text-right {
    text-align: right;
}

/* STYLY PRO VYSVĚTLIVKY (FOOTNOTES) */
.pricing-footnotes {
    text-align: left;
    padding: 24px 32px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.6;
}

.pricing-footnotes p {
    margin-bottom: 10px;
}

.pricing-footnotes p:last-child {
    margin-bottom: 0;
}

.pricing-footnotes u {
    text-decoration: underline;
    font-weight: 600;
}

/* RESPONZIVITA */
@media (max-width: 768px) {
    .pricing-section { 
        padding-top: 60px; 
    }
    
    .pricing-container { 
        width: 100%; 
        border-radius: 0; /* Na mobilu přes celou šířku */
        border-left: none;
        border-right: none;
    }

    .modern-table th, 
    .modern-table td { 
        padding: 16px 20px; 
    }
    
    .table-section-header td {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .price-tag {
        font-size: 1rem;
    }
}