/* ==========================================================
   Woo Event Tickets – Checkout Styles
   ========================================================== */

/* ── Section wrapper ─────────────────────────────────────── */
#wet-attendee-forms-wrapper {
    margin: 0;
    padding: 0;
}

.wet-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #12122a;
    margin: 0 0 6px;
    padding: 0;
}

.wet-section-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px;
}

.wet-icon {
    font-size: 20px;
}

/* ── Product block ───────────────────────────────────────── */
.wet-product-block {
    margin-bottom: 24px;
    border: 1px solid #e0e0ef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(18, 18, 40, 0.06);
}

.wet-product-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #12122a;
    padding: 12px 18px;
}

.wet-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.wet-qty-badge {
    background: #6366f1;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ── Fieldset per seat ───────────────────────────────────── */
.wet-seat-block {
    background: #ffffff;
    padding: 16px 18px;
    border-bottom: 1px solid #ebebf5;
}

.wet-seat-block:last-child {
    border-bottom: none;
}

.wet-seat-label {
    font-size: 12px;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wet-seat-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ebebf5;
}

.wet-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.wet-fields-grid .wet-field-full {
    grid-column: 1 / -1;
}

.wet-field-group {
    display: flex;
    flex-direction: column;
}

.wet-field-group label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wet-field-group input {
    padding: 9px 12px;
    border: 1.5px solid #d8d8ef;
    border-radius: 7px;
    font-size: 14px;
    color: #12122a;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.wet-field-group input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
    background: #fff;
}

.wet-field-group input.wet-error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10);
}

/* ── Thank you page ──────────────────────────────────────── */
.wet-thankyou-section {
    margin: 32px 0;
}

.wet-thankyou-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #12122a;
    margin-bottom: 8px;
}

.wet-thankyou-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.wet-event-card {
    border: 1px solid #e0e0ef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(18, 18, 40, 0.05);
}

.wet-event-card-header {
    background: #12122a;
    color: #fff;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wet-badge {
    background: #6366f1;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.wet-event-card-body {
    background: #fff;
}

.wet-ticket-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #ebebf5;
}

.wet-ticket-row:last-child {
    border-bottom: none;
}

.wet-ticket-num {
    width: 28px;
    height: 28px;
    background: #6366f1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.wet-ticket-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wet-ticket-info strong {
    font-size: 14px;
    color: #12122a;
}

.wet-ticket-info span {
    font-size: 13px;
    color: #666;
}

.wet-status-badge {
    background: #d1fae5;
    color: #065f46;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
    margin-top: 4px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
    .wet-fields-grid {
        grid-template-columns: 1fr;
    }

    .wet-ticket-row {
        flex-wrap: wrap;
    }
}

/* ── Inline attendee list (under each product in order view) ─ */
.wet-inline-attendees {
    margin-top: 10px;
    border: 1px solid #e0e0ef;
    border-radius: 8px;
    overflow: hidden;
    font-size: 13px;
}

.wet-inline-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #12122a;
    color: #fff;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
}

.wet-inline-icon {
    font-size: 14px;
}

.wet-inline-count {
    background: #6366f1;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    margin-left: auto;
}

.wet-inline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wet-inline-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 12px;
    border-bottom: 1px solid #ebebf5;
    background: #fff;
}

.wet-inline-item:last-child {
    border-bottom: none;
}

.wet-inline-num {
    min-width: 22px;
    height: 22px;
    background: #6366f1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.wet-inline-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.wet-inline-info strong {
    font-size: 13px;
    color: #12122a;
    font-weight: 600;
}

.wet-inline-email {
    font-size: 12px;
    color: #6366f1;
}

.wet-inline-company {
    font-size: 11px;
    color: #888;
}

.wet-inline-badge {
    color: #22c55e;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}