/* Tiffin Pro Booking Form Styles */
.tp-booking-container {
    max-width: 920px;
    margin: 40px auto;
    padding: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.tp-booking-container h2 {
    text-align: center;
    color: #0f172a;
    margin-bottom: 30px;
    font-size: 30px;
}

.tp-section {
    background: #f8fafc;
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 16px;
    border: 1px solid #dbe7f3;
}

.tp-section h3 {
    margin-top: 0;
    color: #0f766e;
    font-size: 20px;
    margin-bottom: 14px;
}

.tp-section-note,
.tp-summary-note,
.tp-pricing-subline {
    color: #475569;
    font-size: 13px;
}

.tp-meal-box {
    background: #fff;
    padding: 16px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid #dbe7f3;
}

.tp-meal-header {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
}

.tp-meal-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.tp-meal-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.tp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.tp-col {
    display: flex;
    flex-direction: column;
}

.tp-form-group {
    margin-bottom: 16px;
}

.tp-form-group label,
.tp-col label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #334155;
}

.tp-booking-container input[type="text"],
.tp-booking-container input[type="email"],
.tp-booking-container input[type="tel"],
.tp-booking-container input[type="date"],
.tp-booking-container input[type="number"],
.tp-booking-container select,
.tp-booking-container textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}

.tp-booking-container textarea {
    resize: vertical;
}

.tp-submit-section {
    text-align: center;
    margin-top: 28px;
}

.tp-submit-btn {
    background: linear-gradient(135deg, #0f766e 0%, #0ea5a4 100%);
    color: #fff;
    padding: 15px 52px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.22);
}

.tp-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

#tp-message {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

#tp-message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

#tp-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.tp-summary-section {
    background: #ecfeff;
    border-color: #99f6e4;
}

.tp-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tp-summary-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #dbe7f3;
}

.tp-summary-table .sum-label {
    font-weight: 700;
    width: 130px;
}

.tp-summary-table .sum-detail {
    color: #475569;
    font-size: 13px;
}

.tp-summary-table .sum-amount {
    text-align: right;
    font-weight: 700;
    width: 150px;
    white-space: nowrap;
}

.tp-summary-table tfoot td {
    border-top: 2px solid #14b8a6;
    border-bottom: none;
    padding-top: 14px;
    font-size: 16px;
}

.tp-pricing-info {
    margin-top: 10px;
    padding: 12px 14px;
    background: #f0fdf4;
    border-radius: 10px;
    font-size: 13px;
    border: 1px solid #bbf7d0;
}

.tp-notice-warn {
    background: #fff7ed;
    color: #9a3412;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #fed7aa;
}

@media (max-width: 768px) {
    .tp-row {
        grid-template-columns: 1fr;
    }

    .tp-booking-container {
        padding: 20px;
        margin: 20px 10px;
    }
}
