.vra-booking-form {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.vra-menu-section {
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    border-radius: 12px;
    border-left: 4px solid #8b7355;
}

.vra-menu-section h3 {
    margin: 0 0 15px;
    color: #5a4a3a;
    font-size: 1.3em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.vra-menu-description {
    color: #6b5b4b;
    line-height: 1.7;
}

.vra-form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.vra-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vra-form-section h3 {
    margin: 0 0 20px;
    color: #2c2c2c;
    font-size: 1.25em;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    padding-left: 15px;
}

.vra-form-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #8b7355 0%, #a08060 100%);
    border-radius: 2px;
}

.vra-form-row {
    margin-bottom: 20px;
}

.vra-form-row:last-child {
    margin-bottom: 0;
}

.vra-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95em;
    letter-spacing: 0.01em;
}

.vra-required {
    color: #c9a86c;
    font-weight: 600;
}

.vra-form-row input[type="text"],
.vra-form-row input[type="email"],
.vra-form-row input[type="tel"],
.vra-form-row select,
.vra-form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e4df;
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.vra-form-row input::placeholder,
.vra-form-row textarea::placeholder {
    color: #aaa;
}

.vra-form-row input:hover,
.vra-form-row select:hover,
.vra-form-row textarea:hover {
    border-color: #d4c4b0;
}

.vra-form-row input:focus,
.vra-form-row select:focus,
.vra-form-row textarea:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1);
    background: #fff;
}

.vra-form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b7355' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.vra-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vra-checkbox-label {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    background: #fff;
    border: 2px solid #e8e4df;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
    font-size: 14px;
}

.vra-checkbox-label:hover {
    border-color: #c9a86c;
    background: #fdfcfa;
}

.vra-checkbox-label input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #8b7355;
    cursor: pointer;
}

.vra-checkbox-label input:checked + span,
.vra-checkbox-label:has(input:checked) {
    border-color: #8b7355;
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    color: #5a4a3a;
}

.vra-pricing-summary {
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e8e4df;
}

.vra-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #555;
}

.vra-pricing-label {
    font-weight: 500;
}

.vra-pricing-value {
    font-weight: 600;
    color: #333;
}

.vra-pricing-row--total {
    border-top: 2px solid #d4c4b0;
    margin-top: 15px;
    padding-top: 18px;
    font-size: 1.2em;
}

.vra-pricing-row--total .vra-pricing-label {
    color: #333;
}

.vra-pricing-row--total .vra-pricing-value {
    color: #8b7355;
    font-size: 1.1em;
}

.vra-form-actions {
    margin-top: 30px;
    text-align: center;
}

.vra-button {
    display: inline-block;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.vra-button--primary {
    background: linear-gradient(135deg, #8b7355 0%, #a08060 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.vra-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
    background: linear-gradient(135deg, #7a6548 0%, #8b7355 100%);
}

.vra-button--primary:active {
    transform: translateY(0);
}

.vra-button--secondary {
    background: #fff;
    color: #8b7355;
    border: 2px solid #e8e4df;
}

.vra-button--secondary:hover {
    border-color: #8b7355;
    background: #fdfcfa;
}

.vra-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.vra-message {
    margin-top: 25px;
    padding: 18px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.vra-message--success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #b1dfbb;
}

.vra-message--error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f1aeb5;
}

.vra-confirmation {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.vra-confirmation-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0ebe5;
}

.vra-confirmation-header h2 {
    margin: 0 0 12px;
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.vra-confirmation--confirmed .vra-confirmation-header h2 {
    color: #2d7a4f;
}

.vra-confirmation--pending .vra-confirmation-header h2 {
    color: #b8860b;
}

.vra-confirmation--cancelled .vra-confirmation-header h2,
.vra-confirmation--payment_failed .vra-confirmation-header h2 {
    color: #b94a48;
}

.vra-confirmation-thankyou {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
}

.vra-confirmation-details {
    margin-bottom: 35px;
}

.vra-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0ebe5;
}

.vra-detail-row:last-child {
    border-bottom: none;
}

.vra-detail-label {
    font-weight: 500;
    color: #666;
}

.vra-detail-value {
    color: #333;
    font-weight: 500;
    text-align: right;
}

.vra-reference {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 1em;
    background: linear-gradient(135deg, #f8f6f3 0%, #f5f3f0 100%);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e8e4df;
}

.vra-detail-row--total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e8e4df;
    border-bottom: none;
}

.vra-detail-row--total .vra-detail-label {
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
}

.vra-detail-row--total .vra-detail-value {
    font-size: 1.3em;
    color: #8b7355;
    font-weight: 700;
}

.vra-confirmation-actions {
    text-align: center;
    margin-top: 30px;
}

.vra-confirmation-help {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fff8e6 0%, #fff3cd 100%);
    border-radius: 12px;
    border: 1px solid #ffeaa7;
}

.vra-confirmation-help p {
    margin: 0 0 15px;
    color: #856404;
}

.vra-confirmation-help .vra-button {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .vra-booking-form,
    .vra-confirmation {
        padding: 25px;
        border-radius: 12px;
    }
    
    .vra-form-section h3 {
        font-size: 1.1em;
    }
    
    .vra-button {
        width: 100%;
        padding: 16px 24px;
    }
    
    .vra-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .vra-detail-value {
        text-align: left;
    }
    
    .vra-checkbox-group {
        flex-direction: column;
    }
    
    .vra-checkbox-label {
        width: 100%;
    }
}

@media print {
    .vra-confirmation-actions,
    .vra-confirmation-help {
        display: none;
    }
    
    .vra-confirmation {
        box-shadow: none;
        padding: 0;
        background: none;
    }
}
