/* ==========================================================================
   OpenHaft — Pricing: DTF Teaser, Sitodruk Table
   ========================================================================== */

/* ---------- DTF Section (teaser wrapper) ---------- */
.dtf-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

/* ---------- DTF Metrazowy Teaser Banner ---------- */
.dtfm-teaser {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 2px solid rgba(232, 197, 71, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(232, 197, 71, 0.1);
}

.dtfm-teaser__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.dtfm-teaser__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.dtfm-teaser__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.dtfm-teaser__desc strong {
    color: var(--gold-600);
}

/* ---------- Sitodruk Pricing Table ---------- */
.sitodruk-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.sitodruk-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: none;
}

.sitodruk-table {
    width: 100%; border-collapse: collapse;
    background: var(--bg-elevated);
    min-width: 600px;
}

.sitodruk-table th {
    background: #FDF6E3;
    color: var(--text-primary);
    font-weight: 700; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    padding: 1rem 1.25rem; text-align: center;
    white-space: nowrap;
}
.sitodruk-table th:first-child { text-align: left; }

.sitodruk-table td {
    padding: 0.9rem 1.25rem; text-align: center;
    border-bottom: 1px solid var(--border-default);
    font-size: 0.95rem;
    transition: background-color var(--transition);
}

.sitodruk-table tbody tr:hover td {
    background-color: rgba(245, 200, 66, 0.06);
}

.sitodruk-table__label {
    text-align: left !important;
    font-weight: 700;
    color: var(--text-primary);
}

.sitodruk-table tbody tr:last-child td {
    border-bottom: none;
}

.sitodruk-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray-700);
    margin-top: 1.5rem;
    line-height: 1.6;
}
.sitodruk-note a {
    font-weight: 700;
    color: var(--color-red);
}
.sitodruk-note a:hover { color: var(--color-gold); }
