/* card.css */
/* Контейнер карточки */
.master-card-centered {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 16px;
    max-width: 480px;
    margin: 0 auto;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* 1. Центрированная шапка */
.profile-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 18px;
}

.avatar-center-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.avatar-centered-img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5cf6;
    /* Наш фиолетовый акцент */
}

.status-online-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 14px;
    height: 14px;
    background: #10b981;
    border: 2px solid #2a2a2a;
    border-radius: 50%;
}

.profile-fullname {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-check {
    color: #2b7fff;
    font-size: 16px;
}

.profile-headline {
    font-size: 13px;
    color: #aaa;
    margin-top: 4px;
}

.profile-city-badge {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 10px;
}

/* 2. Табы Behance */
.tabs-navigation-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.tabs-navigation-wrapper::-webkit-scrollbar {
    display: none;
}

.tabs-navigation {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    padding-bottom: 2px;
}

.nav-tab-btn {
    background: none;
    border: none;
    color: #888;
    padding: 8px 4px 10px 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.nav-tab-btn.active {
    color: #fff;
}

.nav-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #8b5cf6;
}

/* 3. Кнопка Позвонить */
.direct-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #8b5cf6;
    color: #fff;
    text-decoration: none;
    padding: 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 18px;
    transition: background 0.2s;
}

.direct-call-btn:hover {
    background: #7c3aed;
}

/* Списки и заголовки блоков */
.block-label {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.behance-social-list {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.behance-social-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: #eee;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.behance-social-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.behance-social-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.social-left-part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow-out {
    color: #666;
    font-size: 15px;
}

.about-snippet {
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
}

/* Таблицы цен */
.price-table {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 10px 14px;
}

.price-table-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
}

.price-table-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-tag {
    color: #10b981;
}

/* Переключение табов */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}