/**
 * AB Social Login - Style CSS
 */

.ab-social-login-wrapper {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.ab-social-login-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.ab-social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .ab-social-login-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Wspólne style przycisków */
.ab-btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    border: none;
    min-width: 200px;
}

.ab-btn-social:hover {
    opacity: 0.9;
    text-decoration: none !important;
    transform: translateY(-1px);
}

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

.ab-btn-social .ab-social-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.ab-btn-social span {
    line-height: 1.4;
}

/* Przycisk Facebook */
.ab-btn-facebook {
    background-color: #1877f2;
    color: #ffffff !important;
}

.ab-btn-facebook:hover,
.ab-btn-facebook:focus {
    background-color: #166fe5;
    color: #ffffff !important;
}

.ab-btn-facebook .ab-social-icon {
    fill: #ffffff;
}

/* Przycisk Google */
.ab-btn-google {
    background-color: #ffffff;
    color: #757575 !important;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ab-btn-google:hover,
.ab-btn-google:focus {
    background-color: #f8f9fa;
    color: #5f6368 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

/* Separator */
.ab-social-login-separator {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.ab-social-login-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.ab-social-login-separator span {
    position: relative;
    background-color: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 480px) {
    .ab-btn-social {
        width: 100%;
        min-width: auto;
        padding: 12px 16px;
    }

    .ab-btn-social span {
        font-size: 13px;
    }
}

/* Integracja z WooCommerce */
.woocommerce-form-login .ab-social-login-wrapper,
.woocommerce-form-register .ab-social-login-wrapper {
    margin-bottom: 25px;
}

/* Ciemny motyw (opcjonalnie) */
@media (prefers-color-scheme: dark) {
    .ab-social-login-info {
        color: #aaa;
    }

    .ab-social-login-separator::before {
        background-color: #444;
    }

    .ab-social-login-separator span {
        background-color: #1a1a1a;
        color: #888;
    }

    .ab-btn-google {
        background-color: #2d2d2d;
        color: #e8eaed !important;
        border-color: #5f6368;
    }

    .ab-btn-google:hover,
    .ab-btn-google:focus {
        background-color: #3c3c3c;
        color: #ffffff !important;
    }
}
