/* Frontend Booking Form Styles */
.swa-booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.swa-booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swa-form-step {
    display: none;
}

.swa-form-step.active {
    display: block;
}

.swa-form-step h3 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
}

.swa-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.swa-service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.swa-service-card {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.swa-service-option input[type="radio"]:checked + .swa-service-card {
    border-color: #3498db;
    background: #f8f9fa;
}

.swa-service-card:hover {
    border-color: #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.swa-service-card h4 {
    margin: 0 0 10px;
    color: #333;
}

.swa-service-description {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.swa-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

.swa-service-price {
    font-weight: 600;
    color: #27ae60;
    font-size: 16px;
}

.swa-date-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    margin: 20px 0;
}

.swa-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.swa-time-slot {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.swa-time-slot:hover {
    border-color: #3498db;
    background: #f8f9fa;
}

.swa-time-slot.selected {
    border-color: #3498db;
    background: #3498db;
    color: #fff;
}

.swa-form-group {
    margin: 20px 0;
}

.swa-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.swa-input,
.swa-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.swa-input:focus,
.swa-textarea:focus {
    outline: none;
    border-color: #3498db;
}

.required {
    color: #e74c3c;
}

.swa-navigation-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.swa-btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.swa-btn-next,
.swa-btn-submit {
    background: #3498db;
    color: #fff;
}

.swa-btn-next:hover,
.swa-btn-submit:hover {
    background: #2980b9;
}

.swa-btn-back {
    background: #95a5a6;
    color: #fff;
}

.swa-btn-back:hover {
    background: #7f8c8d;
}

.swa-form-messages {
    margin-bottom: 20px;
}

.swa-form-messages.error {
    background: #fee;
    border-left: 4px solid #e74c3c;
    padding: 15px;
    border-radius: 4px;
    color: #c0392b;
}

.swa-form-messages.success {
    background: #efe;
    border-left: 4px solid #27ae60;
    padding: 15px;
    border-radius: 4px;
    color: #27ae60;
}

.swa-success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.swa-step-success {
    text-align: center;
}

.swa-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}
