/* Digital business card (resources/views/web/business-card.blade.php) */
.bcard-page {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.bcard-wrap {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    padding: 32px 24px;
}

.bcard-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
}

.bcard-name {
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 4px;
}

.bcard-title {
    color: #6c757d;
    margin-bottom: 20px;
}

.bcard-qr img {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 8px;
}

.bcard-qr-hint {
    font-size: .875rem;
    color: #6c757d;
    margin-top: 6px;
}

.bcard-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    padding: 12px 28px;
    border-radius: 8px;
    background: #1c2620;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.bcard-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: start;
}

.bcard-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: #333;
    text-decoration: none;
}

.bcard-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bcard-social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e9ecef;
    color: #333;
}
