/* ============================================
   Google Auth Button Styles
   Khabeer Platform - Navy/Gold Theme
   ============================================ */

/* Divider with "أو" text */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
    gap: 16px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.auth-divider span {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Google Sign-In Button — follows Google Brand Guidelines */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 13px 20px;
    background: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Almarai', 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.btn-google::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #c6c9cc;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    color: #3c4043;
    text-decoration: none !important;
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Google "G" Logo SVG */
.google-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ============================================
   Complete Profile Page Styles
   ============================================ */
.google-complete-wrapper {
    min-height: 100vh;
    background-color: #f8fafc;
    direction: rtl;
}

.google-complete-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 3rem 4rem;
    background: #ffffff;
}

.google-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(11, 26, 42, 0.04) 0%, rgba(184, 138, 74, 0.06) 100%);
    border: 1px solid rgba(184, 138, 74, 0.15);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 32px;
}

.google-user-badge .google-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #B88A4A;
    object-fit: cover;
}

.google-user-badge .google-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b1a2a, #173656);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.google-user-badge .google-user-info {
    display: flex;
    flex-direction: column;
}

.google-user-badge .google-user-name {
    font-weight: 700;
    color: #0b1a2a;
    font-size: 1rem;
}

.google-user-badge .google-user-email {
    color: #64748b;
    font-size: 0.85rem;
    direction: ltr;
    text-align: right;
}

.google-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .google-complete-panel {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .google-user-badge {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
    }

    .btn-google {
        font-size: 0.92rem;
        padding: 11px 16px;
    }
}
