/* =====================================================
   SOCIAL LOGIN BUTTONS
   =====================================================
   Einfügen in /assets/css/social-auth.css
   oder direkt in shop-modern.css / shop-unified.css
   ===================================================== */

/* Container */
.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

/* Base Button Style */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none !important;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 100%;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-social:active {
    transform: translateY(0);
}

.btn-social svg {
    flex-shrink: 0;
}

.btn-social span {
    flex: 1;
    text-align: center;
}

/* Google */
.btn-google {
    background: #ffffff;
    color: #3c4043;
    border-color: #dadce0;
}

.btn-google:hover {
    background: #f7f8f8;
    color: #3c4043;
    border-color: #c6c6c6;
}

/* Facebook */
.btn-facebook {
    background: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
}

.btn-facebook:hover {
    background: #166fe5;
    color: #ffffff;
    border-color: #166fe5;
}

/* Microsoft */
.btn-microsoft {
    background: #ffffff;
    color: #5e5e5e;
    border-color: #8c8c8c;
}

.btn-microsoft:hover {
    background: #f5f5f5;
    color: #3c3c3c;
    border-color: #6c6c6c;
}

/* Divider "oder" */
.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.social-divider span {
    padding: 0 16px;
    background: #fff;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 480px) {
    .btn-social {
        padding: 10px 16px;
        font-size: 14px;
    }
}
