/* Табы профиля — как категории товаров */

/* --- Табы профиля в стиле product_card.css --- */
.profile-tabs {
    background: #e3f4fd;
    box-shadow: 0 2px 12px 0 rgba(34,46,80,0.08);
    border-radius: 0;
    padding: 1.1rem 0.5rem 1rem 0.5rem;
    margin-bottom: 2.2rem;
    gap: 0 18px;
    display: flex;
    justify-content: center;
}
.profile-tab-btn {
    margin-bottom: 0;
    min-width: 170px;
    font-size: 1.13rem;
    font-weight: 700;
    border-radius: 0 !important;
    border: 1.5px solid #3ABEFF;
    background: #fff;
    color: #3ABEFF;
    box-shadow: 0 2px 8px 0 #3abeff22;
    transition: background 0.18s, color 0.18s, font-weight 0.18s, box-shadow 0.18s, border-color 0.18s, transform 0.18s;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.profile-tab-btn:hover, .profile-tab-btn:focus {
    background: #e3f4fd;
    color: #232A45;
    border-color: #3ABEFF;
    box-shadow: 0 4px 16px 0 #3abeff44;
    transform: scale(1.03);
}
.profile-tab-btn[aria-selected="true"], .profile-tab-btn.active {
    background: #3ABEFF;
    color: #fff;
    font-weight: 800;
    border-color: #3ABEFF;
    box-shadow: 0 2px 12px 0 #3abeff44;
    z-index: 1;
}
.profile-tab-btn[aria-selected="false"] {
    color: #3ABEFF;
    font-weight: 700;
    background: #fff;
    border-color: #3ABEFF;
}
.profile-tab-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3abeff77;
    border-color: #3ABEFF;
}
@media (max-width: 600px) {
    .profile-tabs {
        gap: 0 6px;
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    }
    .profile-tab-btn {
        font-size: 1rem;
        min-width: 100px;
        padding: 5px 8px;
    }
}

/* --- Категории профиля в стиле product_card.css --- */
.profile-categories {
    background: #e3f4fd;
    border-radius: 0;
    padding: 1.1rem 0.5rem 1rem 0.5rem;
    box-shadow: 0 2px 12px 0 rgba(34,46,80,0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 18px;
    margin-bottom: 2.2rem;
}
.profile-cat-btn {
    background: #fff;
    border: 1.5px solid #3ABEFF;
    color: #3ABEFF;
    font-size: 1.13rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    padding: 7px 26px;
    border-radius: 0 !important;
    box-shadow: 0 2px 8px 0 #3abeff22;
    transition: background 0.18s, color 0.18s, font-weight 0.18s, box-shadow 0.18s, border-color 0.18s, transform 0.18s;
    outline: none;
    position: relative;
    cursor: pointer;
}
.profile-cat-btn:hover, .profile-cat-btn:focus {
    background: #e3f4fd;
    color: #232A45;
    border-color: #3ABEFF;
    box-shadow: 0 4px 16px 0 #3abeff44;
    transform: scale(1.03);
}
.profile-cat-btn[aria-selected="true"], .profile-cat-btn.active {
    background: #3ABEFF;
    color: #fff;
    font-weight: 800;
    border-color: #3ABEFF;
    box-shadow: 0 2px 12px 0 #3abeff44;
    z-index: 1;
}
.profile-cat-btn[aria-selected="false"] {
    color: #3ABEFF;
    font-weight: 700;
    background: #fff;
    border-color: #3ABEFF;
}
.profile-cat-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #3abeff77;
    border-color: #3ABEFF;
}
@media (max-width: 600px) {
    .profile-categories {
        gap: 0 6px;
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    }
    .profile-cat-btn {
        font-size: 1rem;
        padding: 5px 12px;
    }
}
