/**
 * FashionPoint Components Styles
 * Styles for reusable booking components
 */

/* Booking Summary Component */
.fashionpoint-booking-summary {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e8ebf0;
}

.theme-bellissimo .fashionpoint-booking-summary {
    background: #faf9f7;
    border-color: #e8e8e8;
}

.fashionpoint-booking-summary-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fashionpoint-summary-item {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.fashionpoint-summary-item strong {
    color: #333;
    font-weight: 600;
}

/* Contact Form Component */
.fashionpoint-contact-form {
    width: 100%;
}

.fashionpoint-contact-form .fashionpoint-form-group {
    margin-bottom: 20px;
}

.fashionpoint-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.fashionpoint-contact-form .fashionpoint-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.fashionpoint-contact-form .fashionpoint-form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.theme-bellissimo .fashionpoint-contact-form .fashionpoint-form-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.fashionpoint-contact-form .fashionpoint-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.fashionpoint-contact-form .fashionpoint-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.theme-bellissimo .fashionpoint-contact-form .fashionpoint-submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.theme-bellissimo .fashionpoint-contact-form .fashionpoint-submit-btn:hover {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

/* Doctor Selector Component */
.fashionpoint-doctor-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.fashionpoint-doctor-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-bellissimo .fashionpoint-doctor-option:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.fashionpoint-doctor-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.theme-bellissimo .fashionpoint-doctor-option.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(193, 157, 46, 0.05) 100%);
}

.fashionpoint-doctor-image-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.fashionpoint-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fashionpoint-doctor-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    flex-shrink: 0;
}

.fashionpoint-doctor-info {
    flex: 1;
}

.fashionpoint-doctor-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.fashionpoint-doctor-title {
    font-size: 14px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fashionpoint-booking-summary {
        padding: 12px;
    }
    
    .fashionpoint-summary-item {
        font-size: 12px;
    }
    
    .fashionpoint-doctor-option {
        padding: 12px;
    }
    
    .fashionpoint-doctor-image-wrapper,
    .fashionpoint-doctor-icon {
        width: 50px;
        height: 50px;
    }
    
    .fashionpoint-doctor-name {
        font-size: 14px;
    }
    
    .fashionpoint-doctor-title {
        font-size: 13px;
    }
}






