/* Tabela cennika progowego na stronie produktu - Frontend */
.wcd-tier-pricing-table {
    margin: 0 0 20px 0;
    padding: 0;
    background: transparent;
    border: none;
}

.wcd-tier-pricing-table h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0;
}

.wcd-tier-pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e1e1e1;
}

.wcd-tier-pricing-table thead tr {
    background: #f9f9f9;
    border-bottom: 2px solid #e1e1e1;
}

.wcd-tier-pricing-table th {
    padding: 10px 12px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #e1e1e1;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: none;
}

.wcd-tier-pricing-table th:first-child {
    padding-left: 20px;
}

.wcd-tier-pricing-table tbody tr {
    border-bottom: 1px solid #e1e1e1;
}

.wcd-tier-pricing-table tbody tr:last-child {
    border-bottom: none;
}

.wcd-tier-pricing-table td {
    padding: 10px 12px;
    border: none;
    font-size: 14px;
    color: #333;
}

.wcd-tier-pricing-table td:first-child {
    font-weight: 500;
    padding-left: 20px;
}

.wcd-tier-pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #81A71E;
}

.wcd-tier-pricing-table td:last-child .woocommerce-Price-amount {
    font-size: 15px;
    font-weight: 600;
    color: #81A71E;
}

/* Responsywność */
@media (max-width: 768px) {
    .wcd-tier-pricing-table {
        overflow-x: auto;
    }
    
    .wcd-tier-pricing-table table {
        min-width: 300px;
    }
    
    .wcd-tier-pricing-table th,
    .wcd-tier-pricing-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}
