/* ========================================
   PROFILE TABS - CLEAN & FUNCTIONAL
   ======================================== */

.profile-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    padding: 8px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.profile-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Arnet-Regular', sans-serif;
    font-size: 1rem;
    color: #5a6677;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.profile-tab svg {
    flex-shrink: 0;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.profile-tab:hover {
    background: #f5f8f0;
    color: #79b51c;
    transform: translateY(-2px);
}

.profile-tab.active {
    background: #79b51c;
    color: #ffffff;
    border-color: #79b51c;
    font-family: 'Arnet-Bold', sans-serif;
    box-shadow: 0 4px 12px rgba(121, 181, 28, 0.3);
}

/* ========================================
   TAB CONTENT PANELS
   ======================================== */

.profile-tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .profile-tabs {
        padding: 6px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .profile-tab {
        padding: 12px 18px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .profile-tab svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .profile-tabs {
        padding: 4px;
        gap: 6px;
        justify-content: flex-start;
    }

    .profile-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
        gap: 6px;
    }

    .profile-tab svg {
        width: 16px;
        height: 16px;
    }
}