/* TS | Sprawdź koszty dostawy — style front */

.tsship-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    margin: 12px 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    font-size: 14px;
    line-height: 1.35;
}
.tsship-badge-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tsship-badge-icon img { display: block; }
.tsship-badge-body { flex: 1 1 auto; min-width: 0; }
.tsship-badge-price { color: #111; }
.tsship-badge-price strong { font-weight: 700; }
.tsship-badge-link {
    display: inline-block;
    margin-top: 2px;
    color: #1e88e5;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
}
.tsship-badge-link:hover { color: #1565c0; }

/* Tabela pełna */
.tsship-costs {
    margin: 32px 0;
    padding: 24px;
    background: #fafafa;
    border-radius: 8px;
    scroll-margin-top: 100px; /* offset dla sticky header */
}
.tsship-costs__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}
.tsship-costs__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}
.tsship-costs__table th,
.tsship-costs__table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}
.tsship-costs__table thead th {
    background: #f3f4f6;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.tsship-costs__table tbody tr:last-child td { border-bottom: 0; }
.tsship-costs__table tr.tsship-cheapest {
    background: linear-gradient(90deg, rgba(255, 0, 112, 0.05), transparent);
}
.tsship-col-logo { width: 60px; }
.tsship-col-cost { text-align: right; white-space: nowrap; }
.tsship-price { font-weight: 700; color: #111; }
.tsship-price--free { color: #16a34a; }
.tsship-badge-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: #ff0070;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    vertical-align: middle;
}
.tsship-costs__note {
    margin-top: 14px;
    padding: 10px 14px;
    background: #fff;
    border-left: 3px solid #1e88e5;
    color: #374151;
    font-size: 13px;
}
.tsship-costs--compact { padding: 12px; margin: 12px 0; }
.tsship-costs--compact .tsship-costs__title { font-size: 15px; }
.tsship-costs--compact .tsship-costs__table th,
.tsship-costs--compact .tsship-costs__table td { padding: 6px 8px; font-size: 13px; }

@media (max-width: 640px) {
    .tsship-costs__table thead { display: none; }
    .tsship-costs__table tr {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    .tsship-costs__table td {
        display: flex;
        justify-content: space-between;
        border: 0;
        padding: 4px 12px;
    }
    .tsship-col-cost { text-align: right; }
}
