/* Lavould Popup Styles */
#lavould-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#lavould-popup-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#lavould-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 0 5px;
    border-radius: 50%;
}

#lavould-popup-close:hover {
    background: rgba(255,255,255,0.5);
}

.lavould-form-header {
    background: linear-gradient(135deg, #E6A817 0%, #c98f0f 100%);
    color: white;
    padding: 30px 35px 25px;
    border-radius: 16px 16px 0 0;
}

.lavould-form-header h2 {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 700;
    color: white !important;
}

.lavould-form-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    color: white !important;
}

#lavould-reservation-form {
    padding: 25px 35px 30px;
}

.lavould-field-group {
    margin-bottom: 18px;
}

.lavould-field-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.lavould-field-group .required {
    color: #E6A817;
    margin-left: 3px;
}

.lavould-field-group input,
.lavould-field-group select,
.lavould-field-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
}

.lavould-field-group input:focus,
.lavould-field-group select:focus,
.lavould-field-group textarea:focus {
    border-color: #E6A817;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230,168,23,0.15);
}

.lavould-field-group textarea {
    resize: vertical;
    min-height: 90px;
}

.lavould-field-group select {
    cursor: pointer;
    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='%23E6A817' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #fafafa;
    padding-right: 38px;
}

.lavould-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #E6A817 0%, #c98f0f 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lavould-submit-btn:hover {
    background: linear-gradient(135deg, #c98f0f 0%, #a87800 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230,168,23,0.4);
}

.lavould-success {
    text-align: center;
    padding: 40px 35px;
}

.lavould-success-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #E6A817, #c98f0f);
    color: white;
    border-radius: 50%;
    font-size: 32px;
    line-height: 65px;
    margin: 0 auto 20px;
}

.lavould-success h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 10px;
}

.lavould-success p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.lavould-error {
    background: #fff0f0;
    border: 1px solid #ffcccc;
    color: #cc0000;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 600px) {
    .lavould-form-header {
        padding: 25px 20px 20px;
    }
    #lavould-reservation-form {
        padding: 20px 20px 25px;
    }
    .lavould-form-header h2 {
        font-size: 18px;
    }
}
