.v-exclusive-restricted {
    padding: 40px 20px;
}

.v-exclusive-guest-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--line, #DAD5C8);
}

/* Calendar Buttons */
.v-exclusive-calendar-buttons {
    margin-bottom: 40px;
}

.v-exclusive-cal-title {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--navy-950, #0A1F3A);
    margin-bottom: 16px;
    font-weight: 600;
}

.v-exclusive-cal-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.v-cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.v-cal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.v-cal-google {
    background: #fff;
    color: #1a73e8;
    border-color: #1a73e8;
}

.v-cal-google:hover {
    background: #1a73e8;
    color: #fff;
}

.v-cal-outlook {
    background: #fff;
    color: #0072c6;
    border-color: #0072c6;
}

.v-cal-outlook:hover {
    background: #0072c6;
    color: #fff;
}

.v-cal-apple {
    background: #fff;
    color: #000;
    border-color: #000;
}

.v-cal-apple:hover {
    background: #000;
    color: #fff;
}

.v-cal-ics {
    background: #fff;
    color: var(--navy-950, #0A1F3A);
    border-color: var(--navy-950, #0A1F3A);
}

.v-cal-ics:hover {
    background: var(--navy-950, #0A1F3A);
    color: #fff;
}

.v-cal-icon {
    font-weight: 700;
    font-size: 16px;
}

/* RSVP Form */
.v-exclusive-rsvp-section {
    background: #f8f9fa;
    border: 1px solid var(--line, #DAD5C8);
    border-radius: 8px;
    padding: 32px;
}

.v-exclusive-rsvp-section h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--navy-950, #0A1F3A);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.v-rsvp-current-status {
    background: #fff;
    border: 1px solid var(--line, #DAD5C8);
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.v-rsvp-current-status p {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: var(--ink-soft, #4C5A6B);
}

.v-status-attending {
    color: #46b450 !important;
}

.v-status-not_attending {
    color: #dc3232 !important;
}

.v-status-maybe {
    color: #f0ad4e !important;
}

.v-exclusive-rsvp-form {
    max-width: 600px;
}

.v-rsvp-field {
    margin-bottom: 20px;
}

.v-rsvp-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-950, #0A1F3A);
    margin-bottom: 6px;
}

.v-rsvp-field input[type="text"],
.v-rsvp-field input[type="email"],
.v-rsvp-field input[type="number"],
.v-rsvp-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line, #DAD5C8);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--ink, #333);
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.v-rsvp-field input[type="text"]:focus,
.v-rsvp-field input[type="email"]:focus,
.v-rsvp-field input[type="number"]:focus,
.v-rsvp-field textarea:focus {
    border-color: var(--gold, #AD8A4E);
    outline: none;
    box-shadow: 0 0 0 2px rgba(173, 138, 78, 0.15);
}

.v-rsvp-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v-rsvp-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line, #DAD5C8);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.v-rsvp-radio:hover {
    border-color: var(--gold, #AD8A4E);
    background: #fefcf5;
}

.v-rsvp-radio input[type="radio"] {
    margin: 0;
    accent-color: var(--gold, #AD8A4E);
}

.v-rsvp-submit-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.v-rsvp-submit-btn {
    background: var(--navy-950, #0A1F3A);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.v-rsvp-submit-btn:hover {
    background: var(--gold, #AD8A4E);
    color: var(--navy-950, #0A1F3A);
    transform: translateY(-2px);
}

.v-rsvp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.v-rsvp-spinner {
    font-size: 14px;
    color: var(--ink-soft, #4C5A6B);
}

.v-rsvp-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.v-rsvp-message.success {
    background: #edf7ed;
    color: #1e7e34;
    border: 1px solid #b7e0b7;
}

.v-rsvp-message.error {
    background: #fdecea;
    color: #a71d2a;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .v-exclusive-cal-links {
        flex-direction: column;
    }

    .v-cal-btn {
        justify-content: center;
    }

    .v-exclusive-rsvp-section {
        padding: 20px;
    }

    .v-rsvp-child-row {
        flex-direction: column;
    }
}

/* New RSVP form styles */
.v-rsvp-main-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: var(--navy-950, #0A1F3A);
    margin: 0 0 4px 0;
    font-weight: 700;
}

.v-rsvp-event-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--gold, #AD8A4E);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.v-rsvp-desc {
    font-size: 14px;
    color: var(--ink-soft, #4C5A6B);
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.v-rsvp-welcome {
    font-size: 15px;
    color: var(--navy-950, #0A1F3A);
    line-height: 1.6;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line, #DAD5C8);
}

.v-rsvp-field label {
    font-size: 15px;
}

.v-rsvp-child-details {
    background: #fff;
    border: 1px solid var(--line, #DAD5C8);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
}

.v-rsvp-child-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.v-rsvp-child-field {
    flex: 1;
}

.v-rsvp-child-field label {
    font-size: 13px;
    font-weight: 500;
}

.v-rsvp-footer-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin: 16px 0 0 0;
    font-style: italic;
}

.v-rsvp-attendees-toggle,
.v-rsvp-child-toggle {
    transition: opacity 0.2s;
}

/* Decline message */
.v-rsvp-decline-message {
    background: #fff;
    border: 1px solid var(--line, #DAD5C8);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.v-rsvp-decline-message p {
    font-size: 15px;
    color: var(--ink-soft, #4C5A6B);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.v-rsvp-decline-message p:first-child {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy-950, #0A1F3A);
}

.v-rsvp-decline-message p:last-child {
    font-size: 14px;
    color: var(--gold, #AD8A4E);
    margin-bottom: 0;
}