/**
 * Vynate Social Login — Frontend Styles
 * Override any class in your theme CSS
 */

/* Wrapper */
.vynate-social-wrapper {
    margin: 16px 0;
}

/* Divider */
.vynate-social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.vynate-social-divider::before,
.vynate-social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
.vynate-social-divider span {
    color: #666;
    font-size: 12px;
    white-space: nowrap;
    font-weight: 500;
}

/* Buttons Container */
.vynate-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Base Button */
.vynate-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    line-height: 1;
    -webkit-appearance: none;
}
.vynate-social-btn:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
    opacity: 0.95;
    color: #fff !important;
    text-decoration: none !important;
}
.vynate-social-btn svg {
    flex-shrink: 0;
}

/* Provider Colors */
.vynate-btn--google    { background: #ea4335; }
.vynate-btn--facebook  { background: #1877f2; }
.vynate-btn--apple     { background: #000; }
.vynate-btn--linkedin  { background: #0077b5; }
.vynate-btn--instagram { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.vynate-btn--twitter   { background: #000; }

/* GDPR notice */
.vynate-gdpr-notice {
    margin-top: 10px;
    font-size: 11px;
    color: #888;
    text-align: center;
    line-height: 1.4;
}
.vynate-gdpr-notice a {
    color: #555;
    text-decoration: underline;
}

/* Account page linked accounts */
.vynate-linked-accounts {
    margin-top: 20px;
}
.vynate-linked-account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.vynate-linked-account-item:last-child {
    border-bottom: none;
}
