/**
 * Africa Import Hub — Social Auth Buttons Styles
 * @version 3.9.0
 */

/* Separateur "ou" */
.aih-social-separator {
    display: flex;
    align-items: center;
    margin: 20px 0 16px;
    gap: 12px;
}
.aih-social-separator::before,
.aih-social-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}
.aih-social-separator span {
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Boutons sociaux */
.aih-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #FFFFFF;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.4;
}
.aih-social-btn:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.aih-social-btn:active {
    transform: scale(0.98);
}
.aih-social-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Google */
.aih-social-btn-google:hover {
    border-color: #4285F4;
    background: #F8FAFF;
}

/* Facebook */
.aih-social-btn-facebook:hover {
    border-color: #1877F2;
    background: #F0F5FF;
}

/* Phone */
.aih-social-btn-phone {
    border-color: #D1FAE5;
    background: #F0FDF4;
    color: #065F46;
}
.aih-social-btn-phone:hover {
    border-color: #059669;
    background: #ECFDF5;
}

/* Phone Modal Overlay */
.aih-phone-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 16px;
    animation: aihFadeIn 0.2s ease;
}
.aih-phone-modal {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: aihSlideUp 0.3s ease;
}
.aih-phone-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #9CA3AF;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.aih-phone-close:hover {
    color: #374151;
}

/* Animations */
@keyframes aihFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes aihSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
    .aih-social-btn {
        font-size: 13px;
        padding: 10px 14px;
    }
    .aih-phone-modal {
        padding: 20px;
        border-radius: 12px;
    }
}
